Skip to content

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

+1-1
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)