Skip to content

Commit

Permalink
Merge pull request #145 from benjaoming/django51
Browse files Browse the repository at this point in the history
Add Django 5.1 support
  • Loading branch information
benjaoming authored Aug 21, 2024
2 parents 98250c5 + 5b7a612 commit dbb1ed4
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 4 deletions.
12 changes: 12 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,9 @@ workflows:
- hatch:
hatch_env: "py3.10-dj5.0"
python_version: "3.10"
- hatch:
hatch_env: "py3.10-dj5.1"
python_version: "3.10"
- hatch:
hatch_env: "py3.11-dj4.1"
python_version: "3.11"
Expand All @@ -99,4 +102,13 @@ workflows:
- hatch:
hatch_env: "py3.11-dj5.0"
python_version: "3.11"
- hatch:
hatch_env: "py3.11-dj5.1"
python_version: "3.11"
- hatch:
hatch_env: "py3.11-dj5.0"
python_version: "3.12"
- hatch:
hatch_env: "py3.11-dj5.1"
python_version: "3.12"
- lint
2 changes: 1 addition & 1 deletion django_nyt/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
_disable_notifications = False

__version__ = "1.4"
__version__ = "1.4.1"

default_app_config = "django_nyt.apps.DjangoNytConfig"
7 changes: 7 additions & 0 deletions docs/release_notes.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
Release Notes
=============

1.4 (2024-08-21)
----------------

**Added**

* Django 5.1 support #145 (Benjamin Balder Bach)

1.4 (2024-02-16)
----------------

Expand Down
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ classifiers = [
"Topic :: Software Development :: Libraries :: Application Frameworks",
]
dependencies = [
"django>=2.2,<5.1",
"django>=2.2,<5.2",
]
dynamic = ["version"]

Expand Down Expand Up @@ -124,8 +124,8 @@ python = ["3.8", "3.9", "3.10", "3.11"]
django = ["4.1", "4.2"]

[[tool.hatch.envs.test.matrix]]
python = ["3.10", "3.11"]
django = ["5.0"]
python = ["3.10", "3.11", "3.12"]
django = ["5.0", "5.1"]

[tool.hatch.envs.test.scripts]
all = [
Expand Down

0 comments on commit dbb1ed4

Please sign in to comment.