簡體   English   中英

升級到python 3.6.5時,Heroku上的Django應用推送被拒絕

[英]Django app push rejected on Heroku when upgrading to python 3.6.5

將我的Django應用推送到Heroku時,我收到此警告

remote: -----> Python app detected
remote:  !     The latest version of Python 3 is python-3.6.5 (you are using python-3.6.4, which is unsupported).
remote:  !     We recommend upgrading by specifying the latest version (python-3.6.5).
remote:        Learn More: https://devcenter.heroku.com/articles/python-runtimes

但是嘗試更新python版本時出現錯誤。 在我的本地環境中,它已經是python 3.6.5,因此我只是更新了runtime.txt文件,將python-3.6.4切換為python-3.6.5

但是,這會在推送應用程序時引發錯誤。 奇怪的是,錯誤並不總是相同的。

一個例子:

remote: Building source:
remote: 
remote: -----> Python app detected
remote: -----> Found python-3.6.4, removing
remote: -----> Installing python-3.6.5
remote: -----> Installing pip
remote: -----> Installing dependencies with Pipenv 11.8.2…
remote:        Installing dependencies from Pipfile…
remote:        An error occurred while installing pysocks==1.6.5! Will try again.
remote:        An error occurred while installing pytz==2017.2! Will try again.
remote:        An error occurred while installing pyyaml==3.12! Will try again.
remote:        An error occurred while installing requests==2.12.4! Will try again.
remote:        An error occurred while installing rq-dashboard==0.3.8! Will try again.
remote:        An error occurred while installing selenium==3.0.2! Will try again.
remote:        An error occurred while installing static3==0.7.0! Will try again.
remote:        An error occurred while installing urllib3==1.19.1! Will try again.
remote:        An error occurred while installing user-agents==1.0.1! Will try again.
remote:        An error occurred while installing werkzeug==0.12.2! Will try again.
remote:        An error occurred while installing whitenoise! Will try again.
remote:        An error occurred while installing xmltodict==0.11.0! Will try again.
remote:        Installing initially–failed dependencies…
remote:        Success installing pysocks==1.6.5!
remote:        Success installing pytz==2017.2!
remote:        Success installing pyyaml==3.12!
remote:        Success installing requests==2.12.4!
remote:        Success installing rq-dashboard==0.3.8!
remote:        Success installing selenium==3.0.2!
remote:        Success installing static3==0.7.0!
remote:        Success installing urllib3==1.19.1!
remote:        Success installing user-agents==1.0.1!
remote:        Success installing werkzeug==0.12.2!
remote:        Success installing whitenoise!
remote:        Success installing xmltodict==0.11.0!
remote: -----> $ python manage.py collectstatic --noinput
remote:        Traceback (most recent call last):
remote:          File "manage.py", line 10, in <module>
remote:            execute_from_command_line(sys.argv)
remote:          File "/app/.heroku/python/lib/python3.6/site-packages/django/core/management/__init__.py", line 371, in execute_from_command_line
remote:            utility.execute()
remote:          File "/app/.heroku/python/lib/python3.6/site-packages/django/core/management/__init__.py", line 347, in execute
remote:            django.setup()
remote:          File "/app/.heroku/python/lib/python3.6/site-packages/django/__init__.py", line 16, in setup
remote:            from django.urls import set_script_prefix
remote:          File "/app/.heroku/python/lib/python3.6/site-packages/django/urls/__init__.py", line 1, in <module>
remote:            from .base import (
remote:          File "/app/.heroku/python/lib/python3.6/site-packages/django/urls/base.py", line 8, in <module>
remote:            from .exceptions import NoReverseMatch, Resolver404
remote:          File "/app/.heroku/python/lib/python3.6/site-packages/django/urls/exceptions.py", line 1, in <module>
remote:            from django.http import Http404
remote:          File "/app/.heroku/python/lib/python3.6/site-packages/django/http/__init__.py", line 5, in <module>
remote:            from django.http.response import (
remote:          File "/app/.heroku/python/lib/python3.6/site-packages/django/http/response.py", line 13, in <module>
remote:            from django.core.serializers.json import DjangoJSONEncoder
remote:          File "/app/.heroku/python/lib/python3.6/site-packages/django/core/serializers/__init__.py", line 23, in <module>
remote:            from django.core.serializers.base import SerializerDoesNotExist
remote:          File "/app/.heroku/python/lib/python3.6/site-packages/django/core/serializers/base.py", line 6, in <module>
remote:            from django.db import models
remote:          File "/app/.heroku/python/lib/python3.6/site-packages/django/db/models/__init__.py", line 16, in <module>
remote:            from django.db.models.indexes import *  # NOQA
remote:          File "/app/.heroku/python/lib/python3.6/site-packages/django/db/models/indexes.py", line 3, in <module>
remote:            from django.db.backends.utils import split_identifier
remote:        ImportError: cannot import name 'split_identifier'
remote: 
remote:  !     Error while running '$ python manage.py collectstatic --noinput'.
remote:        See traceback above for details.
remote: 
remote:        You may need to update application code to resolve this error.
remote:        Or, you can disable collectstatic for this application:
remote: 
remote:           $ heroku config:set DISABLE_COLLECTSTATIC=1
remote: 
remote:        https://devcenter.heroku.com/articles/django-assets
remote:  !     Push rejected, failed to compile Python app.
remote: 
remote:  !     Push failed
remote: Verifying deploy...
remote: 
remote: !   Push rejected to myapp.
remote: 
To https://git.heroku.com/myapp.git
 ! [remote rejected] master -> master (pre-receive hook declined)
error: failed to push some refs to 'https://git.heroku.com/myapp.git'

另一個例子:

remote: Building source:
remote: 
remote: -----> Python app detected
remote: -----> Found python-3.6.4, removing
remote: -----> Installing python-3.6.5
remote: -----> Installing pip
remote: -----> Installing dependencies with Pipenv 11.8.2…
remote:        Installing dependencies from Pipfile…
remote:        An error occurred while installing pysocks==1.6.5! Will try again.
remote:        An error occurred while installing pytz==2017.2! Will try again.
remote:        An error occurred while installing pyyaml==3.12! Will try again.
remote:        An error occurred while installing requests==2.12.4! Will try again.
remote:        An error occurred while installing rq-dashboard==0.3.8! Will try again.
remote:        An error occurred while installing selenium==3.0.2! Will try again.
remote:        An error occurred while installing static3==0.7.0! Will try again.
remote:        An error occurred while installing urllib3==1.19.1! Will try again.
remote:        An error occurred while installing user-agents==1.0.1! Will try again.
remote:        An error occurred while installing werkzeug==0.12.2! Will try again.
remote:        An error occurred while installing whitenoise! Will try again.
remote:        An error occurred while installing xmltodict==0.11.0! Will try again.
remote:        Installing initially–failed dependencies…
remote:        Success installing pysocks==1.6.5!
remote:        Success installing pytz==2017.2!
remote:        Success installing pyyaml==3.12!
remote:        Success installing requests==2.12.4!
remote:        Success installing rq-dashboard==0.3.8!
remote:        Success installing selenium==3.0.2!
remote:        Success installing static3==0.7.0!
remote:        Success installing urllib3==1.19.1!
remote:        Success installing user-agents==1.0.1!
remote:        Success installing werkzeug==0.12.2!
remote:        Success installing whitenoise!
remote:        Success installing xmltodict==0.11.0!
remote: -----> $ python manage.py collectstatic --noinput
remote:        Traceback (most recent call last):
remote:          File "manage.py", line 8, in <module>
remote:            from django.core.management import execute_from_command_line
remote:          File "/app/.heroku/python/lib/python3.6/site-packages/django/core/management/__init__.py", line 13, in <module>
remote:            from django.core.management.base import (
remote:          File "/app/.heroku/python/lib/python3.6/site-packages/django/core/management/base.py", line 17, in <module>
remote:            from django.db.migrations.exceptions import MigrationSchemaMissing
remote:          File "/app/.heroku/python/lib/python3.6/site-packages/django/db/migrations/__init__.py", line 2, in <module>
remote:            from .operations import *  # NOQA
remote:          File "/app/.heroku/python/lib/python3.6/site-packages/django/db/migrations/operations/__init__.py", line 1, in <module>
remote:            from .fields import AddField, AlterField, RemoveField, RenameField
remote:          File "/app/.heroku/python/lib/python3.6/site-packages/django/db/migrations/operations/fields.py", line 2, in <module>
remote:            from django.db.models.fields import NOT_PROVIDED
remote:          File "/app/.heroku/python/lib/python3.6/site-packages/django/db/models/__init__.py", line 19, in <module>
remote:            from django.db.models.manager import Manager
remote:          File "/app/.heroku/python/lib/python3.6/site-packages/django/db/models/manager.py", line 6, in <module>
remote:            from django.db.models.query import QuerySet
remote:          File "/app/.heroku/python/lib/python3.6/site-packages/django/db/models/query.py", line 26, in <module>
remote:            from django.utils.deprecation import RemovedInDjango30Warning
remote:        ImportError: cannot import name 'RemovedInDjango30Warning'
remote: 
remote:  !     Error while running '$ python manage.py collectstatic --noinput'.
remote:        See traceback above for details.
remote: 
remote:        You may need to update application code to resolve this error.
remote:        Or, you can disable collectstatic for this application:
remote: 
remote:           $ heroku config:set DISABLE_COLLECTSTATIC=1
remote: 
remote:        https://devcenter.heroku.com/articles/django-assets
remote:  !     Push rejected, failed to compile Python app.
remote: 
remote:  !     Push failed
remote: Verifying deploy...
remote: 
remote: !   Push rejected to myapp.
remote: 
To https://git.heroku.com/myapp.git
 ! [remote rejected] master -> master (pre-receive hook declined)
error: failed to push some refs to 'https://git.heroku.com/myapp.git'

我也有類似的問題,比如這一個 ,但錯誤通常是靜態的文件夾,這不是我的情況。

筆記

  • 如果我在不升級到python 3.6.5的情況下推送應用程序,則不會引發錯誤。

  • 我最近用較新的MacBook替換了舊的MacBook。 因為如果我不嘗試升級python版本,一切都很好,我想這無關緊要,但是以防萬一,我認為值得一提。

為什么會發生這種情況,我該如何解決?

不知道原因,但最終成功了。

如果有其他幫助,我將嘗試在此處解釋步驟。

我一直等到heroku推薦的最新版本的python是3.6.6而不是3.6.5。

然后,我執行了以下步驟:

  • 將我的runtime.txt更改為3.6.6
  • 將我的runtime.txt更改為3.7.0
  • 返回到runtime.txt3.6.6
  • 刪除了我已安裝但未使用的django-lockdown
  • 在本地環境中升級了pip
  • 我運行pip freeze > requirements.txt

在推送過程中,我仍然看到一些錯誤,但是以某種方式發布了。

remote:        Installing dependencies from Pipfile…
remote:        An error occurred while installing pysocks==1.6.5! Will try again.
remote:        An error occurred while installing pytz==2017.2! Will try again.
remote:        An error occurred while installing pyyaml==3.12! Will try again.
remote:        An error occurred while installing requests==2.12.4! Will try again.
remote:        An error occurred while installing rq==0.7.1! Will try again.
remote:        An error occurred while installing rq-dashboard==0.3.8! Will try again.
remote:        An error occurred while installing selenium==3.0.2! Will try again.
remote:        An error occurred while installing static3==0.7.0! Will try again.
remote:        An error occurred while installing urllib3==1.19.1! Will try again.
remote:        An error occurred while installing user-agents==1.0.1! Will try again.
remote:        An error occurred while installing werkzeug==0.12.2! Will try again.
remote:        An error occurred while installing whitenoise! Will try again.
remote:        An error occurred while installing xmltodict==0.11.0! Will try again.
remote:        Installing initially–failed dependencies…
remote:        Success installing pysocks==1.6.5!
remote:        Success installing pytz==2017.2!
remote:        Success installing pyyaml==3.12!
remote:        Success installing requests==2.12.4!
remote:        Success installing rq==0.7.1!
remote:        Success installing rq-dashboard==0.3.8!
remote:        Success installing selenium==3.0.2!
remote:        Success installing static3==0.7.0!
remote:        Success installing urllib3==1.19.1!
remote:        Success installing user-agents==1.0.1!
remote:        Success installing werkzeug==0.12.2!
remote:        Success installing whitenoise!
remote:        Success installing xmltodict==0.11.0!

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM