Skip to content

Commit d2c57a1

Browse files
committed
Drop support for Django 5.2
1 parent 91e3611 commit d2c57a1

File tree

5 files changed

+5
-13
lines changed

5 files changed

+5
-13
lines changed

docs/changelog.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ Unreleased
77
* Use environment variable for PostgreSQL password to prevent password leakage in logs/emails
88
* This repository has been transferred out of Jazzband due to logistical concerns.
99
* Drop support for end-of-life Python 3.7 and 3.8.
10+
* Drop support for end-of-life Django 3.2.
1011

1112
4.3.0 (2025-05-09)
1213
----------

docs/index.rst

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -29,13 +29,6 @@ Contents:
2929
contributing
3030
changelog
3131

32-
Compatibility
33-
-------------
34-
35-
As we want to ensure a lot of platforms will be able to save data before
36-
upgrading, Django-DBBackup supports PyPy, 3.2 to 3.5 and Django
37-
greater than 3.2.
38-
3932
Other Resources
4033
===============
4134

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
django>=3.2
1+
django>=4.2
22
pytz

setup.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,6 @@ def get_test_requirements():
5050
"Development Status :: 5 - Production/Stable",
5151
"Environment :: Web Environment",
5252
"Environment :: Console",
53-
"Framework :: Django :: 3.2",
5453
"Framework :: Django :: 4.2",
5554
"Framework :: Django :: 5.0",
5655
"Framework :: Django :: 5.1",

tox.ini

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,12 @@
11
[tox]
2-
envlist = py{39,310,311,312,313}-django{32,42,50,51,52,master},lint,docs,functional
2+
envlist = py{39,310,311,312,313}-django{42,50,51,52,master},lint,docs,functional
33

44
[testenv]
55
passenv = *
66
setenv =
77
PYTHONDONTWRITEBYTECODE=1
88
deps =
99
-rrequirements/tests.txt
10-
django32: django>=3.2,<3.3
1110
django42: django>=4.2,<4.3
1211
django50: django>=5.0,<5.1
1312
django51: django>=5.1,<5.2
@@ -18,8 +17,8 @@ commands = {posargs:coverage run runtests.py}
1817
# Configure which test environments are run for each Github Actions Python version.
1918
[gh-actions]
2019
python =
21-
3.9: py39-django{32,42},functional
22-
3.10: py310-django{32,42,50,51,52},functional
20+
3.9: py39-django{42},functional
21+
3.10: py310-django{42,50,51,52},functional
2322
3.11: py311-django{42,50,51,52},functional
2423
3.12: py312-django{42,50,51,52},functional
2524
3.13: py313-django{51,52},functional

0 commit comments

Comments
 (0)