Update to Django 1.11
See original GitHub issueI’ve told the bot to stay on 1.10.x
for now (https://github.com/pydanny/cookiecutter-django/commit/f62e05b95e60c043cb463c66b40ca69c1f2d9c26) and merged the latest security release.
I believe @luzfcb was working on a release checklist. Let’s put this here.
Issue Analytics
- State:
- Created 6 years ago
- Reactions:8
- Comments:49 (20 by maintainers)
Top Results From Across the Web
How to upgrade Django to a newer version
In most cases it will be necessary to upgrade to the latest version of your Django-related dependencies as well. If the Django version...
Read more >How to upgrade django? - python - Stack Overflow
Use this command to get all available Django versions: yolk -V django · Type pip install -U Django for latest version, or if...
Read more >A Django Upgrade Guide for Major and Minor Releases
The steps to update are the same but first, upgrade to Django 1.11 while staying on Python 2, then switch to Python 3,...
Read more >Django Upgrade (1.11 to 3.1) - Hue
Why Upgrade. The older version of Django 1.11 is deprecated (e.g. no longer receiving security updates or improvements). Django 1.11 requires ...
Read more >adamchainz/django-upgrade - GitHub
django -upgrade is a commandline tool that rewrites files in place. Pass your Django version as <major>.<minor> to the --target-version flag. django-upgrade will ......
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
I plan to look at this in the next day or so.
Checklist:
Check if all dependencies officialy work with Django 1.11( if not, wait).
Dependencies that are Django version-dependent ( Check off each of the below when it officially works on 1.11. ):
Check if dependencies require changes on django settings files.
Add Python 3.6 to test suite tox.ini, .travis.yml
Change the generated project to use Python 3.6
Check that the tests pass on Django 1.11
Check that the tests pass on Django 1.11 with zero deprecation warnings messages: https://docs.djangoproject.com/en/1.11/howto/upgrade-version/#resolving-deprecation-warnings
Before update to Django 1.11, create a git tag to current version of cookiecuter-django
Update to Django 1.11 and update other dependencies and: