Skip to content

Commit

Permalink
Fix package problem: update prg_resources to pkgutil (#28)
Browse files Browse the repository at this point in the history
* Fix package problem: update prg_resource to pktutil

* update History and version

* revert version to 0.3.4

* Revert "revert version to 0.3.4"

This reverts commit ab13ab4.
  • Loading branch information
arrownj authored Jun 24, 2020
1 parent 4b8f867 commit 5aa2637
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 6 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.3.5
+++++
* Fix package problem: update prg_resources to pkgutil

0.3.4
+++++
* Remove __init__.py under azure
Expand Down
1 change: 1 addition & 0 deletions azure/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
__path__ = __import__('pkgutil').extend_path(__path__, __name__)
2 changes: 1 addition & 1 deletion azure/multiapi/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__import__('pkg_resources').declare_namespace(__name__)
__path__ = __import__('pkgutil').extend_path(__path__, __name__)
2 changes: 1 addition & 1 deletion azure/multiapi/cosmosdb/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__import__('pkg_resources').declare_namespace(__name__)
__path__ = __import__('pkgutil').extend_path(__path__, __name__)
2 changes: 1 addition & 1 deletion azure/multiapi/storage/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__import__('pkg_resources').declare_namespace(__name__)
__path__ = __import__('pkgutil').extend_path(__path__, __name__)
2 changes: 1 addition & 1 deletion azure/multiapi/storagev2/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__import__('pkg_resources').declare_namespace(__name__)
__path__ = __import__('pkgutil').extend_path(__path__, __name__)
4 changes: 2 additions & 2 deletions 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.3.4',
version='0.3.5',
description='Microsoft Azure Storage Client Library for Python with multi API version support.',
long_description=open('README.rst', 'r').read(),
license='MIT',
Expand All @@ -57,7 +57,7 @@
'License :: OSI Approved :: Apache Software License',
],
zip_safe=False,
packages=find_packages(),
packages=find_packages(exclude=["azure"]),
install_requires=[
'azure-common',
'cryptography',
Expand Down

0 comments on commit 5aa2637

Please sign in to comment.