aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthew Lemon <lemon@matthewlemon.com>2019-10-26 16:11:21 +0100
committerMatthew Lemon <lemon@matthewlemon.com>2019-10-26 16:11:21 +0100
commitcc45cade1d1c7cf7eb93e02b834c6a38d464dac1 (patch)
tree32fa94defe54f27ca6c33e87912980553a38a488
parentd9c3a460023f59264ebd55342c3f538f62de2ecc (diff)
fix setup.py to require 3.7 and above
-rw-r--r--setup.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/setup.py b/setup.py
index d9fd221..90f1f11 100644
--- a/setup.py
+++ b/setup.py
@@ -52,7 +52,7 @@ setup(
maintainer_email='matt@matthewlemon.com',
url='https://github.com/hammerheadlemon/datamaps',
packages=find_packages(),
- python_requires='>=3.6',
+ python_requires='>=3.7',
entry_points={'console_scripts': [
'datamaps = datamaps.main:cli'
]},