setup.py: update required Python version

This commit is contained in:
Sebastien Bourdeauducq 2013-05-16 15:24:11 +02:00
parent 792b8fed1b
commit 27accd72b5
1 changed files with 1 additions and 1 deletions

View File

@ -7,7 +7,7 @@ from setuptools import find_packages
here = os.path.abspath(os.path.dirname(__file__))
README = open(os.path.join(here, "README")).read()
required_version = (3, 1)
required_version = (3, 3)
if sys.version_info < required_version:
raise SystemExit("Migen requires python {0} or greater".format(
".".join(map(str, required_version))))