After creating a repository in Heroku, I want to push my project from master branch to my heroku repo.
On my first try I got the following error message:
No default language could be detected for this app
After searching, I used the following command:
heroku buildpacks:set heroku/python
Now it gave me this error message:
App not compatible with buildpack: https://buildpack-registry.s3.amazonaws.com/buildpacks/heroku/python.tgz
So now I tried everything from the beginning and it gives me the following error:
Python app detected
Requested runtime ("python-3.7.1") is not available for this stack (heroku-18).
I am stuck here.
I do have a requirements.txt
with all the requirements and a runtime.txt
in the same folder as my manage.py
file.