Skip to content

Commit a6ca1da

Browse files
authored
Merge pull request #166 from johnthagen/ci-3.11
Support Python 3.11
2 parents 065702d + 26d4193 commit a6ca1da

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

Diff for: .github/workflows/tests.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,8 @@ jobs:
1515
matrix:
1616
python:
1717
- 3.7 # oldest Python supported by PSF
18-
- "3.10" # newest Python that is stable
18+
- "3.10"
19+
- "3.11" # newest Python that is stable
1920
platform:
2021
- ubuntu-latest
2122
- macos-latest

Diff for: setup.py

+1
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,7 @@
5151
"Programming Language :: Python :: 3.8",
5252
"Programming Language :: Python :: 3.9",
5353
"Programming Language :: Python :: 3.10",
54+
"Programming Language :: Python :: 3.11",
5455
"Programming Language :: Python :: Implementation :: CPython",
5556
"License :: OSI Approved :: BSD License",
5657
"Operating System :: OS Independent",

Diff for: tox.ini

+1-1
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},lint
7+
envlist = py{34,35,36,37,38,39,310,311},lint
88

99
[testenv]
1010
deps =

0 commit comments

Comments
 (0)