Skip to content

Commit

Permalink
GH action: downgrade pip version
Browse files Browse the repository at this point in the history
It is needed otherwise 23.1 will prevent the wheel build.
Our project structure is too "old school"

Need to be updated
  • Loading branch information
GwendalRaoul committed May 16, 2023
1 parent 255b411 commit 0c517ff
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,9 @@ jobs:

- name: Install dependencies
run: |
python -m pip install --upgrade pip
# Use sepcific version of pip as temporary fix for deprecation of setup.py install
# being an error in 23.1
python -m pip install pip==23.0
python -m pip install flake8 pytest setuptools wheel
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
Expand Down

0 comments on commit 0c517ff

Please sign in to comment.