Skip to content

Commit

Permalink
{0.6.2} Fix import issue for filedatalake (#45)
Browse files Browse the repository at this point in the history
* update filedatalake

* version

* changelog

* Fix import issue for filedatalake

* azure.core.exception
  • Loading branch information
evelyn-ys authored Mar 23, 2021
1 parent d813fa2 commit e87b453
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 2 deletions.
4 changes: 4 additions & 0 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,10 @@ Handles multi-API versions of Azure Storage Data Plane originally from https://g

Change Log
----------
0.6.2
+++++
* Fix import issue for filedatalake

0.6.1
+++++
* Support undelete filesystem
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
from ._shared.uploads import (
upload_data_chunks,
DataLakeFileChunkUploader)
from ...core.exceptions import HttpResponseError
from azure.core.exceptions import HttpResponseError


def _any_conditions(modified_access_conditions=None, **kwargs): # pylint: disable=unused-argument
Expand Down
1 change: 1 addition & 0 deletions scripts/updatev2_1.sh
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ for service in blob fileshare filedatalake queue; do

namespace=azure.storage.$service
sed -i "s/from $namespace./from ./g" $f
sed -i "s/from ...core.exceptions/from azure.core.exceptions/g" $f
done

done
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@

setup(
name='azure-multiapi-storage',
version='0.6.1',
version='0.6.2',
description='Microsoft Azure Storage Client Library for Python with multi API version support.',
long_description=open('README.rst', 'r').read(),
license='MIT',
Expand Down

0 comments on commit e87b453

Please sign in to comment.