Skip to content

Commit 4aaa23f

Browse files
committed
Revert "Only change the tox config for Python 3.6 on dedicated CI jobs"
This reverts commit b3dbb57. Now when fedora-python/fedora-python-tox#88 is fixed, it is no longer needed.
1 parent 0d19503 commit 4aaa23f

File tree

2 files changed

+4
-15
lines changed

2 files changed

+4
-15
lines changed

.github/workflows/main.yml

Lines changed: 2 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -16,39 +16,26 @@ jobs:
1616
uses: actions/checkout@v2
1717
- name: Set up QEMU
1818
uses: docker/setup-qemu-action@v2
19-
- name: Setup tox for end-of-life Python versions
20-
if: ${{ matrix.legacy }}
21-
run: |
22-
sed -i '/\[tox\]/a requires = virtualenv<20.22.0' tox.ini
2319
- name: Run tests in container
2420
run: |
2521
docker run --platform linux/${{ matrix.arch }} -v ${{ github.workspace }}:/src -w /src -e TOX_PARALLEL_NO_SPINNER=1 -e TOX_PARAMS="-p auto" -e TOXENV=${{ matrix.toxenv }} fedorapython/fedora-python-tox:latest
2622
strategy:
2723
matrix:
2824
include:
2925
- arch: amd64
30-
toxenv: py39,py310,py311,py312,py313,py314,py315,black,mypy
31-
- arch: amd64
32-
toxenv: py36
33-
legacy: true
26+
toxenv: py36,py39,py310,py311,py312,py313,py314,py315,black,mypy
3427
- arch: arm64
3528
toxenv: py36
36-
legacy: true
3729
- arch: arm64
3830
toxenv: py39
3931
- arch: arm64
4032
toxenv: py310,py311
4133
- arch: ppc64le
42-
legacy: true
4334
toxenv: py36
4435
- arch: ppc64le
45-
legacy: true
4636
toxenv: py39,py310,py311
4737
- arch: s390x
48-
toxenv: py39,py310,py311
49-
- arch: s390x
50-
toxenv: py36
51-
legacy: true
38+
toxenv: py36,py39,py310,py311
5239

5340
# Use GitHub's Linux Docker host
5441
runs-on: ubuntu-latest

tox.ini

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
[tox]
2+
# Older virtualenv required for Python 3.6.
3+
requires = virtualenv<20.22.0
24
envlist = black,mypy,py{36,39,310,311,312,313,314,315}
35
isolated_build = True
46

0 commit comments

Comments
 (0)