Skip to content

Commit e87b453

Browse files
authored
{0.6.2} Fix import issue for filedatalake (#45)
* update filedatalake * version * changelog * Fix import issue for filedatalake * azure.core.exception
1 parent d813fa2 commit e87b453

File tree

4 files changed

+7
-2
lines changed

4 files changed

+7
-2
lines changed

README.rst

+4
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,10 @@ Handles multi-API versions of Azure Storage Data Plane originally from https://g
1717

1818
Change Log
1919
----------
20+
0.6.2
21+
+++++
22+
* Fix import issue for filedatalake
23+
2024
0.6.1
2125
+++++
2226
* Support undelete filesystem

azure/multiapi/storagev2/filedatalake/v2020_02_10/_upload_helper.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
from ._shared.uploads import (
1212
upload_data_chunks,
1313
DataLakeFileChunkUploader)
14-
from ...core.exceptions import HttpResponseError
14+
from azure.core.exceptions import HttpResponseError
1515

1616

1717
def _any_conditions(modified_access_conditions=None, **kwargs): # pylint: disable=unused-argument

scripts/updatev2_1.sh

+1
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@ for service in blob fileshare filedatalake queue; do
5050

5151
namespace=azure.storage.$service
5252
sed -i "s/from $namespace./from ./g" $f
53+
sed -i "s/from ...core.exceptions/from azure.core.exceptions/g" $f
5354
done
5455

5556
done

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535

3636
setup(
3737
name='azure-multiapi-storage',
38-
version='0.6.1',
38+
version='0.6.2',
3939
description='Microsoft Azure Storage Client Library for Python with multi API version support.',
4040
long_description=open('README.rst', 'r').read(),
4141
license='MIT',

0 commit comments

Comments
 (0)