Perform a pipenv update since everything is old

This commit is contained in:
Danielle McLean 2019-01-17 11:43:30 +11:00
parent 17e5c2c1b4
commit ce07ba8cdc
Signed by: 00dani
GPG Key ID: 8EB789DDF3ABD240
4 changed files with 435 additions and 354 deletions

View File

@ -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

File diff suppressed because it is too large Load Diff

View File

@ -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',
)) ))

View File

@ -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()