File tree 5 files changed +10
-10
lines changed 5 files changed +10
-10
lines changed Original file line number Diff line number Diff line change 26
26
- " 3.9"
27
27
- " 3.10"
28
28
- " 3.11"
29
- # CPython 3.12 final is scheduled for October 2023:
30
- # https://peps.python.org/pep-0693/
31
29
- " 3.12"
30
+ # CPython 3.13 final is scheduled for October 2024:
31
+ # https://peps.python.org/pep-0719/
32
+ - " 3.13"
32
33
# Python 2.7 was removed from GHA setup-python in June 2023:
33
34
# https://github.com/actions/setup-python/issues/672
34
35
@@ -55,13 +56,15 @@ jobs:
55
56
- os : windows-latest
56
57
python : 3.6
57
58
- os : windows-latest
58
- python : 3.11
59
+ python : 3.12
59
60
60
61
# macOS: test old and new Python
61
62
- os : macos-latest
62
63
python : 3.6
63
64
- os : macos-latest
64
- python : 3.11
65
+ python : 3.12
66
+
67
+ # Ubuntu: test deadsnakes Python not supported by GHA python-versions
65
68
- os : ubuntu-20.04
66
69
python : 3.5
67
70
- os : ubuntu-20.04
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ version: 2
6
6
build :
7
7
os : ubuntu-22.04
8
8
tools :
9
- python : " 3.11 "
9
+ python : " 3.12 "
10
10
11
11
sphinx :
12
12
configuration : docs/conf.py
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ functions for old Python versions.
7
7
8
8
Supported Python versions:
9
9
10
- * Python 3.5 - 3.11
10
+ * Python 3.5 - 3.12
11
11
* PyPy 2.7
12
12
* PyPy 3.6 - 3.9
13
13
Original file line number Diff line number Diff line change 41
41
"python3.10" ,
42
42
"python3.11" ,
43
43
"python3.12" ,
44
+ "python3.13" ,
44
45
"pypy" ,
45
46
"pypy2" ,
46
47
"pypy2.7" ,
Original file line number Diff line number Diff line change 14
14
15
15
# C++ is only supported on Python 3.6 and newer
16
16
TEST_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
21
17
22
18
SRC_DIR = os .path .normpath (os .path .join (os .path .dirname (__file__ ), '..' ))
23
19
You can’t perform that action at this time.
0 commit comments