Workaround to ContextualVersionConflict - see #1482

pull/1480/head
David Núñez 2019-12-02 11:19:23 +01:00
parent 428c7f2a0e
commit 30d6631757
1 changed files with 2 additions and 2 deletions

View File

@ -281,11 +281,11 @@ commands:
steps: steps:
- run: - run:
name: Install Python Dependencies with Pip name: Install Python Dependencies with Pip
command: pip3 install --user -e . -r requirements.txt command: pip3 install --user -e . -r requirements.txt || pip3 install --user -e . -r requirements.txt
- check_nucypher_entrypoints # Ensure Standard Installation Entry-points Work - check_nucypher_entrypoints # Ensure Standard Installation Entry-points Work
- run: - run:
name: Install Python Development Dependencies with Pip name: Install Python Development Dependencies with Pip
command: pip3 install -r dev-requirements.txt --user -e . command: pip3 install --user -e . -r dev-requirements.txt
- run: - run:
name: Install Solidity Compiler name: Install Solidity Compiler
command: sudo ./scripts/installation/install_solc.sh command: sudo ./scripts/installation/install_solc.sh