Require Python 3.3
authorSebastien Bourdeauducq <sebastien@milkymist.org>
Sun, 26 May 2013 16:02:18 +0000 (18:02 +0200)
committerSebastien Bourdeauducq <sebastien@milkymist.org>
Sun, 26 May 2013 16:02:18 +0000 (18:02 +0200)
README
setup.py

diff --git a/README b/README
index ccb46b46ddf2b7186bd06e421c2e00441ee632a0..09e29e1d4150777db9d903e7fc714e9c4717a84d 100644 (file)
--- a/README
+++ b/README
@@ -21,7 +21,7 @@ https://github.com/milkymist/migen
 Experimental version of the Milkymist SoC based on Migen:
 https://github.com/milkymist/milkymist-ng
 
-Mibuild is designed for Python 3.
+Mibuild is designed for Python 3.3.
 
 Send questions, comments and patches to devel [AT] lists.milkymist.org
 Description files for new boards welcome.
index 24695712789b54b6a3d2bc314bec848c5efdc9ee..76cc0bc46746399496f3cb84e6e430decb8d49a8 100755 (executable)
--- a/setup.py
+++ b/setup.py
@@ -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("Mibuild requires python {0} or greater".format(
                ".".join(map(str, required_version))))