Skip to content

Commit 699f09f

Browse files
authored
Add support for Django 4.1 (#356)
1 parent de5969b commit 699f09f

File tree

3 files changed

+4
-1
lines changed

3 files changed

+4
-1
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
* Fix two latency metrics not using PROMETHEUS_LATENCY_BUCKETS setting, Thanks [@AleksaC](https://github.com/korfuri/django-prometheus/pull/343)
77
* Support new cache backend names in newer Django versions, Thanks [@tneuct](https://github.com/korfuri/django-prometheus/pull/329)
88
* Make export of migrations False by default, Thanks [@kaypee90](https://github.com/korfuri/django-prometheus/pull/313)
9+
* Add support for Djago 4.1
910

1011
## v2.2.0 - December 19, 2021
1112

pyproject.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ include_trailing_comma = true
1515
[tool.tox]
1616
legacy_tox_ini = """
1717
[tox]
18-
envlist = {py37,py38,py39,py310}-django{320}-{end2end,unittests},{py38,py39,py310}-django{400}-{end2end,unittests},py38-lint
18+
envlist = {py37,py38,py39,py310}-django{320}-{end2end,unittests},{py38,py39,py310}-django{400,410}-{end2end,unittests},py38-lint
1919
2020
[gh-actions]
2121
python =
@@ -28,6 +28,7 @@ python =
2828
deps =
2929
django320: Django>=3.2,<3.3
3030
django400: Django>=4.0,<4.1
31+
django410: Django>=4.1,<4.2
3132
coverage
3233
-rrequirements.txt
3334
skip_missing_interpreters=true

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,7 @@ def get_version():
5757
"Programming Language :: Python :: 3.10",
5858
"Framework :: Django :: 3.2",
5959
"Framework :: Django :: 4.0",
60+
"Framework :: Django :: 4.1",
6061
"Topic :: System :: Monitoring",
6162
"License :: OSI Approved :: Apache Software License",
6263
],

0 commit comments

Comments
 (0)