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
1 change: 1 addition & 0 deletions docs/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ Unreleased
----------

* Empty string as HOST for postgres unix domain socket connection is now supported.
* Support Python 3.13 and Django 5.2

4.2.1 (2024-08-23)
----------
Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@ def get_test_requirements():
"Framework :: Django :: 4.2",
"Framework :: Django :: 5.0",
"Framework :: Django :: 5.1",
"Framework :: Django :: 5.2",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: BSD License",
Expand Down
11 changes: 6 additions & 5 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = py{37,38,39,310,311,312,313}-django{32,42,50,51,master},lint,docs,functional
envlist = py{37,38,39,310,311,312,313}-django{32,42,50,51,52,master},lint,docs,functional

[testenv]
passenv = *
Expand All @@ -11,6 +11,7 @@ deps =
django42: django>=4.2,<4.3
django50: django>=5.0,<5.1
django51: django>=5.1,<5.2
django52: django>=5.2,<5.3
djangomaster: https://github.com/django/django/archive/master.zip
commands = {posargs:coverage run runtests.py}

Expand All @@ -20,10 +21,10 @@ python =
3.7: py37-django{32},functional
3.8: py38-django{32,42},functional
3.9: py39-django{32,42},functional
3.10: py310-django{32,42,50,51},functional
3.11: py311-django{42,50,51},functional
3.12: py312-django{42,50,51},functional
3.13: py313-django{51},functional
3.10: py310-django{32,42,50,51,52},functional
3.11: py311-django{42,50,51,52},functional
3.12: py312-django{42,50,51,52},functional
3.13: py313-django{51,52},functional

[testenv:lint]
basepython = python
Expand Down