Skip to content

Commit 456bce1

Browse files
authored
Merge pull request #111 from ghazi-git/support-python-3.14
test against python 3.14
2 parents 6607e02 + 4200fd2 commit 456bce1

File tree

4 files changed

+6
-1
lines changed

4 files changed

+6
-1
lines changed

.github/workflows/tests.yml

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

1717
steps:
1818
- uses: actions/checkout@v6

docs/changelog.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ 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.14
810

911
## [0.15.0] - 2025-06-09
1012
### Added

pyproject.toml

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

tox.ini

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ envlist =
1212
py{310,311,312,313}-dj50-drf{314,315}
1313
py{310,311,312,313}-dj{51,52}-drf315
1414
py{310,311,312,313}-dj{42,50,51,52}-drf316
15+
py314-dj52-drf316
1516
lint
1617
docs
1718

@@ -23,6 +24,7 @@ python =
2324
3.11: py311
2425
3.12: py312, lint, docs
2526
3.13: py313
27+
3.14: py314
2628

2729
[testenv]
2830
deps =

0 commit comments

Comments
 (0)