Skip to content

Commit a03debb

Browse files
committed
Add support for Python 3.13
1 parent eb52e1e commit a03debb

File tree

4 files changed

+11
-2
lines changed

4 files changed

+11
-2
lines changed

.github/workflows/test.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,12 @@ jobs:
2121
runs-on: ubuntu-latest
2222
strategy:
2323
matrix:
24+
# https://docs.djangoproject.com/en/dev/faq/install/#what-python-version-can-i-use-with-django
2425
python-version: ["3.12", "3.11", "3.10"]
2526
django-version: ["5.1", "5.0", "4.2"]
2627
include:
28+
- python-version: "3.13"
29+
django-version: "5.1"
2730
- python-version: "3.9"
2831
django-version: "4.2"
2932
- python-version: "3.8"

CHANGELOG.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,15 @@
1+
# Unreleased
2+
3+
- Add support for Python 3.13.
4+
15
# 1.1.5 (Jun 22, 2024)
26

37
- Add support for Python 3.12 and drop support for Python 3.7.
48
- Add support for Django 4.2, 5.0 and drop support for Django 3.2, 4.1.
59
- Fix a bug in admin ("add" and "edit" session).
10+
- **Nov 3, 2024:** Add support for Django 5.1.
611

7-
Thanks [@ataylor32](https://github.com/ataylor32)
12+
Thanks [@ataylor32](https://github.com/ataylor32), [@browniebroke](https://github.com/browniebroke)
813

914
# 1.1.4 (Sep 11, 2022)
1015

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ cached_db), and django-qsessions.
7575

7676
## Compatibility
7777

78-
- Python: **3.8**, **3.9**, **3.10**, **3.11**, **3.12**
78+
- Python: **3.8**, **3.9**, **3.10**, **3.11**, **3.12**, **3.13**
7979
- Django: **4.2**, **5.0**, **5.1**
8080

8181
## Installation

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,7 @@
4747
"Programming Language :: Python :: 3.10",
4848
"Programming Language :: Python :: 3.11",
4949
"Programming Language :: Python :: 3.12",
50+
"Programming Language :: Python :: 3.13",
5051
"Topic :: Internet :: WWW/HTTP :: Session",
5152
"Topic :: Security",
5253
],

0 commit comments

Comments
 (0)