forked from M-Labs/artiq
1
0
Fork 0

setup.py: migen now works on Python 3.6, relax version check.

This commit is contained in:
whitequark 2018-01-20 04:50:26 +00:00
parent 8fe463d4a0
commit ab9eb56ceb
1 changed files with 2 additions and 2 deletions

View File

@ -6,8 +6,8 @@ import sys
import versioneer
if not (3, 5, 3) <= sys.version_info[:3] < (3, 6, 0):
raise Exception("You need Python 3.5.3+ (but not 3.6+)")
if sys.version_info[:3] < (3, 5, 3):
raise Exception("You need Python 3.5.3+")
# Depends on PyQt5, but setuptools cannot check for it.