Skip to content

Commit

Permalink
fix: Fall back to pip for Python 3.8 as uv fails here
Browse files Browse the repository at this point in the history
  • Loading branch information
matthewfeickert committed Apr 27, 2024
1 parent f6d34f3 commit 8d46d23
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,11 +44,19 @@ jobs:
python-version: ${{ matrix.python-version }}

- name: Install dependencies
if: matrix.python-version != '3.8'
run: |
python -m pip install uv
python -m uv pip install --system --upgrade pip setuptools wheel
python -m uv pip install --system --upgrade ".[all,test]"
# c.f. https://github.com/astral-sh/uv/issues/2062
- name: Install dependencies (Python 3.8)
if: matrix.python-version == '3.8'
run: |
python -m pip install --upgrade pip setuptools wheel
python -m pip install --upgrade ".[all,test]"
- name: List installed Python packages
run: python -m pip list

Expand Down

0 comments on commit 8d46d23

Please sign in to comment.