Skip to content

Commit b23bad4

Browse files
hramezanijezdez
authored andcommitted
Increase black and isort python version to 3.6.
1 parent b07bd50 commit b23bad4

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

CHANGES.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ Unreleased
1010
- Use ``asgiref`` when available instead of thread locals (gh-747)
1111
- Sort imports with isort (gh-751)
1212
- Queryset ``history.as_of`` speed improvements by calculating in the DB (gh-758)
13+
- Increase `black` and `isort` python version to 3.6
1314

1415
2.12.0 (2020-10-14)
1516
-------------------

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
[tool.black]
22
line-length = 88
3-
target-version = ["py35"]
3+
target-version = ["py36"]
44

55
[tool.isort]
66
profile = "black"
7-
py_version = "35"
7+
py_version = "36"
88

99
[tool.coverage.run]
1010
parallel = true

simple_history/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ def register(
1313
manager_name="history",
1414
records_class=None,
1515
table_name=None,
16-
**records_config
16+
**records_config,
1717
):
1818
"""
1919
Create historical model for `model` and attach history manager to `model`.

0 commit comments

Comments
 (0)