Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

## v2.5.0 - UNRELEASED

* Drop support for Django 5.0 (EOL)

## v2.4.1 - June 25th, 2025

* Add Django version to install requirements.
Expand Down
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ def get_version():
setup_requires=["pytest-runner"],
options={"bdist_wheel": {"universal": "1"}},
install_requires=[
"Django>=4.2,<6.0",
"Django>=4.2,<5.3,!=5.0.*",
"prometheus-client>=0.7",
],
classifiers=[
Expand All @@ -60,7 +60,6 @@ def get_version():
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Framework :: Django :: 4.2",
"Framework :: Django :: 5.0",
"Framework :: Django :: 5.1",
"Framework :: Django :: 5.2",
"Topic :: System :: Monitoring",
Expand Down
3 changes: 1 addition & 2 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
min_version = 4.4
envlist =
{py39,py310,py311,py312}-django420-{end2end,unittests}
{py310,py311,py312,py313}-django{500,510,520}-{end2end,unittests}
{py310,py311,py312,py313}-django{510,520}-{end2end,unittests}
py39-lint

[gh-actions]
Expand All @@ -16,7 +16,6 @@ python =
[testenv]
deps =
django420: Django>=4.2,<4.3
django500: Django>=5.0,<5.1
django510: Django>=5.1,<5.2
django520: Django>=5.2,<5.3
coverage
Expand Down