Skip to content

Commit 957b3bf

Browse files
committed
Adds missing package to install_requires
1 parent d1454a1 commit 957b3bf

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,10 @@ Instead of overriding `save` and `__init__` in a clunky way that hurts readabili
6161

6262
# Changelog
6363

64+
## 0.9.6 (February 2022)
65+
66+
- Adds missing `packaging` to `install_requires`. Thanks @mikedep333!
67+
6468
## 0.9.5 (February 2022)
6569

6670
- Makes the `has_changed`, `changes_to` conditions depend on whether the field in question was included in the SQL update/insert statement by checking

django_lifecycle/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
from .django_info import IS_GTE_1_POINT_9
22

3-
__version__ = "0.9.5"
3+
__version__ = "0.9.6"
44
__author__ = "Robert Singer"
55
__author_email__ = "[email protected]"
66

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,5 +53,5 @@ def readme():
5353
long_description=readme(),
5454
classifiers=classifiers,
5555
long_description_content_type="text/markdown",
56-
install_requires=["Django>=2.0", "urlman>=1.2.0"],
56+
install_requires=["Django>=2.0", "urlman>=1.2.0", "packaging>=21.0"],
5757
)

0 commit comments

Comments
 (0)