I have been working on a Django (Python) project using Dokku (thus Heroku) for deployments. Up until today, all deployments worked just fine, but since this morning, I get this error message:
Requested runtime 'python-3.10.12' is not available for this stack (heroku-18).
I know that python-3.10.12 is available on heroku-18 so I assume I (finally) have to change stack since heroku-18 is deprecated.
I have tried using this command on Dokku:
dokku buildpacks:add --index 1 {APP-NAME} https://github.com/heroku/heroku-buildpack-python.git,
but it doesn't solve my problem (heroku-18 is still being used).
Any help would be greatly appreciated