Skip to content Skip to sidebar Skip to footer

Requested Runtime (python 3.7.2) Is Not Available For This Stack (heroku-18)

django (2.0) I am trying to upload my django app to heroku but i couldn't because it says requested runtime(python 3.7.2) is not available. Counting objects: 100% (1725/17

Solution 1:

The Heroku Docs show that the currently supported version of Python 3.7.X is 3.7.3.

Change the value in your runtime.txt file to python-3.7.3 to use Python 3.7.3.

Solution 2:

in the current herouku stack -20 , even 3.7.3 is not supported. check this link Hence please use 3.7.10 in the runtime.txt file

Solution 3:

Refer to the supported python versions and align your runtime.txt file make sure it as follows python-3.7.3 with no spacing, if your project is using an extremely lower version of python, you need to align to make sure you aren't using libraries that are not supported as per python-3.7X

Post a Comment for "Requested Runtime (python 3.7.2) Is Not Available For This Stack (heroku-18)"