8000 Update MaxSupportedVersion · pythonnet/pythonnet@a6efeae · GitHub
[go: up one dir, main page]

Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit a6efeae

Browse files
committed
Update MaxSupportedVersion
1 parent d3b56ff commit a6efeae

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/runtime/PythonEngine.cs

Lines changed: 1 addition & 1 deletion
< 5F6A tr class="diff-line-row">
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ public static string PythonPath
128128
}
129129

130130
public static Version MinSupportedVersion => new(3, 7);
131-
public static Version MaxSupportedVersion => new(3, 10, int.MaxValue, int.MaxValue);
131+
public static Version MaxSupportedVersion => new(3, 11, int.MaxValue, int.MaxValue);
132132
public static bool IsSupportedVersion(Version version) => version >= MinSupportedVersion && version <= MaxSupportedVersion;
133133

134134
public static string Version

0 commit comments

Comments
 (0)
0