Set minimum Python version to 3.6

This commit is contained in:
Veronica K. B. Olsen
2020-02-05 01:33:43 +01:00
parent bc98e4d4c8
commit 833bc5ffd2
+2 -2
View File
@@ -3,8 +3,8 @@
import sys
if sys.hexversion < 0x030500F0:
print("ERROR: At least Python 3.5 is required")
if sys.hexversion < 0x030600F0:
print("ERROR: At least Python 3.6 is required")
sys.exit(1)
try: