forked from apache/superset
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: Deprecate Python 3.7 (apache#19017)
* chore: Deprecate Python 3.7 and add support for Python 3.10 * Update local-backend.mdx * Update UPDATING.md Co-authored-by: John Bodley <[email protected]>
- Loading branch information
1 parent
54b60de
commit e3e03d2
Showing
4 changed files
with
6 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -167,13 +167,12 @@ def get_git_sha() -> str: | |
"vertica": ["sqlalchemy-vertica-python>=0.5.9, < 0.6"], | ||
"netezza": ["nzalchemy>=11.0.2"], | ||
}, | ||
python_requires="~=3.7", | ||
python_requires="~=3.8", | ||
author="Apache Software Foundation", | ||
author_email="[email protected]", | ||
url="https://superset.apache.org/", | ||
download_url="https://www.apache.org/dist/superset/" + version_string, | ||
classifiers=[ | ||
"Programming Language :: Python :: 3.7", | ||
"Programming Language :: Python :: 3.8", | ||
"Programming Language :: Python :: 3.9", | ||
], | ||
|