From 0a04d20e8daf8373c2a8eba888049ef5dfe2491b Mon Sep 17 00:00:00 2001 From: Nico Albers Date: Mon, 24 Feb 2020 12:07:34 +0100 Subject: [PATCH] ENH: restrict to Python 3.5 and higher in setup.py --- setup.py | 1 + 1 file changed, 1 insertion(+) diff --git a/setup.py b/setup.py index 0b97bbfd..14a49bac 100644 --- a/setup.py +++ b/setup.py @@ -52,6 +52,7 @@ def readme(): keywords="data", install_requires=INSTALL_REQUIRES, extras_require=extras, + python_requires=">=3.5", packages=find_packages(exclude=["contrib", "docs", "tests*"]), test_suite="tests", )