Heroku python app failing to build when installing sqlite3

后端 未结 2 468
时光说笑
时光说笑 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"
        },
    
    0 讨论(0)
  • 2020-12-19 02:12

    See: https://travis-ci.org/heroku/heroku-buildpack-python

    Upgrade the the stack from heroku-16 to heroku-18 in app.json.

    0 讨论(0)
提交回复
热议问题