Skip to content

Commit e2c6cee

Browse files
committed
Add Python 3.13 support
1 parent f422f1d commit e2c6cee

File tree

4 files changed

+21
-5
lines changed

4 files changed

+21
-5
lines changed

.github/workflows/main.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -64,11 +64,11 @@ jobs:
6464
matrix:
6565
include:
6666
- name: linting,docs
67-
python: '3.12'
67+
python: '3.13'
6868
allow_failure: false
6969

70-
- name: py312-dj51-postgres-xdist-coverage
71-
python: '3.12'
70+
- name: py313-dj51-postgres-xdist-coverage
71+
python: '3.13'
7272
allow_failure: false
7373

7474
- name: py312-dj42-postgres-xdist-coverage
@@ -103,8 +103,8 @@ jobs:
103103
python: '3.9'
104104
allow_failure: false
105105

106-
- name: py312-djmain-sqlite-coverage
107-
python: '3.12'
106+
- name: py313-djmain-sqlite-coverage
107+
python: '3.13'
108108
allow_failure: true
109109

110110
- name: py312-dj51-sqlite-xdist-coverage

docs/changelog.rst

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,20 @@
11
Changelog
22
=========
33

4+
v4.10.0 (Not released yet)
5+
--------------------------
6+
7+
Compatibility
8+
^^^^^^^^^^^^^
9+
10+
* Added official support for Python 3.13.
11+
12+
Bugfixes
13+
^^^^^^^^
14+
15+
* Fixed lock/unlock of db breaks if pytest is executed twice in the same process.
16+
17+
418
v4.9.0 (2024-09-02)
519
-------------------
620

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ classifiers = [
3333
"Programming Language :: Python :: 3.10",
3434
"Programming Language :: Python :: 3.11",
3535
"Programming Language :: Python :: 3.12",
36+
"Programming Language :: Python :: 3.13",
3637
"Programming Language :: Python :: Implementation :: CPython",
3738
"Programming Language :: Python :: Implementation :: PyPy",
3839
"Topic :: Software Development :: Testing",

tox.ini

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
[tox]
22
envlist =
3+
py313-dj{main,51}-postgres
34
py312-dj{main,51,50,42}-postgres
45
py311-dj{main,51,50,42}-postgres
56
py310-dj{main,51,50,42}-postgres

0 commit comments

Comments
 (0)