Skip to content

Commit ec545f2

Browse files
committed
chores: Add python3.13 and django5.1 to test matrix
1 parent ee50c43 commit ec545f2

File tree

3 files changed

+8
-1
lines changed

3 files changed

+8
-1
lines changed

.github/workflows/main.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,11 @@ jobs:
1919
strategy:
2020
matrix:
2121
# https://github.com/actions/python-versions/blob/main/versions-manifest.json
22-
python-version: [3.8, 3.9, "3.10", "3.11", "3.12"]
22+
python-version: [3.8, 3.9, "3.10", "3.11", "3.12", "3.13.0-beta.2"]
2323
django-version:
2424
- "Django>=4.2,<5.0"
2525
- "Django>=5.0,<5.1"
26+
- "Django==5.1a1"
2627
# - "https://github.com/django/django/archive/main.tar.gz"
2728
include:
2829
- drf: djangorestframework
@@ -33,6 +34,8 @@ jobs:
3334
python-version: 3.8
3435
- django-version: "Django>=5.0,<5.1"
3536
python-version: 3.9
37+
- django-version: "Django==5.1a1"
38+
python-version: 3.9
3639
# - django-version: "https://github.com/django/django/archive/main.tar.gz"
3740
# python-version: 3.8
3841
# - django-version: "https://github.com/django/django/archive/main.tar.gz"

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
### Unreleased
44

5+
- chores: Add python3.13 and django5.1 to test matrix
6+
57
### 0.14.1
68

79
- fix(drf-serializer): IndexError on missing Meta attr, closes #34

pyproject.toml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ classifiers = [
2222
"Framework :: Django",
2323
"Framework :: Django :: 4.2",
2424
"Framework :: Django :: 5.0",
25+
"Framework :: Django :: 5.1",
2526
"Intended Audience :: Developers",
2627
"License :: OSI Approved :: MIT License",
2728
"Operating System :: OS Independent",
@@ -32,6 +33,7 @@ classifiers = [
3233
"Programming Language :: Python :: 3.10",
3334
"Programming Language :: Python :: 3.11",
3435
"Programming Language :: Python :: 3.12",
36+
"Programming Language :: Python :: 3.13",
3537
]
3638

3739
[project.optional-dependencies]

0 commit comments

Comments
 (0)