Skip to content

Commit 3f2003f

Browse files
committed
update dependency on Azure SDK for Python
1 parent b3bba99 commit 3f2003f

File tree

4 files changed

+8
-6
lines changed

4 files changed

+8
-6
lines changed

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ the standard Python logging APIs to Microsoft Azure Storage.
1313
Dependencies
1414
------------
1515

16-
* azure 0.10 or newer
16+
* azure-storage
1717

1818
Installation
1919
------------

azure_storage_logging/handlers.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@
2222
from tempfile import mkstemp
2323
from zipfile import ZIP_DEFLATED, ZipFile
2424

25-
from azure.storage.blobservice import BlobService
26-
from azure.storage.queueservice import QueueService
27-
from azure.storage.tableservice import TableService
25+
from azure.storage.blob import BlobService
26+
from azure.storage.queue import QueueService
27+
from azure.storage.table import TableService
2828

2929
_PY3 = sys.version_info[0] == 3
3030

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
license='Apache License 2.0',
2727
packages=['azure_storage_logging'],
2828
install_requires=[
29-
'azure>=0.10',
29+
'azure-storage',
3030
],
3131
classifiers=CLASSIFIERS,
3232
keywords='azure logging',

tests/tests.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,9 @@
1414
from threading import current_thread
1515
from tempfile import mkdtemp
1616

17-
from azure.storage import BlobService, QueueService, TableService
17+
from azure.storage.blob import BlobService
18+
from azure.storage.queue import QueueService
19+
from azure.storage.table import TableService
1820

1921

2022
# put your Azure Storage account name and key here

0 commit comments

Comments
 (0)