Closed zezha-msft closed 6 years ago
This issue was originally uncovered by trying to import the cosmosdb table package into the same module as the block blob service. It results in an ImportError as seen here:
from azure.storage.blob import BlockBlobService
File "/usr/local/lib/python3.6/site-packages/azure/storage/blob/__init__.py", line 6, in <module>
from .appendblobservice import AppendBlobService
File "/usr/local/lib/python3.6/site-packages/azure/storage/blob/appendblobservice.py", line 30, in <module>
from ._deserialization import (
File "/usr/local/lib/python3.6/site-packages/azure/storage/blob/_deserialization.py", line 18, in <module>
from azure.storage.common._deserialization import (
ImportError: cannot import name '_to_int'
Resolved
Currently the table package is depending on
'azure-storage-common>=0.37.1,<0.38.0',
, which is now outdated. Thanks!