chore(app.__init__): add Python version check for 3.11-3.13
This commit is contained in:
parent
05e41a86ed
commit
3fa14d0066
@ -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))
|
||||
)
|
||||
)
|
Loading…
x
Reference in New Issue
Block a user