Skip to content

Commit

Permalink
fix(setup): disallow python 3.6 for pip install (#11825)
Browse files Browse the repository at this point in the history
* fix(setup): disallow python 3.6 for pip install

* remove old py constraint
  • Loading branch information
dpgaspar authored Nov 26, 2020
1 parent bac84a3 commit 1591d75
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,6 @@

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")
Expand Down Expand Up @@ -138,7 +135,7 @@ def get_git_sha():
"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="[email protected]",
url="https://superset.apache.org/",
Expand Down

0 comments on commit 1591d75

Please sign in to comment.