From: Alain Péteut Date: Fri, 22 Feb 2019 08:45:28 +0000 (+0100) Subject: setup.py: constrain Python version X-Git-Tag: working~29 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=342bdbe75a9a57fb8ce51407196af1ba2eee1666;p=nmigen.git setup.py: constrain Python version Installation should be constraint to supported Python versions, using `python_requires`, refer to [1] for details. [1] https://packaging.python.org/guides/distributing-packages-using-setuptools/#python-requires --- diff --git a/setup.py b/setup.py index 74dd99a..75825d9 100644 --- a/setup.py +++ b/setup.py @@ -16,6 +16,7 @@ setup( license="BSD", install_requires=["pyvcd>=0.1.4", "bitarray"], packages=find_packages(), + python_requires=">=3.6", project_urls={ #"Documentation": "https://glasgow.readthedocs.io/", "Source Code": "https://github.com/m-labs/nmigen",