Perform a pipenv update since everything is old
This commit is contained in:
parent
17e5c2c1b4
commit
ce07ba8cdc
4 changed files with 435 additions and 354 deletions
2
Pipfile
2
Pipfile
|
@ -4,7 +4,7 @@ verify_ssl = true
|
||||||
name = "pypi"
|
name = "pypi"
|
||||||
|
|
||||||
[requires]
|
[requires]
|
||||||
python_version = '3.6'
|
python_version = '3.7'
|
||||||
|
|
||||||
[packages]
|
[packages]
|
||||||
django = "*"
|
django = "*"
|
||||||
|
|
771
Pipfile.lock
generated
771
Pipfile.lock
generated
File diff suppressed because it is too large
Load diff
|
@ -4,10 +4,10 @@ from markdown import Markdown
|
||||||
from .bleach import bleach
|
from .bleach import bleach
|
||||||
|
|
||||||
md = Markdown(extensions=(
|
md = Markdown(extensions=(
|
||||||
'markdown.extensions.extra',
|
'extra',
|
||||||
'markdown.extensions.headerid',
|
'sane_lists',
|
||||||
'markdown.extensions.sane_lists',
|
'smarty',
|
||||||
'markdown.extensions.smarty',
|
'toc',
|
||||||
))
|
))
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -4,10 +4,10 @@ from markdown import Markdown
|
||||||
from .bleach import bleach
|
from .bleach import bleach
|
||||||
|
|
||||||
md = Markdown(extensions=(
|
md = Markdown(extensions=(
|
||||||
'markdown.extensions.extra',
|
'extra',
|
||||||
'markdown.extensions.headerid',
|
'sane_lists',
|
||||||
'markdown.extensions.sane_lists',
|
'smarty',
|
||||||
'markdown.extensions.smarty',
|
'toc',
|
||||||
))
|
))
|
||||||
|
|
||||||
register = template.Library()
|
register = template.Library()
|
||||||
|
|
Loading…
Reference in a new issue