pin poetry version to 0.12.12 as 0.12.14 is broken

This commit is contained in:
Andrew Chow 2019-04-29 13:00:50 -04:00
parent 4dd56fda3c
commit 85eaf70f36
4 changed files with 5 additions and 5 deletions

View File

@ -40,7 +40,7 @@ addons:
- cython3 - cython3
- ccache - ccache
install: install:
- pip install pipenv pysdl2 python-bitcoinrpc protobuf poetry - pip install pipenv pysdl2 python-bitcoinrpc protobuf poetry==0.12.12
# From trezor-mcu to get the correct protobuf version # From trezor-mcu to get the correct protobuf version
- curl -LO "https://github.com/google/protobuf/releases/download/v3.4.0/protoc-3.4.0-linux-x86_64.zip" - curl -LO "https://github.com/google/protobuf/releases/download/v3.4.0/protoc-3.4.0-linux-x86_64.zip"
- unzip "protoc-3.4.0-linux-x86_64.zip" -d protoc - unzip "protoc-3.4.0-linux-x86_64.zip" -d protoc
@ -56,7 +56,7 @@ jobs:
- name: With command line interface - name: With command line interface
script: cd test; poetry run ./run_tests.py --interface=cli script: cd test; poetry run ./run_tests.py --interface=cli
- name: With stdin interface - name: With stdin interface
script: cd test; ./run_tests.py --interface=stdin script: cd test; poetry run ./run_tests.py --interface=stdin
- name: With linux binary distribution command line interface - name: With linux binary distribution command line interface
services: docker services: docker
before_script: before_script:

View File

@ -4,7 +4,7 @@
eval "$(pyenv init -)" eval "$(pyenv init -)"
eval "$(pyenv virtualenv-init -)" eval "$(pyenv virtualenv-init -)"
pip install -U pip pip install -U pip
pip install poetry pip install poetry==0.12.12
# Setup poetry and install the dependencies # Setup poetry and install the dependencies
poetry install poetry install

View File

@ -4,7 +4,7 @@
eval "$(pyenv init -)" eval "$(pyenv init -)"
eval "$(pyenv virtualenv-init -)" eval "$(pyenv virtualenv-init -)"
pip install -U pip pip install -U pip
pip install poetry pip install poetry==0.12.12
# Setup poetry and install the dependencies # Setup poetry and install the dependencies
poetry install poetry install

View File

@ -53,7 +53,7 @@ popd
$PYTHON -m pip install -U pip $PYTHON -m pip install -U pip
# Install Poetry and things needed for pyinstaller # Install Poetry and things needed for pyinstaller
$PYTHON -m pip install poetry $PYTHON -m pip install poetry==0.12.12
# We also need to change the timestamps of all of the base library files # We also need to change the timestamps of all of the base library files
lib_dir=~/.wine/drive_c/python3/Lib lib_dir=~/.wine/drive_c/python3/Lib