Drop support for EOL Python 3.8. (#536)

This commit is contained in:
Carlton Gibson 2024-10-29 03:03:41 +01:00 committed by GitHub
parent ffad9c3cfd
commit 06afd9b94a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
5 changed files with 7 additions and 6 deletions

View File

@ -16,7 +16,6 @@ jobs:
- ubuntu - ubuntu
- windows - windows
python-version: python-version:
- "3.8"
- "3.9" - "3.9"
- "3.10" - "3.10"
- "3.11" - "3.11"

View File

@ -1,7 +1,10 @@
4.1.3 (to be released) 4.2.0 (to be released)
------------------ ------------------
* Drop support for EOL Python 3.8.
* Removed unused pytest-runner * Removed unused pytest-runner
* Fixed sdist file to ensure it includes all tests * Fixed sdist file to ensure it includes all tests
4.1.2 (2024-04-11) 4.1.2 (2024-04-11)

View File

@ -108,7 +108,7 @@ should start with a slash, but not end with one; for example::
Python Support Python Support
-------------- --------------
Daphne requires Python 3.8 or later. Daphne requires Python 3.9 or later.
Contributing Contributing

View File

@ -16,7 +16,6 @@ classifiers =
Operating System :: OS Independent Operating System :: OS Independent
Programming Language :: Python Programming Language :: Python
Programming Language :: Python :: 3 Programming Language :: Python :: 3
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9 Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10 Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11 Programming Language :: Python :: 3.11
@ -32,7 +31,7 @@ install_requires =
asgiref>=3.5.2,<4 asgiref>=3.5.2,<4
autobahn>=22.4.2 autobahn>=22.4.2
twisted[tls]>=22.4 twisted[tls]>=22.4
python_requires = >=3.8 python_requires = >=3.9
zip_safe = False zip_safe = False
[options.entry_points] [options.entry_points]

View File

@ -1,6 +1,6 @@
[tox] [tox]
envlist = envlist =
py{38,39,310,311,312} py{39,310,311,312}
[testenv] [testenv]
extras = tests extras = tests