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
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

### Added

- Django 6.0 has been added to the test matrix.

### Fixed

- Ensure cleanup actions in `durable` always happen when the wrapped code raises an unexpected error.
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Splits Django's `atomic` into a suite of more specific utilities.
This package supports sensible combinations of:

- Python 3.12, 3.13, 3.14.
- Django 4.2, 5.1, 5.2.
- Django 4.2, 5.1, 5.2, 6.0.


### Installation
Expand Down
5 changes: 3 additions & 2 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ requires =
tox>=4

env_list =
py3{12,13,14}-django{42,51,52}
py3{12,13,14}-django{42,51,52,60}
coverage
mypy

Expand All @@ -26,13 +26,14 @@ deps =
django42: django~=4.2.0
django51: django~=5.1.0
django52: django~=5.2.0
django60: django~=6.0.0

commands =
coverage run --parallel -m pytest {posargs}

[testenv:coverage]
depends =
py3{12,13,14}-django{42,51,52}
py3{12,13,14}-django{42,51,52,60}

dependency_groups =
coverage
Expand Down