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
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ This project provides a `@hook` decorator as well as a base model and mixin to a
**Django Lifecycle Hooks** supports:

* Python 3.7, 3.8, 3.9, 3.10, 3.11, and 3.12
* Django 2.2, 3.2, 4.0, 4.1, 4.2, and 5.0
* Django 2.2, 3.2, 4.0, 4.1, 4.2, 5.0 and 5.1

In short, you can write model code like this:

Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ def readme():
"Framework :: Django :: 4.1",
"Framework :: Django :: 4.2",
"Framework :: Django :: 5.0",
"Framework :: Django :: 5.1",
]
setup(
name="django-lifecycle",
Expand Down
4 changes: 3 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ envlist =
{py38,py39,py310,py311}-django42
{py310,py311,py312}-django42
{py310,py311,py312}-django50
{py310,py311,py312}-django51
flake8
skip_missing_interpreters = False

Expand All @@ -31,7 +32,8 @@ deps =
django40: django>=4.0,<4.1
django41: django>=4.1,<4.2
django42: django>=4.2,<4.3
django50: django>=5.0a1,<5.1
django50: django>=5.0,<5.1
django51: django>=5.1,<5.2
django-capture-on-commit-callbacks
urlman>=1.2.0

Expand Down