Skip to content

Commit ce03d4a

Browse files
authored
Merge pull request #92 from ghazi-git/support-python-3.13
support-python-3.13
2 parents e38b375 + 7e5a6ee commit ce03d4a

File tree

4 files changed

+11
-5
lines changed

4 files changed

+11
-5
lines changed

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
strategy:
1111
matrix:
1212
platform: [ ubuntu-latest, macos-latest, windows-latest ]
13-
python-version: [ "3.8", "3.9", "3.10", "3.11", "3.12" ]
13+
python-version: [ "3.8", "3.9", "3.10", "3.11", "3.12", "3.13" ]
1414

1515
steps:
1616
- uses: actions/checkout@v4

docs/changelog.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,15 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
66

77
## [UNRELEASED]
8+
### Added
9+
- add support for python 3.13
810

911
## [0.14.1] - 2024-08-10
12+
### Added
13+
- declare support for django 5.1
14+
1015
### Fixed
1116
- stop ignoring exceptions with detail as an empty string when returning api errors.
12-
- declare support for django 5.1
1317

1418
## [0.14.0] - 2024-06-19
1519
### Added

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ classifiers = [
2222
"Programming Language :: Python :: 3.10",
2323
"Programming Language :: Python :: 3.11",
2424
"Programming Language :: Python :: 3.12",
25+
"Programming Language :: Python :: 3.13",
2526
]
2627
dynamic = ["version", "description"]
2728
requires-python = ">=3.8"

tox.ini

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ isolated_build = True
88
envlist =
99
py{38,39,310,311}-dj32-drf312
1010
py{38,39,310,311,312}-dj{32,40,41}-drf{313,314,315}
11-
py{38,39,310,311,312}-dj42-drf{314,315}
12-
py{310,311,312}-dj50-drf{314,315}
13-
py{310,311,312}-dj51-drf315
11+
py{38,39,310,311,312,313}-dj42-drf{314,315}
12+
py{310,311,312,313}-dj50-drf{314,315}
13+
py{310,311,312,313}-dj51-drf315
1414
lint
1515
docs
1616

@@ -21,6 +21,7 @@ python =
2121
3.10: py310
2222
3.11: py311
2323
3.12: py312, lint, docs
24+
3.13: py313
2425

2526
[testenv]
2627
deps =

0 commit comments

Comments
 (0)