File tree Expand file tree Collapse file tree 5 files changed +10
-10
lines changed Expand file tree Collapse file tree 5 files changed +10
-10
lines changed Original file line number Diff line number Diff line change 2626 - " 3.9"
2727 - " 3.10"
2828 - " 3.11"
29- # CPython 3.12 final is scheduled for October 2023:
30- # https://peps.python.org/pep-0693/
3129 - " 3.12"
30+ # CPython 3.13 final is scheduled for October 2024:
31+ # https://peps.python.org/pep-0719/
32<
8000
/td>+ - " 3.13"
3233 # Python 2.7 was removed from GHA setup-python in June 2023:
3334 # https://github.com/actions/setup-python/issues/672
3435
@@ -55,13 +56,15 @@ jobs:
5556 - os : windows-latest
5657 python : 3.6
5758 - os : windows-latest
58- python : 3.11
59+ python : 3.12
5960
6061 # macOS: test old and new Python
6162 - os : macos-latest
6263 python : 3.6
6364 - os : macos-latest
64- python : 3.11
65+ python : 3.12
66+
67+ # Ubuntu: test deadsnakes Python not supported by GHA python-versions
6568 - os : ubuntu-20.04
6669 python : 3.5
6770 - os : ubuntu-20.04
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ version: 2
66build :
77 os : ubuntu-22.04
88 tools :
9- python : " 3.11 "
9+ python : " 3.12 "
1010
1111sphinx :
1212 configuration : docs/conf.py
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ functions for old Python versions.
77
88Supported Python versions:
99
10- * Python 3.5 - 3.11
10+ * Python 3.5 - 3.12
1111* PyPy 2.7
1212* PyPy 3.6 - 3.9
1313
Original file line number Diff line number Diff line change 4141 "python3.10" ,
4242 "python3.11" ,
4343 "python3.12" ,
44+ "python3.13" ,
4445 "pypy" ,
4546 "pypy2" ,
4647 "pypy2.7" ,
Original file line number Diff line number Diff line change 1414
1515# C++ is only supported on Python 3.6 and newer
1616TEST_CPP = (sys .version_info >= (3 , 6 ))
17- if 0x30b0000 <= sys .hexversion <= 0x30b00b3 :
18- # Don't test C++ on Python 3.11b1 - 3.11b3: these versions have C++
19- # compatibility issues.
20- TEST_CPP = False
2117
2218SRC_DIR = os .path .normpath (os .path .join (os .path .dirname (__file__ ), '..' ))
2319
You can’t perform that action at this time.
0 commit comments