File tree Expand file tree Collapse file tree 3 files changed +6
-1
lines changed Expand file tree Collapse file tree 3 files changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -12,7 +12,8 @@ Unreleased
12
12
(gh-1248)
13
13
- Passing an empty list as the ``fields `` argument to ``bulk_update_with_history() `` is
14
14
now allowed; history records will still be created (gh-1248)
15
-
15
+ - Added temporary requirement on ``asgiref>=3.6 `` while the minimum required Django
16
+ version is lower than 4.2 (gh-1261)
16
17
17
18
3.4.0 (2023-08-18)
18
19
------------------
Original file line number Diff line number Diff line change 1
1
-r ./coverage.txt
2
+ # DEV: Remove this requirement entirely when the minimum required Django version is 4.2
3
+ asgiref>=3.6
Original file line number Diff line number Diff line change 11
11
"fallback_version" : "0.0.0" ,
12
12
},
13
13
setup_requires = ["setuptools_scm" ],
14
+ # DEV: Remove `asgiref` when the minimum required Django version is 4.2
15
+ install_requires = ["asgiref>=3.6" ],
14
16
description = "Store model history and view/revert changes from admin site." ,
15
17
long_description = "\n " .join ((readme .read (), changes .read ())),
16
18
long_description_content_type = "text/x-rst" ,
You can’t perform that action at this time.
0 commit comments