Declare Python 3.9 support
See original GitHub issuePython 3.9.0 is due out on Monday (https://www.python.org/dev/peps/pep-0596/).
We’re already testing against 3.9-dev
, so let’s also declare support for Python 3.9.
Add the 3.9 Trove classifier to setup.py
, and also py39
to tox.ini
.
If doing this after the release:
-
Check if
3.9-dev
can be replaced with plain3.9
in.travis.yml
-
Also see if the
3.9-dev
line can be removed from.github/workflows/test.yml
and replaced with"3.9"
with the other non-devs.
Important: If doing these, please enable the CIs on your fork and make sure they pass before submitting the PR.
- Travis CI
- GitHub Actions
- Trove classifier
- Tox
Issue Analytics
- State:
- Created 3 years ago
- Comments:6
Top Results From Across the Web
What's New In Python 3.9 — Python 3.11.1 documentation
This article explains the new features in Python 3.9, compared to 3.8. Python 3.9 was released on October 5, 2020. For full details,...
Read more >Python 3.9 support table for most popular Python packages
Python 3.9 is a currently supported version of Python . This site shows Python 3.9 support for the 360 most downloaded packages on...
Read more >Python 3.9: Cool New Features for You to Try
Every release of Python includes new, improved, and deprecated features, and Python 3.9 is no different. The documentation gives a complete list ...
Read more >Official support for python 3.9 #3190 - tiangolo/fastapi - GitHub
FastAPI officially declares support for python up to version 3.8. This holds true in pyproject.toml and in declaration of tested python versions ...
Read more >Python Types Intro - FastAPI
The syntax using typing is compatible with all versions, from Python 3.6 to the latest ones, including Python 3.9, Python 3.10, etc. As...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Added it again in https://github.com/jmoiron/humanize/pull/176 .
Hi @hugovk , I have been waiting Travis support for 3.9 for a while now. It’s still not there (https://docs.travis-ci.com/user/languages/python/#python-versions), but I have opened a WIP PR, which can be merged as soon as Travis adds support for 3.9 https://github.com/jmoiron/humanize/pull/171