Skip to content

Commit cda7434

Browse files
committed
Update python versions
1 parent 1116153 commit cda7434

File tree

3 files changed

+10
-6
lines changed

3 files changed

+10
-6
lines changed

.github/workflows/tests.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,11 @@ jobs:
1616
max-parallel: 4
1717
matrix:
1818
python:
19-
- "3.7"
2019
- "3.8"
2120
- "3.9"
2221
- "3.10"
22+
- "3.11"
23+
- "3.12"
2324
steps:
2425
- uses: actions/checkout@v3
2526
- name: Set up Python

setup.cfg

+3-2
Original file line numberDiff line numberDiff line change
@@ -15,18 +15,19 @@ classifiers =
1515
License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
1616
Operating System :: OS Independent
1717
Programming Language :: Python
18-
Programming Language :: Python :: 3.7
1918
Programming Language :: Python :: 3.8
2019
Programming Language :: Python :: 3.9
2120
Programming Language :: Python :: 3.10
21+
Programming Language :: Python :: 3.11
22+
Programming Language :: Python :: 3.12
2223
Topic :: Software Development
2324
Topic :: Software Development :: Debuggers
2425
Topic :: Software Development :: Testing
2526

2627
[options]
2728
py_modules =
2829
tox_ipdb
29-
python_requires = ~=3.7
30+
python_requires = ~=3.8
3031
install_requires =
3132
tox>=3.0
3233

tox.ini

+5-3
Original file line numberDiff line numberDiff line change
@@ -3,17 +3,18 @@ isolated_build = true
33
envlist =
44
clear-coverage
55
quality
6-
py37-tox{3,4}
76
py38-tox{3,4}
87
py39-tox{3,4}
98
py310-tox{3,4}
9+
py311-tox{3,4}
10+
py312-tox{3,4}
1011
compute-coverage
1112
skip_missing_interpreters = true
1213

1314
[testenv]
1415
depends = clear-coverage
1516
setenv =
16-
py37,py38,py39,py310: PYTHONWARNINGS = {env:PYTHONWARNINGS:all}
17+
py38,py39,py310,py311,py312: PYTHONWARNINGS = {env:PYTHONWARNINGS:all}
1718
deps =
1819
coverage
1920
tox3: tox == 3.*
@@ -30,10 +31,11 @@ commands =
3031

3132
[testenv:compute-coverage]
3233
depends =
33-
py37-tox{3,4}
3434
py38-tox{3,4}
3535
py39-tox{3,4}
3636
py310-tox{3,4}
37+
py311-tox{3,4}
38+
py312-tox{3,4}
3739
# Use single virtualenv for both coverage envs.
3840
envdir = {toxworkdir}/coverage
3941
parallel_show_output = true

0 commit comments

Comments
 (0)