caktus / django-sticky-uploads

Enhanced file input widget for Django which uploads the file in the background and retains value on form errors.
BSD 3-Clause "New" or "Revised" License
32 stars 9 forks source link

Fixed #16 -- Fixed Django1.10 deprecations and updated tox.ini #17

Closed benred42 closed 8 years ago

benred42 commented 8 years ago

Addresses the issue raised in #16 as well as a few additional deprecations, primarily in the test suite. I also took the liberty of updating the tox file to include Django1.9 (and replaced Python3.2 with Python3.4).

benred42 commented 8 years ago

There is still one deprecation warning that is being raised when form.save() is called, which is:

RemovedInDjango110Warning: Backwards compatibility for storage backends without support for themax_lengthargument in Storage.save() will be removed in Django 1.10.

This doesn't sound like something on our end, but maybe a mention in the docs could be helpful.

vstoykov commented 8 years ago

I'm +1 for this