Remove tox pin (#3844)

This commit is contained in:
Marc Mueller 2023-08-19 17:09:59 +02:00 committed by GitHub
parent c6a031e623
commit 066aa9210a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -45,11 +45,12 @@ jobs:
- name: Install tox - name: Install tox
run: | run: |
python -m pip install --upgrade pip python -m pip install --upgrade pip
python -m pip install --upgrade 'tox<4.7' python -m pip install --upgrade tox
- name: Unit tests - name: Unit tests
if: "!startsWith(matrix.python-version, 'pypy')" if: "!startsWith(matrix.python-version, 'pypy')"
run: tox -e ci-py -- -v --color=yes run:
tox -e ci-py$(echo ${{ matrix.python-version }} | tr -d '.') -- -v --color=yes
- name: Unit tests (pypy) - name: Unit tests (pypy)
if: "startsWith(matrix.python-version, 'pypy')" if: "startsWith(matrix.python-version, 'pypy')"