-
Notifications
You must be signed in to change notification settings - Fork 143
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Django 2.0 #80
base: develop
Are you sure you want to change the base?
Django 2.0 #80
Conversation
@Ge0 This build is failed because of --use-mirrors has been deprecated. |
Oh, is this project alive eventually? We should fix the CI then. :) |
I have created the ticket #82 to fix this issue. |
Hi, I'm upgrading my project to Django 2.0, are you planning a new release fixing this soon? |
I think we have to find another package... |
any suggestion? |
Not that I have heard recently. Also, you can still fork the repo, fix the bug and release a |
Great! I'll do it! |
Let me know here when it's done! |
@tomasgarzon Sorry for the delay, but have you taken a look at https://pypi.python.org/pypi/django-markdown-app ? |
Yes, but it doesn't have django 2.0 support, have the same problem with django.core.urlresolvers |
Sorry, It has support but you should use pip install from git directly. |
Oh I see. Maybe this project is maintained compare to django_markdown. |
@Ge0 https://github.com/seenureddy/django_markdown fix and merge the broken Travis. Create the PR to the repo? |
This repository is abandoned, not sure there is something to do. |
@Ge0 I see you have updated the fork with Django2.0 here https://github.com/Ge0/django-markdown-gcir. I am thinking to use it because I can't go for other packages as I am working on a legacy project which is required to migrate into Django 2.0+. I hope there won't be any issue using https://github.com/Ge0/django-markdown-gcir. Thanks |
Hey @abdulwahid24 It has been a while since I last used this package. I cannot guarantee that there won’t be any issue at this time. You’ll might have to modify the package to make it work. |
Hello there,
Django 2.0 has just been released and the
django.core.urlresolvers
submodule has been replaced bydjango.urls
. This is a breaking change and we were warned about it since Django 1.7.The following PR submit snippets that try to import urlresolvers first (for backward compatibility before Django 2.0) then, if it fails, imports
django.urls
for compatibility with new Django versions.