koleror / django-admin-views

Easily link custom admin views and direct URLs into the Django admin
BSD 3-Clause "New" or "Revised" License
187 stars 33 forks source link

admin-views raises RemovedInDjango110Warning warning #30

Closed dbinoj closed 8 years ago

dbinoj commented 8 years ago

admin-views in Django 1.9.7 raises the following message during dev server startup system checks.

/home/vagrant/.Env/apps/local/lib/python2.7/site-packages/admin_views/admin.py:36: 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.
  view=self.admin_site.admin_view(view_func)
dbinoj commented 8 years ago

Someone please fix/merge the fix as Django 1.10 is out now. I'm currently using pip install git+https://github.com/dbinoj/django-admin-views.git@patch-1 in my requirements.txt as the official version breaks with Django 1.10

frankwiles commented 8 years ago

I just released version 0.8.0 which has this fixed in it.

dbinoj commented 8 years ago

Thanks!