Skip to content

Commit 9994032

Browse files
committed
Confirmed support for Django 5.2 and 6.0.
1 parent bf68ada commit 9994032

File tree

5 files changed

+14
-4
lines changed

5 files changed

+14
-4
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Changelog for django-request
22

3+
## 1.7.1
4+
5+
### Enhancements
6+
7+
* Confirms support for Django 5.2 and 6.0.
8+
39
## 1.7.0
410

511
### Breaking

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (c) 2009-2023, Kyle Fuller and Mariusz Felisiak
1+
Copyright (c) 2009-2025, Kyle Fuller and Mariusz Felisiak
22
All rights reserved.
33

44
Redistribution and use in source and binary forms, with or without

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ Requirements
3333
------------
3434

3535
* **Python**: 3.8, 3.9, 3.10, 3.11, 3.12, 3.13
36-
* **Django**: 4.2, 5.0, 5.1
36+
* **Django**: 4.2, 5.0, 5.1, 5.2, 6.0
3737
* **python-dateutil**
3838

3939
django-request 1.5.1_ is the last version that supports Django 1.4, 1.5, 1.6.

pyproject.toml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,8 @@ classifiers = [
2626
"Framework :: Django :: 4.2",
2727
"Framework :: Django :: 5.0",
2828
"Framework :: Django :: 5.1",
29+
"Framework :: Django :: 5.2",
30+
"Framework :: Django :: 6.0",
2931
"Intended Audience :: Developers",
3032
"License :: OSI Approved :: BSD License",
3133
"Operating System :: OS Independent",

tox.ini

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
envlist =
33
{py38,py39,py310,py311,py312}-django42-test
44
{py310,py311,py312}-django50-test
5-
{py310,py311,py312,py313}-django51-test
6-
{py312,py313}-djangomain-test
5+
{py310,py311,py312,py313}-django{51,52}-test
6+
{py312,py313}-django{60,main}-test
77
isort
88
flake
99
black
@@ -23,6 +23,8 @@ deps =
2323
django42: Django>=4.2,<5.0
2424
django50: Django>=5.0,<5.1
2525
django51: Django>=5.1,<5.2
26+
django52: Django>=5.2,<6.0
27+
django60: Django>=6.0a1,<6.1
2628
djangomain: https://github.com/django/django/archive/main.tar.gz
2729

2830
[testenv:isort]

0 commit comments

Comments
 (0)