Skip to content

Commit 71566f4

Browse files
authored
Support python 3.13 (jazzband#747)
1 parent 959f1fb commit 71566f4

File tree

5 files changed

+8
-5
lines changed

5 files changed

+8
-5
lines changed

.github/workflows/test.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
strategy:
1010
fail-fast: false
1111
matrix:
12-
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
12+
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13']
1313
django-version: ['4.2', '5.0', '5.1', 'main']
1414
postgres-version: ['12', '16']
1515
mariadb-version: ['10.6', '10.11', '11.2']

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ Silk is a live profiling and inspection tool for the Django framework. Silk inte
3131
Silk has been tested with:
3232

3333
* Django: 4.2, 5.0, 5.1
34-
* Python: 3.8, 3.9, 3.10, 3.11, 3.12
34+
* Python: 3.8, 3.9, 3.10, 3.11, 3.12, 3.13
3535

3636
## Installation
3737

docs/index.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -58,4 +58,4 @@ Requirements
5858
------------
5959

6060
* Django: 4.2, 5.0, 5.1
61-
* Python: 3.8, 3.9, 3.10, 3.11, 3.12
61+
* Python: 3.8, 3.9, 3.10, 3.11, 3.12, 3.13

setup.py

+1
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@
3232
'Programming Language :: Python :: 3.10',
3333
'Programming Language :: Python :: 3.11',
3434
'Programming Language :: Python :: 3.12',
35+
'Programming Language :: Python :: 3.13',
3536
'Topic :: Internet :: WWW/HTTP',
3637
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
3738
],

tox.ini

+4-2
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ python =
55
3.10: py310
66
3.11: py311
77
3.12: py312
8+
3.13: py313
89

910
[gh-actions:env]
1011
DJANGO =
@@ -15,8 +16,8 @@ DJANGO =
1516

1617
[tox]
1718
envlist =
18-
py{38,39,310,311,312}-dj42-{sqlite3,mysql,postgresql}
19-
py{310,311,312}-dj{50,51,main}-{sqlite3,mysql,postgresql}
19+
py{38,39,310,311,312,313}-dj42-{sqlite3,mysql,postgresql}
20+
py{310,311,312,313}-dj{50,51,main}-{sqlite3,mysql,postgresql}
2021

2122
[testenv]
2223
usedevelop = True
@@ -32,6 +33,7 @@ deps =
3233
dj51: django>=5.1,<5.2
3334
djmain: https://github.com/django/django/archive/main.tar.gz
3435
py312: setuptools
36+
py313: setuptools
3537
setenv =
3638
PYTHONPATH={toxinidir}:{toxinidir}
3739
PYTHONDONTWRITEBYTECODE=1

0 commit comments

Comments
 (0)