You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The adserver is currently failing when re-built with latest dependencies. This is primarily due to the google-cloud-core update from 1.4.1 to 1.4.3. The error is:
>>> import kfserving
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "/opt/conda/lib/python3.7/site-packages/kfserving/__init__.py", line 18, in <module>
from .storage import Storage
File "/opt/conda/lib/python3.7/site-packages/kfserving/storage.py", line 23, in <module>
from google.cloud import storage
File "/opt/conda/lib/python3.7/site-packages/google/cloud/storage/__init__.py", line 39, in <module>
from google.cloud.storage.batch import Batch
File "/opt/conda/lib/python3.7/site-packages/google/cloud/storage/batch.py", line 31, in <module>
from google.cloud.storage._http import Connection
File "/opt/conda/lib/python3.7/site-packages/google/cloud/storage/_http.py", line 17, in <module>
from google.cloud import _http
File "/opt/conda/lib/python3.7/site-packages/google/cloud/_http.py", line 22, in <module>
from six.moves import collections_abc
ImportError: cannot import name 'collections_abc' from 'six.moves' (unknown location)
It is confirmed that the issue is due to an uncompatible version of being installed, which results in the installation of six to cause issues, and which seems to be caused due to a recent 1st / 2nd level dependency change.
The text was updated successfully, but these errors were encountered:
The adserver is currently failing when re-built with latest dependencies. This is primarily due to the google-cloud-core update from
1.4.1
to1.4.3
. The error is:It is confirmed that the issue is due to an uncompatible version of being installed, which results in the installation of six to cause issues, and which seems to be caused due to a recent 1st / 2nd level dependency change.
The text was updated successfully, but these errors were encountered: