Skip to content

Commit

Permalink
Fix install pip for py27 test
Browse files Browse the repository at this point in the history
  • Loading branch information
obieler committed Sep 17, 2024
1 parent db69f75 commit 335eddd
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,9 @@ jobs:
if: matrix.python-version == '2.7'
run: |
sudo apt-get update
sudo apt-get install -y python2.7 python-pip
python2.7 -m pip install --upgrade "pip<21.0" "setuptools<45"
sudo apt-get install -y python2.7 curl
curl https://bootstrap.pypa.io/pip/2.7/get-pip.py -o get-pip.py
python2.7 get-pip.py --upgrade "pip<21.0" "setuptools<45"
python2.7 -m pip install tox==3.24.4 tox-gh-actions
- name: Set up Python ${{ matrix.python-version }}
Expand Down

0 comments on commit 335eddd

Please sign in to comment.