Skip to content

Commit af88a7a

Browse files
committedSep 24, 2015
setup: simpler version check, beta status
1 parent 33f344b commit af88a7a

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed
 

Diff for: ‎setup.py

+4-5
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,9 @@
55
from setuptools import find_packages
66

77

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))))
8+
if sys.version_info[:3] < (3, 3):
9+
raise SystemExit("You need Python 3.3+")
10+
1211

1312
setup(
1413
name="migen",
@@ -27,7 +26,7 @@
2726
classifiers=[
2827
"Topic :: Scientific/Engineering :: Electronic Design Automation (EDA)",
2928
"Environment :: Console",
30-
"Development Status :: Alpha",
29+
"Development Status :: Beta",
3130
"Intended Audience :: Developers",
3231
"License :: OSI Approved :: BSD License",
3332
"Operating System :: OS Independent",

0 commit comments

Comments
 (0)
Please sign in to comment.