-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Refs #11. Removed sftpclone, sftpclient from requirements, and moved …
…to fabric
- Loading branch information
Showing
5 changed files
with
145 additions
and
82 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
@echo off | ||
echo Create or update conda venv | ||
call conda install -m -c conda-forge -y --copy -p venv python=3.10 | ||
echo Activating venv | ||
call conda activate .\venv | ||
echo Installing requirements | ||
call pip install -r requirements.txt | ||
call conda deactivate |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
echo "Create or update conda venv" | ||
conda install -m -c conda-forge -y --copy -p $PWD/venv python=3.10 | ||
echo "Activating venv" | ||
conda activate $PWD/venv | ||
echo "Installing requirements (make sure git submodules are installed)..." | ||
$PWD/venv/bin/pip install -r $PWD/requirements.txt | ||
conda deactivate |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,2 @@ | ||
pysftp~=0.2.9 | ||
paramiko~=2.7.2 | ||
sftpclone | ||
fabric == 3.2.2 | ||
paramiko ~= 3.3.1 |