From 342bdbe75a9a57fb8ce51407196af1ba2eee1666 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Alain=20P=C3=A9teut?= Date: Fri, 22 Feb 2019 09:45:28 +0100 Subject: [PATCH] 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 --- setup.py | 1 + 1 file changed, 1 insertion(+) 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", -- 2.30.2