Skip to content

Commit

Permalink
setup: simpler version check, beta status
Browse files Browse the repository at this point in the history
sbourdeauducq committed Sep 24, 2015
1 parent 33f344b commit af88a7a
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
@@ -5,10 +5,9 @@
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 @@
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",

0 comments on commit af88a7a

Please sign in to comment.