We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 33f344b commit af88a7aCopy full SHA for af88a7a
setup.py
@@ -5,10 +5,9 @@
5
from setuptools import find_packages
6
7
8
-required_version = (3, 3)
9
-if sys.version_info < required_version:
10
- raise SystemExit("Migen requires python {0} or greater".format(
11
- ".".join(map(str, required_version))))
+if sys.version_info[:3] < (3, 3):
+ raise SystemExit("You need Python 3.3+")
+
12
13
setup(
14
name="migen",
@@ -27,7 +26,7 @@
27
26
classifiers=[
28
"Topic :: Scientific/Engineering :: Electronic Design Automation (EDA)",
29
"Environment :: Console",
30
- "Development Status :: Alpha",
+ "Development Status :: Beta",
31
"Intended Audience :: Developers",
32
"License :: OSI Approved :: BSD License",
33
"Operating System :: OS Independent",
0 commit comments