Skip to content

Commit de6864e

Browse files
authored
Python 3.6 and 3.7 are no longer available ubuntu-latest
Python versions less than 3.10 are eod-of-life. GitHub Actions `ubuntu-latest` no longer supports Python versions less than 3.8 so let’s drop them so that our CI tests are green.
1 parent 0b2b332 commit de6864e

File tree

1 file changed

+7
-5
lines changed

1 file changed

+7
-5
lines changed

.github/workflows/ci.yml

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,18 +10,20 @@ jobs:
1010
tox:
1111
runs-on: ubuntu-latest
1212
strategy:
13-
max-parallel: 5
1413
matrix:
1514
python-version:
16-
- 3.6
17-
- 3.7
1815
- 3.8
1916
- 3.9
17+
- 3.10
18+
- 3.11
19+
- 3.12
20+
- 3.13
21+
- 3.14
2022
- pypy3
2123

2224
steps:
23-
- uses: actions/checkout@v2
24-
- uses: actions/setup-python@v2
25+
- uses: actions/checkout@v6
26+
- uses: actions/setup-python@v6
2527
with:
2628
python-version: ${{ matrix.python-version }}
2729
- name: Install tox

0 commit comments

Comments
 (0)