Skip to content

Commit fdb31a2

Browse files
authored
Remove python 3.9 support, add python 3.14 (#586)
1 parent 8a60e56 commit fdb31a2

4 files changed

Lines changed: 5 additions & 5 deletions

File tree

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,11 @@ jobs:
2020
- ubuntu
2121
- windows
2222
python-version:
23-
- "3.9"
2423
- "3.10"
2524
- "3.11"
2625
- "3.12"
2726
- "3.13"
27+
- "3.14"
2828

2929
steps:
3030
- uses: actions/checkout@v5

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ should start with a slash, but not end with one; for example::
108108
Python Support
109109
--------------
110110

111-
Daphne requires Python 3.9 or later.
111+
Daphne requires Python 3.10 or later.
112112

113113

114114
Contributing

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "daphne"
33
dynamic = ["version"]
44
description = "Django ASGI (HTTP/WebSocket) server"
5-
requires-python = ">=3.9"
5+
requires-python = ">=3.10"
66
authors = [
77
{ name = "Django Software Foundation", email = "foundation@djangoproject.com" },
88
]
@@ -16,11 +16,11 @@ classifiers = [
1616
"Operating System :: OS Independent",
1717
"Programming Language :: Python",
1818
"Programming Language :: Python :: 3",
19-
"Programming Language :: Python :: 3.9",
2019
"Programming Language :: Python :: 3.10",
2120
"Programming Language :: Python :: 3.11",
2221
"Programming Language :: Python :: 3.12",
2322
"Programming Language :: Python :: 3.13",
23+
"Programming Language :: Python :: 3.14",
2424
"Topic :: Internet :: WWW/HTTP",
2525
]
2626

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tox]
22
envlist =
3-
py{39,310,311,312,313}
3+
py{310,311,312,313,314}
44

55
[testenv]
66
extras = tests

0 commit comments

Comments
 (0)