Heroku python app failing to build when installing sqlite3

后端 未结 2 471
时光说笑
时光说笑 2020-12-19 01:45

My Python app on Heroku failed to build consistently:

-----> Python app detected
 !     Python has released a security update! Please consider upgrading t         


        
2条回答
  •  旧巷少年郎
    2020-12-19 02:06

    Try this in your app.json. Although it a temporary solution

    "buildpacks": [
        {
          "url": "https://github.com/heroku/heroku-buildpack-python.git#remove- 
                  sqlite"
        },
    

提交回复
热议问题