File tree 6 files changed +11
-8
lines changed
debug_toolbar/panels/templates
6 files changed +11
-8
lines changed Original file line number Diff line number Diff line change 1
1
.PHONY : flake8 example test coverage translatable_strings update_translations
2
2
3
3
style :
4
- isort -rc debug_toolbar example tests
4
+ isort debug_toolbar example tests
5
5
black --target-version=py35 debug_toolbar example tests setup.py
6
6
flake8 debug_toolbar example tests
7
7
8
8
style_check :
9
- isort -rc - c debug_toolbar example tests
9
+ isort -c debug_toolbar example tests
10
10
black --target-version=py34 --check debug_toolbar example tests setup.py
11
11
12
12
flake8 :
Original file line number Diff line number Diff line change @@ -48,8 +48,8 @@ def template_source(request):
48
48
49
49
try :
50
50
from pygments import highlight
51
- from pygments .lexers import HtmlDjangoLexer
52
51
from pygments .formatters import HtmlFormatter
52
+ from pygments .lexers import HtmlDjangoLexer
53
53
54
54
source = highlight (source , HtmlDjangoLexer (), HtmlFormatter ())
55
55
source = mark_safe (source )
Original file line number Diff line number Diff line change 1
1
Change log
2
2
==========
3
3
4
- 3.0a1 (2020-06-05 )
4
+ 3.0a2 (2020-07-15 )
5
5
------------------
6
6
7
7
* Added an ``.editorconfig `` file specifying indentation rules etc.
@@ -20,6 +20,9 @@ Change log
20
20
localStorage.
21
21
* Updated the code to avoid a few deprecation warnings and resource warnings.
22
22
* 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.
23
26
24
27
**Backwards incompatible changes **
25
28
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Original file line number Diff line number Diff line change 59
59
# built documents.
60
60
#
61
61
# The short X.Y version.
62
- version = '3.0a1 '
62
+ version = '3.0a2 '
63
63
# The full version, including alpha/beta/rc tags.
64
- release = '3.0a1 '
64
+ release = '3.0a2 '
65
65
66
66
# The language for content autogenerated by Sphinx. Refer to documentation
67
67
# for a list of supported languages.
Original file line number Diff line number Diff line change 1
1
[metadata]
2
2
name = django-debug-toolbar
3
- version = 3.0a1
3
+ version = 3.0a2
4
4
description = A configurable set of panels that display various debug information about the current request/response.
5
5
long_description = file: README.rst
6
6
author = Rob Hudson
Original file line number Diff line number Diff line change @@ -42,7 +42,7 @@ commands = make style_check
42
42
deps =
43
43
black>=19.10b0
44
44
flake8
45
- isort
45
+ isort>=5
46
46
skip_install = true
47
47
48
48
[testenv:eslint]
You can’t perform that action at this time.
0 commit comments