Skip to content

Commit

Permalink
Drop support for EOL Python 3.8. (#536)
Browse files Browse the repository at this point in the history
  • Loading branch information
carltongibson authored Oct 29, 2024
1 parent ffad9c3 commit 06afd9b
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 6 deletions.
1 change: 0 additions & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ jobs:
- ubuntu
- windows
python-version:
- "3.8"
- "3.9"
- "3.10"
- "3.11"
Expand Down
5 changes: 4 additions & 1 deletion CHANGELOG.txt
Original file line number Diff line number Diff line change
@@ -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

* Fixed sdist file to ensure it includes all tests

4.1.2 (2024-04-11)
Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ should start with a slash, but not end with one; for example::
Python Support
--------------

Daphne requires Python 3.8 or later.
Daphne requires Python 3.9 or later.


Contributing
Expand Down
3 changes: 1 addition & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ classifiers =
Operating System :: OS Independent
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Expand All @@ -32,7 +31,7 @@ install_requires =
asgiref>=3.5.2,<4
autobahn>=22.4.2
twisted[tls]>=22.4
python_requires = >=3.8
python_requires = >=3.9
zip_safe = False

[options.entry_points]
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tox]
envlist =
py{38,39,310,311,312}
py{39,310,311,312}

[testenv]
extras = tests
Expand Down

0 comments on commit 06afd9b

Please sign in to comment.