Skip to content

Commit c123013

Browse files
committed
Update python versions tested
Work around the removal of 3.7 from ubuntu and test up to python 3.12
1 parent 8514a07 commit c123013

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/static-analysis-and-test.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -35,12 +35,12 @@ jobs:
3535
strategy:
3636
matrix:
3737
os: ['ubuntu-latest']
38-
python: [3.7, 3.8, 3.9]
39-
# Works around the depreciation of python 3.6 for ubuntu
38+
python: [3.8, 3.9, 3.10, 3.11, 3.12]
39+
# Works around the depreciation of python 3.6, 3.7 for ubuntu
4040
# https://github.com/actions/setup-python/issues/544
4141
include:
42-
- os: 'ubuntu-20.04'
43-
python: 3.6
42+
- os: 'ubuntu-22.04'
43+
python: 3.7
4444

4545
runs-on: ${{ matrix.os }}
4646

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = begin,py{27,36,37,38,39},modernize,black,flake8
2+
envlist = begin,py{27,36,37,38,39,310,311,312},modernize,black,flake8
33
skip_missing_interpreters = True
44
skipsdist = True
55

0 commit comments

Comments
 (0)