From: Sebastien Bourdeauducq Date: Sun, 9 Sep 2012 17:56:04 +0000 (+0200) Subject: setup.py: cosmetic X-Git-Tag: 24jan2021_ls180~2099^2~838 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=f40ca52e5f5c95226ebcfacfb3b915b9400a43f2;p=litex.git setup.py: cosmetic --- diff --git a/setup.py b/setup.py index 0c8c16d6..742bdc71 100755 --- a/setup.py +++ b/setup.py @@ -1,6 +1,4 @@ #!/usr/bin/env python3 -# vim: noexpandtab:tabstop=8:softtabstop=8 -""" Migen's distutils distribution and installation script. """ import sys, os from setuptools import setup @@ -11,7 +9,7 @@ README = open(os.path.join(here, "README")).read() required_version = (3, 1) if sys.version_info < required_version: - raise SystemExit("migen requires python {0} or greater".format( + raise SystemExit("Migen requires python {0} or greater".format( ".".join(map(str, required_version)))) setup(