Skip to content

Commit 1f2000e

Browse files
committed
Update checkpython.py to reflect py3.6 requirement
1 parent 2adfeb4 commit 1f2000e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

neuralmonkey/checkpython.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import sys
22

3-
if sys.version_info[0] < 3 or sys.version_info[1] < 5:
3+
if sys.version_info[0] < 3 or sys.version_info[1] < 6:
44
print("Error:", file=sys.stderr)
5-
print("Neural Monkey must use Python >= 3.5", file=sys.stderr)
5+
print("Neural Monkey must use Python >= 3.6", file=sys.stderr)
66
print("Your Python is", sys.version, sys.executable, file=sys.stderr)
77
sys.exit(1)

0 commit comments

Comments
 (0)