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 @@ -90,6 +90,10 @@ jobs:
python: '3.14'
allow_failure: true

- name: py314-dj60-postgres-xdist-coverage
python: '3.14'
allow_failure: false

- name: py314-dj52-postgres-xdist-coverage
python: '3.14'
allow_failure: false
Expand All @@ -102,6 +106,10 @@ jobs:
python: '3.13'
allow_failure: false

- name: py312-dj60-postgres-xdist-coverage
python: '3.12'
allow_failure: false

- name: py312-dj42-postgres-xdist-coverage
python: '3.12'
allow_failure: false
Expand Down Expand Up @@ -138,6 +146,10 @@ jobs:
python: '3.13'
allow_failure: true

- name: py313-dj60-sqlite-coverage
python: '3.13'
allow_failure: false

- name: py313-dj52-sqlite-coverage
python: '3.13'
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.1, 5.2 and latest main branch (compatible at the time
* Django: 4.2, 5.1, 5.2, 6.0 and latest main branch (compatible at the time
of each release)
* Python: CPython>=3.10 or PyPy 3
* pytest: >=7.0
Expand Down
1 change: 1 addition & 0 deletions docs/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ Compatibility

* Official Python 3.14 support.
* Dropped support for Python 3.9, minimum version is now Python 3.10.
* Official Django 6.0 support.

Improvements
^^^^^^^^^^^^
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.1",
"Framework :: Django :: 5.2",
"Framework :: Django :: 6.0",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
Expand Down
11 changes: 6 additions & 5 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
[tox]
envlist =
py314-dj{main,52,51}-postgres
py313-dj{main,52,51}-postgres
py312-dj{main,52,51,42}-postgres
py311-dj{main,52,51,42}-postgres
py310-dj{main,52,51,42}-postgres
py314-dj{main,60,52,51}-postgres
py313-dj{main,60,52,51}-postgres
py312-dj{main,60,52,51,42}-postgres
py311-dj{52,51,42}-postgres
py310-dj{52,51,42}-postgres
Comment on lines +6 to +7
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Both Django 6.0 and Django 6.1 target Python 3.12+, so I removed the older Python versions from testing here.

linting

[testenv]
Expand All @@ -16,6 +16,7 @@ dependency_groups =
xdist: xdist
deps =
djmain: https://github.com/django/django/archive/main.tar.gz
dj60: Django>=6.0a1,<6.1
dj52: Django>=5.2a1,<6.0
dj51: Django>=5.1,<5.2
dj50: Django>=5.0,<5.1
Expand Down