Skip to content
Open
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
4 changes: 0 additions & 4 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,12 +45,8 @@ jobs:
python: ${{ fromJSON(needs.configure.outputs.python_versions) }}
django: ${{ fromJSON(needs.configure.outputs.django_versions) }}
exclude:
- {python: '3.9', django: 'Django~=5.1.0'}
- {python: '3.9', django: 'Django~=5.2.0'}
- {python: '3.9', django: 'Django~=6.0.0'}
- {python: '3.10', django: 'Django~=6.0.0'}
- {python: '3.11', django: 'Django~=6.0.0'}
- {python: '3.9', django: 'Django~=6.1.0'}
- {python: '3.10', django: 'Django~=6.1.0'}
- {python: '3.11', django: 'Django~=6.1.0'}
env:
Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Django CTE change log

## 4.0.0 - 2026-08-28

- **BREAKING** Dropped support for Python 3.9 (EOL 2025-10-31).
- Add support for Django 6.1.
- Fix fields using `db_column`.

## 3.0.0 - 2026-02-05

- **BREAKING:** on Django 5.2 and later when joining a CTE to a queryset with
Expand Down
2 changes: 1 addition & 1 deletion django_cte/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from .cte import CTE, with_cte, CTEManager, CTEQuerySet, With # noqa

__version__ = "3.0.0"
__version__ = "4.0.0"
__all__ = ["CTE", "with_cte"]
5 changes: 2 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ license = "BSD-3-Clause"
license-files = ["LICENSE"]
readme = {file = "README.md", content-type = "text/markdown"}
dynamic = ["version"]
requires-python = ">= 3.9"
requires-python = ">= 3.10"
# Python and Django versions are read from this file by GitHub Actions.
# Precise formatting is important.
classifiers = [
Expand All @@ -16,7 +16,6 @@ classifiers = [
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
Expand Down Expand Up @@ -57,7 +56,7 @@ universal = true
[tool.tox]
requires = ["tox>=4.43"]
env_list = [
{product = [{prefix = "py3", start = 9, stop = 12}, ["django42"]]},
{product = [{prefix = "py3", start = 10, stop = 12}, ["django42"]]},
{product = [{prefix = "py3", start = 10, stop = 12}, ["django50"]]},
{product = [{prefix = "py3", start = 10, stop = 13}, ["django51"]]},
{product = [{prefix = "py3", start = 10, stop = 14}, ["django52"]]},
Expand Down
Loading
Loading