Skip to content

Commit c7da3f1

Browse files
authored
Merge pull request #179 from edgarrmondragon/python3.12
Test on Python 3.12
2 parents 9bc0341 + 7bc3846 commit c7da3f1

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

.github/workflows/tests.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,8 @@ jobs:
1616
python:
1717
- 3.7 # oldest Python supported by PSF
1818
- "3.10"
19-
- "3.11" # newest Python that is stable
19+
- "3.11"
20+
- "3.12" # newest Python that is stable
2021
platform:
2122
- ubuntu-latest
2223
- macos-latest

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,7 @@
5252
"Programming Language :: Python :: 3.9",
5353
"Programming Language :: Python :: 3.10",
5454
"Programming Language :: Python :: 3.11",
55+
"Programming Language :: Python :: 3.12",
5556
"Programming Language :: Python :: Implementation :: CPython",
5657
"License :: OSI Approved :: BSD License",
5758
"Operating System :: OS Independent",

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# and then run "tox" from this directory.
55

66
[tox]
7-
envlist = py{34,35,36,37,38,39,310,311},lint
7+
envlist = py{34,35,36,37,38,39,310,311,312},lint
88

99
[testenv]
1010
deps =

0 commit comments

Comments
 (0)