[Django]-Deploy Django 1.7 App on Heroku

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/

Leave a comment