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
12 changes: 12 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,10 @@ jobs:
python: '3.13'
allow_failure: false

- name: py313-dj52-postgres-xdist-coverage
python: '3.13'
allow_failure: false

- name: py313-dj51-postgres-xdist-coverage
python: '3.13'
allow_failure: false
Expand All @@ -87,6 +91,10 @@ jobs:
python: '3.11'
allow_failure: false

- name: py310-dj52-postgres-xdist-coverage
python: '3.10'
allow_failure: false

- name: py310-dj51-postgres-xdist-coverage
python: '3.10'
allow_failure: false
Expand All @@ -111,6 +119,10 @@ jobs:
python: '3.13'
allow_failure: true

- name: py313-dj52-sqlite-coverage
python: '3.13'
allow_failure: true

- name: py312-dj51-sqlite-xdist-coverage
python: '3.12'
allow_failure: false
Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ pytest-django allows you to test your Django project/applications with the
<https://pytest-django.readthedocs.io/en/latest/contributing.html>`_
* Version compatibility:

* Django: 4.2, 5.0, 5.1 and latest main branch (compatible at the time
* Django: 4.2, 5.0, 5.1, 5.2 and latest main branch (compatible at the time
of each release)
* Python: CPython>=3.8 or PyPy 3
* pytest: >=7.0
Expand Down
9 changes: 9 additions & 0 deletions docs/changelog.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,15 @@
Changelog
=========

v4.11.0 (Not released yet)
--------------------------

Compatibility
^^^^^^^^^^^^^

* Added official support for Django 5.2.


v4.10.0 (2025-02-10)
--------------------

Expand Down
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ classifiers = [
"Framework :: Django :: 4.2",
"Framework :: Django :: 5.0",
"Framework :: Django :: 5.1",
"Framework :: Django :: 5.2",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
Expand Down
9 changes: 5 additions & 4 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
[tox]
envlist =
py313-dj{main,51}-postgres
py312-dj{main,51,50,42}-postgres
py311-dj{main,51,50,42}-postgres
py310-dj{main,51,50,42}-postgres
py313-dj{main,52,51}-postgres
py312-dj{main,52,51,50,42}-postgres
py311-dj{main,52,51,50,42}-postgres
py310-dj{main,52,51,50,42}-postgres
py39-dj42-postgres
py38-dj42-postgres
linting
Expand All @@ -12,6 +12,7 @@ envlist =
extras = testing
deps =
djmain: https://github.com/django/django/archive/main.tar.gz
dj52: Django>=5.2a1,<6.0
dj51: Django>=5.1,<5.2
dj50: Django>=5.0,<5.1
dj42: Django>=4.2,<4.3
Expand Down