-
-
Notifications
You must be signed in to change notification settings - Fork 20
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
RemovedInDjango110Warning #12
Comments
Looking at it. For future reference, could I also advise next issue related to django-excel to be raised in django-excel project? This is related to pyexcel-io only. |
Ok will do.Thanks. |
Django 1.10 is not released in pypy yet. Where to get it? |
No idea.but it says Update your urlpatterns to be a list of django.conf.urls.url() instances instead. I wasn't sure what that means. Doing that will stop giving the warning. |
transferring this issue to django-excel |
I have been following the tutorial at http://django-excel.readthedocs.org/en/latest/
After,
python manage.py migrate
python manage.py runserver
I get the following warnings
C:\Python27\lib\site-packages\django\template\utils.py:37: RemovedInDjango110Warning: You haven't defined a TEMPLATES setting. You must do so before upgrading to Django 1.10. Otherwise Django will be unable to load templates.
"unable to load templates.", RemovedInDjango110Warning)
C:\Users\Lenovo\django-excel\polls\urls.py:13: RemovedInDjango110Warning: django.conf.urls.patterns() is deprecated and will be removed in Django 1.10. Update your urlpatterns to be a list of django.conf.urls.url() instances instead.
url(r'^export/(.*)', views.export_data, name="export")
C:\Users\Lenovo\django-excel\mysite\urls.py:10: RemovedInDjango110Warning: django.conf.urls.patterns() is deprecated and will be removed in Django 1.10. Update your urlpatterns to be a list of django.conf.urls.url() instances instead.
url(r'^polls/', include('polls.urls'))
Please help. Thank you.
The text was updated successfully, but these errors were encountered: