Hello i am trying to deploy my flask app via heroku. I have been following this site: https://devcenter.heroku.com/articles/getting-started-with-python#deploy-the-app
Everything worked until this command:
git push heroku main:main
I receive this error
(base) name@mac cwesterink.github.io % git push heroku main
Enumerating objects: 178, done.
Counting objects: 100% (178/178), done.
Delta compression using up to 4 threads
Compressing objects: 100% (97/97), done.
Writing objects: 100% (178/178), 44.11 KiB | 44.11 MiB/s, done.
Total 178 (delta 64), reused 178 (delta 64), pack-reused 0
remote: Compressing source files... done.
remote: Building source:
remote:
remote: -----> App not compatible with buildpack: https://buildpack-registry.s3.amazonaws.com/buildpacks/heroku/python.tgz
remote: More info: https://devcenter.heroku.com/articles/buildpacks#detection-failure
remote:
remote: ! Push failed
remote: !
remote: ! ## Warning - The same version of this code has already been built: 479f8868ba69f9c7ad9caa5dab5b7bf0b5347d3c
remote: !
remote: ! We have detected that you have triggered a build from source code with version 479f8868ba69f9c7ad9caa5dab5b7bf0b5347d3c
remote: ! at least twice. One common cause of this behavior is attempting to deploy code from a different branch.
remote: !
remote: ! If you are developing on a branch and deploying via git you must run:
remote: !
remote: ! git push heroku <branchname>:main
remote: !
remote: ! This article goes into details on the behavior:
remote: ! https://devcenter.heroku.com/articles/duplicate-build-version
remote:
remote: Verifying deploy...
remote:
remote: ! Push rejected to aqueous-caverns-46845.
remote:
2020-12-08T04:23:19.788222+00:00 heroku[router]: at=error code=H14 desc="No web processes running" method=GET path="/" host=floating-sierra-24488.herokuapp.com request_id=dd03fcc6-1283-4bc5-8245-af22b4101145 fwd="98.210.226.124" dyno= connect= service= status=503 bytes= protocol=https
2020-12-08T04:23:21.171843+00:00 heroku[router]: at=error code=H14 desc="No web processes running" method=GET path="/favicon.ico" host=floating-sierra-24488.herokuapp.com request_id=02ba31f9-e946-486f-b73e-af635c7ec14d fwd="98.210.226.124" dyno= connect= service= status=503 bytes= protocol=https
2020-12-08T04:27:40.157382+00:00 heroku[router]: at=error code=H14 desc="No web processes running" method=GET path="/" host=floating-sierra-24488.herokuapp.com request_id=a6b20915-6ff6-41ba-9aba-cd421d6f0045 fwd="98.210.226.124" dyno= connect= service= status=503 bytes= protocol=https
2020-12-08T04:27:41.015113+00:00 heroku[router]: at=error code=H14 desc="No web processes running" method=GET path="/favicon.ico" host=floating-sierra-24488.herokuapp.com request_id=9c2b7fb3-49c3-4745-8816-c24363448f49 fwd="98.210.226.124" dyno= connect= service= status=503 bytes= protocol=https```
Any help to solve this problem would be greatly appreciated.