Skip to content

Commit

Permalink
Support python 3.13 (#747)
Browse files Browse the repository at this point in the history
  • Loading branch information
albertyw authored Oct 26, 2024
1 parent 959f1fb commit 71566f4
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13']
django-version: ['4.2', '5.0', '5.1', 'main']
postgres-version: ['12', '16']
mariadb-version: ['10.6', '10.11', '11.2']
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ Silk is a live profiling and inspection tool for the Django framework. Silk inte
Silk has been tested with:

* Django: 4.2, 5.0, 5.1
* Python: 3.8, 3.9, 3.10, 3.11, 3.12
* Python: 3.8, 3.9, 3.10, 3.11, 3.12, 3.13

## Installation

Expand Down
2 changes: 1 addition & 1 deletion docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -58,4 +58,4 @@ Requirements
------------

* Django: 4.2, 5.0, 5.1
* Python: 3.8, 3.9, 3.10, 3.11, 3.12
* Python: 3.8, 3.9, 3.10, 3.11, 3.12, 3.13
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: 3.13',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
],
Expand Down
6 changes: 4 additions & 2 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ python =
3.10: py310
3.11: py311
3.12: py312
3.13: py313

[gh-actions:env]
DJANGO =
Expand All @@ -15,8 +16,8 @@ DJANGO =

[tox]
envlist =
py{38,39,310,311,312}-dj42-{sqlite3,mysql,postgresql}
py{310,311,312}-dj{50,51,main}-{sqlite3,mysql,postgresql}
py{38,39,310,311,312,313}-dj42-{sqlite3,mysql,postgresql}
py{310,311,312,313}-dj{50,51,main}-{sqlite3,mysql,postgresql}

[testenv]
usedevelop = True
Expand All @@ -32,6 +33,7 @@ deps =
dj51: django>=5.1,<5.2
djmain: https://github.com/django/django/archive/main.tar.gz
py312: setuptools
py313: setuptools
setenv =
PYTHONPATH={toxinidir}:{toxinidir}
PYTHONDONTWRITEBYTECODE=1
Expand Down

0 comments on commit 71566f4

Please sign in to comment.