File tree Expand file tree Collapse file tree 3 files changed +4
-3
lines changed Expand file tree Collapse file tree 3 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -10,6 +10,7 @@ Unreleased
10
10
- Use ``asgiref `` when available instead of thread locals (gh-747)
11
11
- Sort imports with isort (gh-751)
12
12
- Queryset ``history.as_of `` speed improvements by calculating in the DB (gh-758)
13
+ - Increase `black ` and `isort ` python version to 3.6
13
14
14
15
2.12.0 (2020-10-14)
15
16
-------------------
Original file line number Diff line number Diff line change 1
1
[tool .black ]
2
2
line-length = 88
3
- target-version = [" py35 " ]
3
+ target-version = [" py36 " ]
4
4
5
5
[tool .isort ]
6
6
profile = " black"
7
- py_version = " 35 "
7
+ py_version = " 36 "
8
8
9
9
[tool .coverage .run ]
10
10
parallel = true
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ def register(
13
13
manager_name = "history" ,
14
14
records_class = None ,
15
15
table_name = None ,
16
- ** records_config
16
+ ** records_config ,
17
17
):
18
18
"""
19
19
Create historical model for `model` and attach history manager to `model`.
You can’t perform that action at this time.
0 commit comments