You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Markdown 3.0 was release a few days ago. Due to the >= requirement for Markdown, it is installed now by default. ImagePattern, which pinax-blog imports, has been removed. The result, for sites using pinax-blog deploying a new instance of their application is the following fatal exception during startup:
File "/opt/app-root/lib/python3.6/site-packages/pinax/blog/urls.py", line 4, in <module>
from .views import (
File "/opt/app-root/lib/python3.6/site-packages/pinax/blog/views.py", line 25, in <module>
from .parsers.markdown_parser import parse
File "/opt/app-root/lib/python3.6/site-packages/pinax/blog/parsers/markdown_parser.py", line 2, in <module>
from markdown.inlinepatterns import IMAGE_LINK_RE, ImagePattern
ImportError: cannot import name 'ImagePattern'
The text was updated successfully, but these errors were encountered:
Markdown 3.0 was release a few days ago. Due to the
>=
requirement for Markdown, it is installed now by default.ImagePattern
, which pinax-blog imports, has been removed. The result, for sites usingpinax-blog
deploying a new instance of their application is the following fatal exception during startup:The text was updated successfully, but these errors were encountered: