安装sqlite3时Heroku python应用无法构建

时间:2019-06-19 23:11:20

标签: python sqlite heroku

我在Heroku上的Python应用无法始终构建:

-----> Python app detected
 !     Python has released a security update! Please consider upgrading to python-3.6.8
       Learn More: https://devcenter.heroku.com/articles/python-runtimes
-----> Found python-3.6.4, removing
-----> Installing python-3.6.7
-----> Installing pip
-----> Installing SQLite3
 !     Push rejected, failed to compile Python app.
 !     Push failed

这是一个在本地运行良好的Django应用程序。

python-3.6.7中指定了

runtime.txt,并且我尝试了其他版本。

我的Procfile包含:


release: python <appname>/manage.py migrate
web: python <appname>/manage.py runserver 0.0.0.0:$PORT

我可能可以使用gunicorn,但这与这里无关。构建日志似乎没有向我提供任何信息。

requirements.txt

chardet==3.0.4
Django==2.0.2
idna==2.6
pytz==2018.3
requests==2.18.4
urllib3==1.22
dj-database-url==0.5.0
setuptools==1.0.0

2 个答案:

答案 0 :(得分:1)

在您的app.json中尝试一下。虽然是临时解决方案

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

答案 1 :(得分:1)

请参阅:https://travis-ci.org/heroku/heroku-buildpack-python

堆栈从heroku-16中的heroku-18升级到app.json