Instead of using
django>=1.5,<=1.6
It maybe better to use
django>=1.5,<1.7
As it is now the requirements will uninstall Django 1.6.1 or 1.6.2 etc. The other option is to keep this up to date. I doubt that future minor point releases, i.e 1.6.3 etc, will break the app.
Instead of using django>=1.5,<=1.6 It maybe better to use django>=1.5,<1.7
As it is now the requirements will uninstall Django 1.6.1 or 1.6.2 etc. The other option is to keep this up to date. I doubt that future minor point releases, i.e 1.6.3 etc, will break the app.