From 1591d75d2ffccb338db96502297405d7f681835e Mon Sep 17 00:00:00 2001 From: Daniel Vaz Gaspar Date: Thu, 26 Nov 2020 11:49:12 +0000 Subject: [PATCH] fix(setup): disallow python 3.6 for pip install (#11825) * fix(setup): disallow python 3.6 for pip install * remove old py constraint --- setup.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/setup.py b/setup.py index e947a614c..5474c9e96 100644 --- a/setup.py +++ b/setup.py @@ -22,9 +22,6 @@ import sys from setuptools import find_packages, setup -if sys.version_info < (3, 6): - sys.exit("Sorry, Python < 3.6 is not supported") - BASE_DIR = os.path.abspath(os.path.dirname(__file__)) PACKAGE_JSON = os.path.join(BASE_DIR, "superset-frontend", "package.json") @@ -138,7 +135,7 @@ setup( "thumbnails": ["Pillow>=7.0.0, <8.0.0"], "vertica": ["sqlalchemy-vertica-python>=0.5.9, < 0.6"], }, - python_requires="~=3.6", + python_requires="~=3.7", author="Apache Software Foundation", author_email="dev@superset.incubator.apache.org", url="https://superset.apache.org/",