Skip to content

Commit ade73f7

Browse files
hramezaniMercymeIlya
authored andcommitted
Add Python 3.13 support (jazzband#697)
1 parent 1cc3002 commit ade73f7

File tree

4 files changed

+8
-2
lines changed

4 files changed

+8
-2
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
fail-fast: false
1010
max-parallel: 5
1111
matrix:
12-
python-version: ['3.9', '3.10', '3.11', '3.12']
12+
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13']
1313

1414
services:
1515
postgres:

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44

55
#### Improvements
66

7+
- Add Python 3.13 support. ([#671](https://github.com/jazzband/django-auditlog/pull/671))
78
- feat: Added `LogEntry.remote_port` field. ([#671](https://github.com/jazzband/django-auditlog/pull/671))
89
- Drop Python 3.8 support. ([#678](https://github.com/jazzband/django-auditlog/pull/678))
910
- Confirm Django 5.1 support and drop Django 3.2 support. ([#677](https://github.com/jazzband/django-auditlog/pull/677))

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@
3737
"Programming Language :: Python :: 3.10",
3838
"Programming Language :: Python :: 3.11",
3939
"Programming Language :: Python :: 3.12",
40+
"Programming Language :: Python :: 3.13",
4041
"Framework :: Django",
4142
"Framework :: Django :: 4.2",
4243
"Framework :: Django :: 5.0",

tox.ini

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
[tox]
22
envlist =
33
{py39,py310,py311}-django42
4-
{py310,py311,py312}-django{50,51,main}
4+
{py310,py311,py312}-django50
5+
{py310,py311,py312,py313}-django51
6+
{py312,py313}-djangomain
57
py39-docs
68
py39-lint
79

@@ -30,6 +32,7 @@ passenv=
3032
TEST_DB_PORT
3133

3234
basepython =
35+
py313: python3.13
3336
py312: python3.12
3437
py311: python3.11
3538
py310: python3.10
@@ -51,3 +54,4 @@ python =
5154
3.10: py310
5255
3.11: py311
5356
3.12: py312
57+
3.13: py313

0 commit comments

Comments
 (0)