From: Lars-Peter Clausen Date: Tue, 31 Jan 2012 20:46:08 +0000 (+0100) Subject: Lower required python version to 3.1 X-Git-Tag: 24jan2021_ls180~2099^2~1044^2~2 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=9f05e7235d0d9aab0385e4610fe3405bc0af9749;p=litex.git Lower required python version to 3.1 migen is confirmed to work fine with python 3.1, so lower the required version from 3.2 to 3.1. Signed-off-by: Lars-Peter Clausen --- diff --git a/setup.py b/setup.py index e46835de..a2cbc0b2 100755 --- a/setup.py +++ b/setup.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python3.2 +#!/usr/bin/env python3 # vim: noexpandtab:tabstop=8:softtabstop=8 """ Migen's distutils distribution and installation script. """ @@ -8,7 +8,7 @@ from distutils.core import setup here = os.path.abspath(os.path.dirname(__file__)) README = open(os.path.join(here, "README")).read() -required_version = (3, 2) +required_version = (3, 1) if sys.version_info < required_version: raise SystemExit("migen requires python {0} or greater".format( ".".join(map(str, required_version))))