-
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
34 additions
and
28 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
File renamed without changes.
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 |
---|---|---|
@@ -0,0 +1,28 @@ | ||
=============================================== | ||
Dropping support for deprecated Python versions | ||
=============================================== | ||
|
||
When a Python version is officially deprecated, it needs to be removed from the | ||
versions supported by this package. To do so, the following actions need to be taken: | ||
|
||
* In `pyproject.toml`: | ||
|
||
* Remove the Python version from the classifiers. | ||
* Update the minimum supported Python version in `requires-python`. | ||
|
||
* In `tox.ini`: | ||
|
||
* Remove the Python version from `tox.envlist`. | ||
|
||
* In `.github/workflows/test_and_publish.yml`: | ||
|
||
* Remove the Python version from the build matrix. | ||
|
||
* In the GitHub repository settings: | ||
|
||
* If necessary, update the required status checks in the branch protection | ||
rules. | ||
|
||
The status of the Python versions can be found `here | ||
<https://devguide.python.org/versions/>`_. | ||
|
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
File renamed without changes.
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