setup: simpler version check, beta status
authorSebastien Bourdeauducq <sb@m-labs.hk>
Thu, 24 Sep 2015 08:08:39 +0000 (16:08 +0800)
committerSebastien Bourdeauducq <sb@m-labs.hk>
Thu, 24 Sep 2015 08:08:39 +0000 (16:08 +0800)
setup.py

index 0b5d70f70df96dab819376dafb6da2b013dcdd89..fb139718de23a4d5161a6864c9fcf10404ba14dd 100755 (executable)
--- a/setup.py
+++ b/setup.py
@@ -5,10 +5,9 @@ from setuptools import setup
 from setuptools import find_packages
 
 
-required_version = (3, 3)
-if sys.version_info < required_version:
-    raise SystemExit("Migen requires python {0} or greater".format(
-        ".".join(map(str, required_version))))
+if sys.version_info[:3] < (3, 3):
+    raise SystemExit("You need Python 3.3+")
+
 
 setup(
     name="migen",
@@ -27,7 +26,7 @@ setup(
     classifiers=[
         "Topic :: Scientific/Engineering :: Electronic Design Automation (EDA)",
         "Environment :: Console",
-        "Development Status :: Alpha",
+        "Development Status :: Beta",
         "Intended Audience :: Developers",
         "License :: OSI Approved :: BSD License",
         "Operating System :: OS Independent",