From 3631277e3424e2ce1749ea07ae5e5f221b570a42 Mon Sep 17 00:00:00 2001 From: AdrianKs Date: Fri, 10 Jul 2020 15:49:30 +0200 Subject: [PATCH] set min python version to 3.7 --- setup.py | 1 + 1 file changed, 1 insertion(+) diff --git a/setup.py b/setup.py index f757d16a5..c05a4f76c 100644 --- a/setup.py +++ b/setup.py @@ -24,6 +24,7 @@ # see http://numba.pydata.org/numba-doc/0.48.0/reference/pysupported.html "numba==0.48.0", ], + python_requires='>=3.7', # ax 0.1.10 requires python 3.7 zip_safe=False, entry_points={"console_scripts": ["kge = kge.cli:main",],}, )