miracle2k / django-assets

Django webassets integration.
BSD 2-Clause "Simplified" License
89 stars 79 forks source link

Django 1.8 introduced the use of argparse - this switches to use it. #74

Closed jaddison closed 8 years ago

jaddison commented 8 years ago

Management commands break in Django 1.10 due to the argparse switch; optparse (the old way) was deprecated in 1.8 in favour of argparse. In 1.10, optparse is removed.

This switch removes support for Django 1.7, which as of Django 1.9's release is no longer a supported Django version. (LaxOptionParser is no longer used.)

miracle2k commented 8 years ago

Perfect, thanks. I merged this #75, which wants a requires_system_checks = False option on the command class. Correct?

adamchainz commented 8 years ago

@miracle2k I'd like to see this commit released on PyPI, can you do one? Thx.