mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2025-12-22 16:12:19 +00:00
8 lines
237 B
Python
8 lines
237 B
Python
import sys
|
|
|
|
version = (3, 4) # Check if python version is greater that this.
|
|
|
|
if sys.version_info < version:
|
|
print("Sorry, this requires python >= {}. Your version is {}!".format(version, tuple(sys.version_info)))
|
|
exit(1)
|
|
exit(0) |