Skip to content

Commit

Permalink
Update setuptools before installing requirements
Browse files Browse the repository at this point in the history
The old setuptools can't cope with zope.interface and zope-interface
meaning the same package, causing errors like
```
pkg_resources.DistributionNotFound: The 'zope-interface==5.1.0' distribution was not found and is required by raiden
```
  • Loading branch information
karlb committed Apr 14, 2022
1 parent 446e595 commit b381f3c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,7 @@ commands:
command: |
. ${VENV_PATH}/bin/activate
pip config set global.progress_bar off
pip install -U pip wheel pip-tools
pip install -U pip wheel pip-tools setuptools
pushd requirements
pip-sync requirements-ci.txt _raiden-dev.txt
popd
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/check-licenses.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ jobs:
python3 -m venv .venv-raiden
source .venv-raiden/bin/activate
make install
pip install -U pip setuptools
pip install liccheck
- name: check versions
run: |
Expand Down

0 comments on commit b381f3c

Please sign in to comment.