2👍
✅
In your requirements file, instead of giving the package name, give a link to the github repository directly, with your version tag:
git+https://github.com/django/django.git@1.7c2
2👍
This is irrelevant to Heroku, Django 1.7 is not official yet so to install 1.7 in any system you have to use:
pip install https://www.djangoproject.com/download/1.7c2/tarball/
This is clearly Documented in the Django documentation:
https://www.djangoproject.com/download/
- [Django]-Django + Sqlite: database is locked
- [Django]-Django mocks not working as expected
- [Django]-Initial values for CheckboxSelectMultiple
- [Django]-Django – cant pass parameter in HttpResponseRedirect
Source:stackexchange.com