Skip to content

Commit

Permalink
Merge pull request #92 from ghazi-git/support-python-3.13
Browse files Browse the repository at this point in the history
support-python-3.13
  • Loading branch information
ghazi-git authored Oct 19, 2024
2 parents e38b375 + 7e5a6ee commit ce03d4a
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
strategy:
matrix:
platform: [ ubuntu-latest, macos-latest, windows-latest ]
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" ]

steps:
- uses: actions/checkout@v4
Expand Down
6 changes: 5 additions & 1 deletion docs/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,15 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).

## [UNRELEASED]
### Added
- add support for python 3.13

## [0.14.1] - 2024-08-10
### Added
- declare support for django 5.1

### Fixed
- stop ignoring exceptions with detail as an empty string when returning api errors.
- declare support for django 5.1

## [0.14.0] - 2024-06-19
### Added
Expand Down
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ classifiers = [
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
dynamic = ["version", "description"]
requires-python = ">=3.8"
Expand Down
7 changes: 4 additions & 3 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ isolated_build = True
envlist =
py{38,39,310,311}-dj32-drf312
py{38,39,310,311,312}-dj{32,40,41}-drf{313,314,315}
py{38,39,310,311,312}-dj42-drf{314,315}
py{310,311,312}-dj50-drf{314,315}
py{310,311,312}-dj51-drf315
py{38,39,310,311,312,313}-dj42-drf{314,315}
py{310,311,312,313}-dj50-drf{314,315}
py{310,311,312,313}-dj51-drf315
lint
docs

Expand All @@ -21,6 +21,7 @@ python =
3.10: py310
3.11: py311
3.12: py312, lint, docs
3.13: py313

[testenv]
deps =
Expand Down

0 comments on commit ce03d4a

Please sign in to comment.