Here are notes on my current progress testing photocrowd.com on Django 1.9 prereleases. I hope this will be useful for other people testing their projects.
The starting point was a completely up to date (according to pypi) set of my requirements on October 5th 2015.
- Django floppy forms is fixed on github master
- Django timezone field is fixed on github develop
{% load url from future %}
is now completely deprecated, line can simply be deletedForeignRelatedObjectsDescriptor
has been renamed toReverseManyToOneDescriptor
. This is a private API- Test client redirects no longer have
http://testserver/
https://docs.djangoproject.com/en/dev/releases/1.9/#http-redirects-no-longer-forced-to-absolute-uris
- Investigate
sequence index must be integer, not 'slice'
failures withdjango-pagination
. Looks like repo is currently unmaintained by ericflo. Looks like it is related to changes in ericflo/django-pagination#45
I've started https://github.com/pydanny/dj-paginator to resolve the pagination issue you identified, as well as others.