Skip to content

Commit 00c1138

Browse files
authored
Merge pull request #146 from dangrie158/django5.2-support
Add Django 5.2 support
2 parents dbb1ed4 + 90999e7 commit 00c1138

File tree

3 files changed

+21
-6
lines changed

3 files changed

+21
-6
lines changed

.circleci/config.yml

Lines changed: 17 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -93,6 +93,9 @@ workflows:
9393
- hatch:
9494
hatch_env: "py3.10-dj5.1"
9595
python_version: "3.10"
96+
- hatch:
97+
hatch_env: "py3.10-dj5.2"
98+
python_version: "3.10"
9699
- hatch:
97100
hatch_env: "py3.11-dj4.1"
98101
python_version: "3.11"
@@ -106,9 +109,21 @@ workflows:
106109
hatch_env: "py3.11-dj5.1"
107110
python_version: "3.11"
108111
- hatch:
109-
hatch_env: "py3.11-dj5.0"
112+
hatch_env: "py3.12-dj5.0"
110113
python_version: "3.12"
111114
- hatch:
112-
hatch_env: "py3.11-dj5.1"
115+
hatch_env: "py3.12-dj5.1"
113116
python_version: "3.12"
117+
- hatch:
118+
hatch_env: "py3.12-dj5.2"
119+
python_version: "3.12"
120+
- hatch:
121+
hatch_env: "py3.13-dj5.0"
122+
python_version: "3.13"
123+
- hatch:
124+
hatch_env: "py3.13-dj5.1"
125+
python_version: "3.13"
126+
- hatch:
127+
hatch_env: "py3.13-dj5.2"
128+
python_version: "3.13"
114129
- lint

django_nyt/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
_disable_notifications = False
22

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

55
default_app_config = "django_nyt.apps.DjangoNytConfig"

pyproject.toml

Lines changed: 3 additions & 3 deletions
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.2",
37+
"django>=2.2,<5.3",
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", "3.12"]
128-
django = ["5.0", "5.1"]
127+
python = ["3.10", "3.11", "3.12", "3.13"]
128+
django = ["5.0", "5.1", "5.2"]
129129

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

0 commit comments

Comments
 (0)