Skip to content

Commit 209aefc

Browse files
committed
Adjust version ranges
1 parent 70376f2 commit 209aefc

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/runtime/PythonEngine.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -134,8 +134,8 @@ public static string PythonPath
134134
}
135135
}
136136

137-
public static Version MinSupportedVersion => new(3, 7);
138-
public static Version MaxSupportedVersion => new(3, 14, int.MaxValue, int.MaxValue);
137+
public static Version MinSupportedVersion => new(3, 10);
138+
public static Version MaxSupportedVersion => new(3, 15, 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)