Skip to content

Commit

Permalink
chore(ci): upgrade pip for 3.11 on macOS
Browse files Browse the repository at this point in the history
We are hit by pypa/pip#11352 which has
been fixed on the main branch, but not yet on a release.
  • Loading branch information
mkniewallner authored and neersighted committed Sep 22, 2022
1 parent 1909512 commit 4b3016c
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,11 @@ jobs:
if: steps.cache.outputs.cache-hit == 'true'
run: timeout 10s poetry run pip --version || rm -rf .venv

# XXX: https://github.com/pypa/pip/issues/11352 causes random failures -- remove once fixed in a release.
- name: Upgrade pip on 3.11 for macOS
if: ${{ matrix.python-version == '3.11-dev' && matrix.os == 'macOS' }}
run: poetry run pip install git+https://github.com/pypa/pip.git@fbb7f0b293f1d9289d8c76a556540325b9a172b2

- name: Install dependencies
run: poetry install

Expand Down

0 comments on commit 4b3016c

Please sign in to comment.