From b547ffaad20e1209557eeeb86582087d39a0fd2a Mon Sep 17 00:00:00 2001 From: yanovs <42386943+yanovs@users.noreply.github.com> Date: Sat, 14 Sep 2024 07:18:26 -0400 Subject: [PATCH] Fix CI by pinning setuptools and virtualenv versions for ubuntu py3.8 (#18) --- .github/workflows/test.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 1dca0a6..d82703f 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -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