Skip to content

Commit

Permalink
Fix CI by pinning setuptools and virtualenv versions for ubuntu py3.8 (
Browse files Browse the repository at this point in the history
  • Loading branch information
yanovs authored Sep 14, 2024
1 parent 671066f commit b547ffa
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,10 +51,17 @@ jobs:
with:
python-version: ${{ matrix.python-version }}

- name: Install dependencies (ubuntu-latest, py3.8)
run: |
python -m pip install --upgrade "setuptools<74" "virtualenv<=20.26.3" pip wheel
python -m pip install nox
if: ${{ matrix.os == 'ubuntu-latest' && matrix.python-version == '3.8' }}

- name: Install dependencies
run: |
python -m pip install --upgrade setuptools pip wheel
python -m pip install nox
if: ${{ ! (matrix.os == 'ubuntu-latest' && matrix.python-version == '3.8') }}

- name: Test with nox
run: nox
Expand Down

0 comments on commit b547ffa

Please sign in to comment.