Pikachu Habitats + U-Turn TM Fix + Build Script Warning

-The build script will warn you if you're using Python 3.8 or higher.
This commit is contained in:
Skeli
2020-03-26 19:14:09 +02:00
parent 7409555e1a
commit de580b83f2
3 changed files with 79 additions and 4 deletions

View File

@@ -386,6 +386,9 @@ def main():
'**/*.mid': ProcessMusic,
}
if sys.version_info.major >= 3 and sys.version_info.minor >= 8:
print("Warning! Python 3.8 may not be able to build this engine.\nPlease downgrade to Python 3.7.4")
# Create output directory
try:
os.makedirs(BUILD)