From 52a84d2581ecd83fcd142991b9c43643c87cbef7 Mon Sep 17 00:00:00 2001 From: Ville Brofeldt <33317356+villebro@users.noreply.github.com> Date: Fri, 27 Sep 2019 17:54:45 +0300 Subject: [PATCH] Add explicit support for python 3.7 (#8309) --- docs/installation.rst | 2 +- setup.py | 5 ++++- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/docs/installation.rst b/docs/installation.rst index 2f5d0e1d2..fc8fc2b9b 100644 --- a/docs/installation.rst +++ b/docs/installation.rst @@ -24,7 +24,7 @@ Getting Started Superset has deprecated support for Python ``2.*`` and supports only ``~=3.6`` to take advantage of the newer Python features and reduce 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! ------------- diff --git a/setup.py b/setup.py index 222b9b8c3..fe59631a2 100644 --- a/setup.py +++ b/setup.py @@ -124,5 +124,8 @@ setup( download_url=( "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", + ], )