File tree Expand file tree Collapse file tree 4 files changed +18
-6
lines changed Expand file tree Collapse file tree 4 files changed +18
-6
lines changed Original file line number Diff line number Diff 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.3 (October 2021)
65+
66+ - Correct packge info to note that Django 3.2 is supported.
67+
6468## 0.9.2 (October 2021)
6569
6670- Run hooked methods inside transactions, just as signals do. Thanks @amirmotlagh !
Original file line number Diff line number Diff line change 11from .django_info import IS_GTE_1_POINT_9
22
3- __version__ = "0.9.2 "
3+ __version__ = "0.9.3 "
44__author__ = "Robert Singer"
55__author_email__ = "[email protected] " 66
Original file line number Diff line number Diff line change 1+ asgiref == 3.4.1
12Click == 7.0
2- Django == 3.1.13
3+ Django == 3.2.8
34djangorestframework == 3.11.2
5+ ghp-import == 2.0.2
6+ importlib-metadata == 4.8.1
47Jinja2 == 2.11.3
58livereload == 2.6.1
69Markdown == 3.2.1
710MarkupSafe == 1.1.1
11+ mergedeep == 1.3.4
812mkdocs == 1.2.3
913mkdocs-material == 4.6.3
14+ packaging == 21.0
1015Pygments == 2.7.4
1116pymdown-extensions == 6.3
17+ pyparsing == 3.0.0
18+ python-dateutil == 2.8.2
1219pytz == 2018.3
1320PyYAML == 5.4
21+ pyyaml-env-tag == 0.1
1422six == 1.14.0
1523sqlparse == 0.3.0
1624tornado == 6.0.3
1725urlman == 1.2.0
26+ watchdog == 2.1.6
27+ zipp == 3.6.0
Original file line number Diff line number Diff line change @@ -38,6 +38,7 @@ def readme():
3838 "Framework :: Django :: 2.2" ,
3939 "Framework :: Django :: 3.0" ,
4040 "Framework :: Django :: 3.1" ,
41+ "Framework :: Django :: 3.2" ,
4142]
4243setup (
4344 name = "django-lifecycle" ,
@@ -52,8 +53,5 @@ def readme():
5253 long_description = readme (),
5354 classifiers = classifiers ,
5455 long_description_content_type = "text/markdown" ,
55- install_requires = [
56- "Django>=2.0" ,
57- "urlman>=1.2.0"
58- ],
56+ install_requires = ["Django>=2.0" , "urlman>=1.2.0" ],
5957)
You can’t perform that action at this time.
0 commit comments