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
2 changes: 2 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,8 @@ jobs:
django-version: 'Django~=5.2.0'
- python-version: '3.14'
django-version: 'Django~=5.2.0'
- python-version: '3.14'
django-version: 'Django~=6.0.0'

steps:
- uses: actions/checkout@v6
Expand Down
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@
We follow Semantic Version.


## Unreleased

### Features

- Adds `python3.14` support
- Adds `django6.0` support


## 1.3.2

### Bugfixes
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ While this package will most likely work with the most versions of `django`, we
- 5.0
- 5.1
- 5.2
- 6.0

This package has no dependencies itself.

Expand Down
7 changes: 4 additions & 3 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ classifiers = [
"Framework :: Django :: 5.0",
"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 All @@ -50,7 +51,7 @@ classifiers = [
python = ">=3.10,<4.0"

[tool.poetry.group.dev.dependencies]
django = ">=4.2,<5.3"
django = ">=4.2,<6.1"

mypy = "^1.10"
wemake-python-styleguide = "^1.0"
Expand Down
Loading