Skip to content

Commit 31729ae

Browse files
authored
support python 3.12 (#47)
* add python 3.12 to CI test matrix * update noxfile.py
1 parent c4fc02c commit 31729ae

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -167,6 +167,7 @@ jobs:
167167
- '3.9'
168168
- '3.10'
169169
- '3.11'
170+
- '3.12'
170171
sphinx-version:
171172
- 'sphinx4'
172173
- 'sphinx5'

noxfile.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import nox
22

3-
SUPPORTED_PY_VER = list(f"3.{x}" for x in range(8, 12))
3+
SUPPORTED_PY_VER = list(f"3.{x}" for x in range(8, 13))
44
nox.options.reuse_existing_virtualenvs = True
55

66

0 commit comments

Comments
 (0)