From: Sebastien Bourdeauducq Date: Sun, 26 May 2013 16:02:18 +0000 (+0200) Subject: Require Python 3.3 X-Git-Tag: 24jan2021_ls180~2099^2~443^2~28 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=c13e573e9f39d329b5aa96b47842592972c6e043;p=litex.git Require Python 3.3 --- diff --git a/README b/README index ccb46b46..09e29e1d 100644 --- 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. diff --git a/setup.py b/setup.py index 24695712..76cc0bc4 100755 --- 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))))