Add explicit support for python 3.7 (#8309)

This commit is contained in:
Ville Brofeldt 2019-09-27 17:54:45 +03:00 committed by GitHub
parent 0a8f3eb43f
commit 52a84d2581
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 2 deletions

View File

@ -24,7 +24,7 @@ Getting Started
Superset has deprecated support for Python ``2.*`` and supports Superset has deprecated support for Python ``2.*`` and supports
only ``~=3.6`` to take advantage of the newer Python features and reduce only ``~=3.6`` to take advantage of the newer Python features and reduce
the burden of supporting previous versions. We run our test suite the burden of supporting previous versions. We run our test suite
against ``3.6``, but running on ``3.7`` **should** work as well. against ``3.6``, but ``3.7`` is fully supported as well.
Cloud-native! Cloud-native!
------------- -------------

View File

@ -124,5 +124,8 @@ setup(
download_url=( download_url=(
"https://dist.apache.org/repos/dist/release/superset/" + version_string "https://dist.apache.org/repos/dist/release/superset/" + version_string
), ),
classifiers=["Programming Language :: Python :: 3.6"], classifiers=[
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
],
) )