Merge pull request #775 from fred913/main

This commit is contained in:
Sheng Fan 2025-03-18 08:27:05 +08:00 committed by GitHub
commit 7703ea2cf7
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -0,0 +1,10 @@
# Python version check: 3.11-3.13
import sys
if sys.version_info < (3, 11) or sys.version_info > (3, 13):
print(
"Warning: Unsupported Python version {ver}, please use 3.11-3.13".format(
ver=".".join(map(str, sys.version_info))
)
)