Skip to content

Commit dbb1ed4

Browse files
authored
Merge pull request #145 from benjaoming/django51
Add Django 5.1 support
2 parents 98250c5 + 5b7a612 commit dbb1ed4

File tree

4 files changed

+23
-4
lines changed

4 files changed

+23
-4
lines changed

.circleci/config.yml

+12
Original file line numberDiff line numberDiff line change
@@ -90,6 +90,9 @@ workflows:
9090
- hatch:
9191
hatch_env: "py3.10-dj5.0"
9292
python_version: "3.10"
93+
- hatch:
94+
hatch_env: "py3.10-dj5.1"
95+
python_version: "3.10"
9396
- hatch:
9497
hatch_env: "py3.11-dj4.1"
9598
python_version: "3.11"
@@ -99,4 +102,13 @@ workflows:
99102
- hatch:
100103
hatch_env: "py3.11-dj5.0"
101104
python_version: "3.11"
105+
- hatch:
106+
hatch_env: "py3.11-dj5.1"
107+
python_version: "3.11"
108+
- hatch:
109+
hatch_env: "py3.11-dj5.0"
110+
python_version: "3.12"
111+
- hatch:
112+
hatch_env: "py3.11-dj5.1"
113+
python_version: "3.12"
102114
- lint

django_nyt/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
_disable_notifications = False
22

3-
__version__ = "1.4"
3+
__version__ = "1.4.1"
44

55
default_app_config = "django_nyt.apps.DjangoNytConfig"

docs/release_notes.rst

+7
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,13 @@
11
Release Notes
22
=============
33

4+
1.4 (2024-08-21)
5+
----------------
6+
7+
**Added**
8+
9+
* Django 5.1 support #145 (Benjamin Balder Bach)
10+
411
1.4 (2024-02-16)
512
----------------
613

pyproject.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ classifiers = [
3434
"Topic :: Software Development :: Libraries :: Application Frameworks",
3535
]
3636
dependencies = [
37-
"django>=2.2,<5.1",
37+
"django>=2.2,<5.2",
3838
]
3939
dynamic = ["version"]
4040

@@ -124,8 +124,8 @@ python = ["3.8", "3.9", "3.10", "3.11"]
124124
django = ["4.1", "4.2"]
125125

126126
[[tool.hatch.envs.test.matrix]]
127-
python = ["3.10", "3.11"]
128-
django = ["5.0"]
127+
python = ["3.10", "3.11", "3.12"]
128+
django = ["5.0", "5.1"]
129129

130130
[tool.hatch.envs.test.scripts]
131131
all = [

0 commit comments

Comments
 (0)