From 6aebac87e95127c0a2ed7841bde646e98743282e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juan=20Luis=20Cano=20Rodr=C3=ADguez?= Date: Tue, 16 Jul 2019 12:38:25 +0200 Subject: [PATCH] Add minimum Python version to packaging metadata 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, )