move more requirements into req.txt
This commit is contained in:
parent
33ffb322cc
commit
abbcbfefd7
2 changed files with 4 additions and 4 deletions
4
build.sh
4
build.sh
|
@ -29,7 +29,7 @@ if [ "$FULL_BUILD" == "true" ]; then
|
|||
set +u
|
||||
source "$VENV/bin/activate"
|
||||
set -u
|
||||
pip install -U pip setuptools pyinstaller
|
||||
pip install -r "$ROOT/requirements.txt"
|
||||
python "$ROOT/set_version.py"
|
||||
python "$ROOT/set_build.py"
|
||||
fi
|
||||
|
@ -75,8 +75,6 @@ if [ "$FULL_BUILD" == "true" ]; then
|
|||
# electron-build has a publish feature, but I had a hard time getting
|
||||
# it to reliably work and it also seemed difficult to configure. Not proud of
|
||||
# this, but it seemed better to write my own.
|
||||
pip install PyGithub uritemplate
|
||||
pip install -U requests[security]
|
||||
python release_on_tag.py
|
||||
deactivate
|
||||
fi
|
||||
|
|
|
@ -1,4 +1,6 @@
|
|||
GitPython==2.1.1
|
||||
PyGithub==1.32
|
||||
requests==2.13.0
|
||||
requests[security]==2.13.0
|
||||
PyInstaller==3.2.1
|
||||
uritemplate==3.0.0
|
||||
git+https://github.com/lbryio/bumpversion.git
|
||||
|
|
Loading…
Add table
Reference in a new issue