Skip to content

Commit bfd58d1

Browse files
authored
Fix minimum Python version check (#2162)
1 parent 49c4e9e commit bfd58d1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

MobiFlight/Scripts/ScriptRunner.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ private bool IsMinimumPythonVersion()
160160
Log.Instance.log($"Python version: {outputParts[1]}.", LogSeverity.Info);
161161
if (Version.TryParse(outputParts[1], out Version version))
162162
{
163-
if (version.CompareTo(new Version(3, 10, 0)) >= 0)
163+
if (version.CompareTo(new Version(3, 11, 0)) >= 0)
164164
{
165165
return true;
166166
}

0 commit comments

Comments
 (0)