Skip to content

Commit 4c4b02a

Browse files
committed
fix(python): target python 3.11+ and remove support for python 3.10
1 parent e8ae118 commit 4c4b02a

File tree

3 files changed

+17
-241
lines changed

3 files changed

+17
-241
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
runs-on: ubuntu-latest
3131
strategy:
3232
matrix:
33-
python-version: ["3.10", "3.11", "3.12"]
33+
python-version: ["3.11", "3.12", "3.13"]
3434
fail-fast: false
3535
services:
3636
postgres:

pyproject.toml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -56,10 +56,9 @@ classifiers = [
5656
"Operating System :: OS Independent",
5757
"Programming Language :: Python :: 3 :: Only",
5858
"Programming Language :: Python :: 3",
59-
"Programming Language :: Python :: 3.10",
6059
"Programming Language :: Python :: 3.11",
6160
"Programming Language :: Python :: 3.12",
62-
"Programming Language :: Python :: 3.9",
61+
"Programming Language :: Python :: 3.13",
6362
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
6463
"Topic :: Internet :: WWW/HTTP",
6564
"Topic :: Software Development :: Libraries :: Application Frameworks",
@@ -80,7 +79,7 @@ description = "The missing toolkit for Django Channels — auth, logging, consum
8079
license = {file = "LICENSE"}
8180
name = "chanx"
8281
readme = "README.md"
83-
requires-python = ">=3.10,<4.0"
82+
requires-python = ">=3.11,<4.0"
8483
version = "0.0.0"
8584

8685
[project.optional-dependencies]

0 commit comments

Comments
 (0)