From 61644b751d0f8a80a4d24325a7f394e49662a73d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juan=20Luis=20Cano=20Rodr=C3=ADguez?= Date: Wed, 17 Jul 2019 12:59:16 +0200 Subject: [PATCH] Add minimum Python version to packaging metadata (#7222) See #7221 and #6564. --- setup.py | 1 + 1 file changed, 1 insertion(+) diff --git a/setup.py b/setup.py index acf77a708936..71ce34d36be5 100644 --- a/setup.py +++ b/setup.py @@ -184,5 +184,6 @@ def run(self): ], # Same here. extras_require={'dmypy': 'psutil >= 4.0'}, + python_requires=">=3.5", include_package_data=True, )