Skip to content

Commit 7a31d38

Browse files
committed
Add 3.12 to CI and metadata
1 parent 93d4119 commit 7a31d38

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

.github/workflows/main.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
fail-fast: false
1717
matrix:
1818
os: [windows, ubuntu, macos]
19-
python: ["3.7", "3.8", "3.9", "3.10", "3.11"]
19+
python: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12.0-rc.3"]
2020
platform: [x64, x86]
2121
exclude:
2222
- os: ubuntu

pyproject.toml

+2-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ dependencies = [
1313
"clr_loader>=0.2.6,<0.3.0"
1414
]
1515

16-
requires-python = ">=3.7, <3.12"
16+
requires-python = ">=3.7, <3.13"
1717

1818
classifiers = [
1919
"Development Status :: 5 - Production/Stable",
@@ -26,6 +26,7 @@ classifiers = [
2626
"Programming Language :: Python :: 3.9",
2727
"Programming Language :: Python :: 3.10",
2828
"Programming Language :: Python :: 3.11",
29+
"Programming Language :: Python :: 3.12",
2930
"Operating System :: Microsoft :: Windows",
3031
"Operating System :: POSIX :: Linux",
3132
"Operating System :: MacOS :: MacOS X",

src/runtime/PythonEngine.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ public static string PythonPath
135135
}
136136

137137
public static Version MinSupportedVersion => new(3, 7);
138-
public static Version MaxSupportedVersion => new(3, 11, int.MaxValue, int.MaxValue);
138+
public static Version MaxSupportedVersion => new(3, 12, int.MaxValue, int.MaxValue);
139139
public static bool IsSupportedVersion(Version version) => version >= MinSupportedVersion && version <= MaxSupportedVersion;
140140

141141
public static string Version

0 commit comments

Comments
 (0)