Skip to content
Prev Previous commit
Next Next commit
Raise maximum supported version
  • Loading branch information
filmor committed Dec 13, 2024
commit 828362748ee097bddfe292e46ec6f748e7c3ecd6
2 changes: 1 addition & 1 deletion src/runtime/PythonEngine.cs
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ public static string PythonPath
}

public static Version MinSupportedVersion => new(3, 7);
public static Version MaxSupportedVersion => new(3, 12, int.MaxValue, int.MaxValue);
public static Version MaxSupportedVersion => new(3, 13, int.MaxValue, int.MaxValue);
public static bool IsSupportedVersion(Version version) => version >= MinSupportedVersion && version <= MaxSupportedVersion;

public static string Version
Expand Down