fix(setup): disallow python 3.6 for pip install (#11825)

* fix(setup): disallow python 3.6 for pip install

* remove old py constraint
This commit is contained in:
Daniel Vaz Gaspar 2020-11-26 11:49:12 +00:00 committed by GitHub
parent bac84a3aac
commit 1591d75d2f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 4 deletions

View File

@ -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/",