Skip to content

Commit

Permalink
workflows: Fix setuptools version
Browse files Browse the repository at this point in the history
Setuptools==72.0.0 removes 'setuptools.command.test' used by some
package.

Signed-off-by: Jan Gałda <[email protected]>
  • Loading branch information
jangalda-nsc authored and rlubos committed Jul 29, 2024
1 parent b0cbb15 commit 5fde323
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/pip-requirements.yml
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,8 @@ jobs:
mkvirtualenv pip-fixed-venv > /dev/null 2>&1 || true
workon pip-fixed-venv > /dev/null 2>&1
pip3 install pip-tools > /dev/null 2>&1
pip3 install setuptools --upgrade
# Use setuptools==71.1.0 due to https://github.com/pypa/setuptools/issues/4519
pip3 install setuptools==71.1.0 --upgrade
pip-compile \
--build-isolation \
Expand Down

0 comments on commit 5fde323

Please sign in to comment.