Skip to content

Commit

Permalink
try limiting pip for windows run
Browse files Browse the repository at this point in the history
  • Loading branch information
chrishavlin committed Jul 27, 2023
1 parent 42f3b2c commit 1394c9e
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/test_and_deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,11 @@ jobs:
python -m pip install --upgrade pip
python -m pip install setuptools tox tox-gh-actions
- name: Limit pip for windows
if: runner.os == "Windows"
run: |
pip install --ugrade "pip<23.2.0"
# this runs the platform-specific tests declared in tox.ini
- name: Test with tox
uses: GabrielBB/xvfb-action@v1
Expand Down

0 comments on commit 1394c9e

Please sign in to comment.