Skip to content

Commit 323315d

Browse files
authored
Merge pull request #46 from ghazi-git/add-support-for-python-3.12
add-support-for-python-3.12
2 parents 16aa418 + c5e261b commit 323315d

File tree

4 files changed

+6
-3
lines changed

4 files changed

+6
-3
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" ]
13+
python-version: [ "3.8", "3.9", "3.10", "3.11", "3.12" ]
1414

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

docs/changelog.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
88
### Added
99
- declare support for type checking
1010
- add support for django 4.2
11+
- add support for python 3.12
1112

1213
### Fixed
1314
- Avoid calling `AutoSchema.get_request_serializer` when inspecting a get operation for possible error responses.

pyproject.toml

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

tox.ini

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77
isolated_build = True
88
envlist =
99
py{38,39,310,311}-dj32-drf312
10-
py{38,39,310,311}-dj{32,40,41}-drf{313,314}
11-
py{38,39,310,311}-dj42-drf314
10+
py{38,39,310,311,312}-dj{32,40,41}-drf{313,314}
11+
py{38,39,310,311,312}-dj42-drf314
1212
lint
1313
docs
1414

@@ -18,6 +18,7 @@ python =
1818
3.9: py39
1919
3.10: py310
2020
3.11: py311
21+
3.12: py312
2122

2223
[testenv]
2324
deps =

0 commit comments

Comments
 (0)