Skip to content

Commit a6e1c33

Browse files
authored
GitHub Actions: python: ["3.8", "3.9", "3.10", "3.11", "3.12"]
1 parent 3e500bb commit a6e1c33

File tree

1 file changed

+7
-8
lines changed

1 file changed

+7
-8
lines changed

.github/workflows/python-tox.yml

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -7,38 +7,37 @@ jobs:
77
strategy:
88
fail-fast: false
99
matrix:
10-
# 2.7, 3.5, and 3.6 run on Windows via AppVeyor
11-
python: ["3.7", "3.8", "3.9", "3.10", "3.11"]
10+
python: ["3.8", "3.9", "3.10", "3.11", "3.12"]
1211
os: [ubuntu-latest, windows-latest]
1312
deps: [base, optional]
1413
include:
1514
- python: "pypy-2.7"
1615
os: ubuntu-latest
1716
deps: base
18-
- python: "pypy-3.8"
17+
- python: "pypy-3.10"
1918
os: ubuntu-latest
2019
deps: base
2120
- python: "2.7"
2221
os: ubuntu-latest
2322
deps: oldest
24-
- python: "3.7"
23+
- python: "3.8"
2524
os: ubuntu-latest
2625
deps: oldest
2726
runs-on: ${{ matrix.os }}
2827
steps:
29-
- uses: actions/checkout@v3
28+
- uses: actions/checkout@v4
3029
with:
3130
submodules: true
3231
- if: ${{ matrix.deps == 'base' }}
33-
uses: actions/setup-python@v4
32+
uses: actions/setup-python@v5
3433
with:
3534
python-version: ${{ matrix.python }}
3635
cache: pip
3736
cache-dependency-path: |
3837
requirements.txt
3938
requirements-test.txt
4039
- if: ${{ matrix.deps == 'optional' }}
41-
uses: actions/setup-python@v4
40+
uses: actions/setup-python@v5
4241
with:
4342
python-version: ${{ matrix.python }}
4443
cache: pip
@@ -47,7 +46,7 @@ jobs:
4746
requirements-optional.txt
4847
requirements-test.txt
4948
- if: ${{ matrix.deps == 'oldest' }}
50-
uses: actions/setup-python@v4
49+
uses: actions/setup-python@v5
5150
with:
5251
python-version: ${{ matrix.python }}
5352
cache: pip

0 commit comments

Comments
 (0)