Skip to content

Commit ab63b7e

Browse files
committed
역시 AI..
1 parent 4b2c6b6 commit ab63b7e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

MCPForUnity/Editor/Dependencies/PlatformDetectors/WindowsPlatformDetector.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -256,7 +256,7 @@ private bool TryValidatePython(string pythonPath, out string version, out string
256256
// Validate minimum version (Python 4+ or python 3.11+)
257257
if (TryParseVersion(version, out var major, out var minor))
258258
{
259-
return major > 3 || (major >= 3 && minor >= 10);
259+
return major > 3 || (major >= 3 && minor >= 11);
260260
}
261261
}
262262
}

0 commit comments

Comments
 (0)