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.2

In short, you can write model code like this:

Expand Down
6 changes: 3 additions & 3 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
asgiref==3.4.1
asgiref>=3.8.1
Click==7.0
Django==5.0b1
Django==5.2
django-capture-on-commit-callbacks==1.10.0
djangorestframework==3.11.2
ghp-import==2.0.2
Expand All @@ -21,7 +21,7 @@ pytz==2023.3
PyYAML==6.0.1
pyyaml-env-tag==0.1
six==1.14.0
sqlparse==0.3.0
sqlparse>=0.3.1
tornado==6.0.3
urlman==1.2.0
watchdog==2.1.6
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.2",
]
setup(
name="django-lifecycle",
Expand Down
2 changes: 2 additions & 0 deletions 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}-django52
flake8
skip_missing_interpreters = False

Expand All @@ -32,6 +33,7 @@ deps =
django41: django>=4.1,<4.2
django42: django>=4.2,<4.3
django50: django>=5.0a1,<5.1
django52: django>=5.2,<5.3
django-capture-on-commit-callbacks
urlman>=1.2.0

Expand Down