File tree Expand file tree Collapse file tree 6 files changed +11
-8
lines changed
debug_toolbar/panels/templates Expand file tree Collapse file tree 6 files changed +11
-8
lines changed Original file line number Diff line number Diff line change 11.PHONY : flake8 example test coverage translatable_strings update_translations
22
33style :
4- isort -rc debug_toolbar example tests
4+ isort debug_toolbar example tests
55 black --target-version=py35 debug_toolbar example tests setup.py
66 flake8 debug_toolbar example tests
77
88style_check :
9- isort -rc - c debug_toolbar example tests
9+ isort -c debug_toolbar example tests
1010 black --target-version=py34 --check debug_toolbar example tests setup.py
1111
1212flake8 :
Original file line number Diff line number Diff line change @@ -48,8 +48,8 @@ def template_source(request):
4848
4949 try :
5050 from pygments import highlight
51- from pygments .lexers import HtmlDjangoLexer
5251 from pygments .formatters import HtmlFormatter
52+ from pygments .lexers import HtmlDjangoLexer
5353
5454 source = highlight (source , HtmlDjangoLexer (), HtmlFormatter ())
5555 source = mark_safe (source )
Original file line number Diff line number Diff line change 11Change log
22==========
33
4- 3.0a1 (2020-06-05 )
4+ 3.0a2 (2020-07-15 )
55------------------
66
77* Added an ``.editorconfig `` file specifying indentation rules etc.
@@ -20,6 +20,9 @@ Change log
2020 localStorage.
2121* Updated the code to avoid a few deprecation warnings and resource warnings.
2222* Started loading JavaScript as ES6 modules.
23+ * Added support for ``cache.touch() `` when using django-debug-toolbar.
24+ * Eliminated more inline CSS.
25+ * Updated ``tox.ini `` and ``Makefile `` to use isort>=5.
2326
2427**Backwards incompatible changes **
2528~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Original file line number Diff line number Diff line change 5959# built documents.
6060#
6161# The short X.Y version.
62- version = '3.0a1 '
62+ version = '3.0a2 '
6363# The full version, including alpha/beta/rc tags.
64- release = '3.0a1 '
64+ release = '3.0a2 '
6565
6666# The language for content autogenerated by Sphinx. Refer to documentation
6767# for a list of supported languages.
Original file line number Diff line number Diff line change 11[metadata]
22name = django-debug-toolbar
3- version = 3.0a1
3+ version = 3.0a2
44description = A configurable set of panels that display various debug information about the current request/response.
55long_description = file: README.rst
66author = Rob Hudson
Original file line number Diff line number Diff line change @@ -42,7 +42,7 @@ commands = make style_check
4242deps =
4343 black>=19.10b0
4444 flake8
45- isort
45+ isort>=5
4646skip_install = true
4747
4848[testenv:eslint]
You can’t perform that action at this time.
0 commit comments