Skip to content

Commit 09ef21a

Browse files
committed
Add support for Django 5.1
1 parent 7af0b84 commit 09ef21a

File tree

4 files changed

+7
-4
lines changed

4 files changed

+7
-4
lines changed

CHANGELOG.rst

+3-1
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@ Added
1111
+++++
1212
- Add support for Python 3.12 and 3.13
1313
`#538 <https://github.com/joke2k/django-environ/issues/538>`_.
14+
- Add support for Django 5.1
15+
`#535 <https://github.com/joke2k/django-environ/issues/535>`_.
1416

1517
Changed
1618
+++++++
@@ -408,7 +410,7 @@ Added
408410
- Initial release.
409411

410412

411-
.. _v0.11.3: https://github.com/joke2k/django-environ/compare/v0.11.2...v0.11.3
413+
.. _v0.12.0: https://github.com/joke2k/django-environ/compare/v0.11.2...v0.12.0
412414
.. _v0.11.2: https://github.com/joke2k/django-environ/compare/v0.11.1...v0.11.2
413415
.. _v0.11.1: https://github.com/joke2k/django-environ/compare/v0.11.0...v0.11.1
414416
.. _v0.11.0: https://github.com/joke2k/django-environ/compare/v0.10.0...v0.11.0

README.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ the code on `GitHub <https://github.com/joke2k/django-environ>`_,
128128
and the latest release on `PyPI <https://pypi.org/project/django-environ/>`_.
129129

130130
It’s rigorously tested on Python 3.9+, and officially supports
131-
Django 2.2, 3.0, 3.1, 3.2, 4.0, 4.1, 4.2, and 5.0.
131+
Django 2.2, 3.0, 3.1, 3.2, 4.0, 4.1, 4.2, 5.0, and 5.1.
132132

133133
If you'd like to contribute to ``django-environ`` you're most welcome!
134134

setup.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -143,6 +143,7 @@ def get_version_string():
143143
'Framework :: Django :: 4.1',
144144
'Framework :: Django :: 4.2',
145145
'Framework :: Django :: 5.0',
146+
'Framework :: Django :: 5.1',
146147

147148
'Operating System :: OS Independent',
148149

@@ -228,7 +229,7 @@ def get_version_string():
228229
platforms=['any'],
229230
include_package_data=True,
230231
zip_safe=False,
231-
python_requires='>=3.6,<4',
232+
python_requires='>=3.9,<4',
232233
install_requires=INSTALL_REQUIRES,
233234
dependency_links=DEPENDENCY_LINKS,
234235
extras_require=EXTRAS_REQUIRE,

tox.ini

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ envlist =
1919
lint
2020
manifest
2121
py{39,310,311,312,313}-django{22,30,31,32,40,41,42}
22-
py{310,311,312,313}-django{50}
22+
py{310,311,312,313}-django{50,51}
2323
pypy-django{22,30,31,32}
2424

2525
[gh-actions]

0 commit comments

Comments
 (0)