We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
setup.py & requirements.txtdo not pin the version of Django, and Django 2.0 is out, and Django distill is broken.
setup.py
requirements.txt
File "/home/travis/virtualenv/python3.6.3/lib/python3.6/site-packages/django_distill/management/commands/distill-local.py", line 14, in <module> from django_distill.renderer import (run_collectstatic, render_to_dir) File "/home/travis/virtualenv/python3.6.3/lib/python3.6/site-packages/django_distill/renderer.py", line 17, in <module> from django.core.urlresolvers import reverse ModuleNotFoundError: No module named 'django.core.urlresolvers'
Refer to "django.core.urlresolvers" entry on their deprecation doc.
The text was updated successfully, but these errors were encountered:
576856a
Thanks for the report. This is fixed in the newly published 0.9 release.
Sorry, something went wrong.
Change the django.core.urlresolvers import reverse to django.urls import reverse.
fix imports for Django >=1.10 and >=2.0, bump to 0.9 release, resolves …
a283777
…#7
No branches or pull requests
setup.py
&requirements.txt
do not pin the version of Django, and Django 2.0 is out, and Django distill is broken.Refer to "django.core.urlresolvers" entry on their deprecation doc.
The text was updated successfully, but these errors were encountered: