mirror of
https://github.com/ZDoom/zdoom-macos-deps.git
synced 2024-11-21 19:41:15 +00:00
aedi: bump minimum python version to 3.8.0
This commit is contained in:
parent
8378b1adbd
commit
7f14738143
1 changed files with 4 additions and 2 deletions
6
build.py
6
build.py
|
@ -20,8 +20,10 @@
|
|||
|
||||
import sys
|
||||
|
||||
if sys.hexversion < 0x3070000:
|
||||
print('Build module requires Python 3.7 or newer')
|
||||
_min_version = (3, 8, 0, 'final', 0)
|
||||
|
||||
if sys.version_info < _min_version:
|
||||
print(f'This module requires Python {_min_version[0]}.{_min_version[1]}.{_min_version[2]} or newer')
|
||||
exit(1)
|
||||
|
||||
sys.dont_write_bytecode = True
|
||||
|
|
Loading…
Reference in a new issue