Skip to content

Commit 5587ea9

Browse files
authored
Merge pull request Azure#69 from annatisch/master
Fixed bug in Azure namespace package
2 parents 65f265d + 0480dd1 commit 5587ea9

File tree

5 files changed

+10
-3
lines changed

5 files changed

+10
-3
lines changed

HISTORY.rst

+6
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,12 @@
33
Release History
44
===============
55

6+
1.1.1 (2019-10-03)
7+
++++++++++++++++++
8+
9+
- Fixed bug in Azure namespace package.
10+
11+
612
1.1.0 (2018-09-21)
713
++++++++++++++++++
814

MANIFEST.in

+1
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
11
include *.rst
2+
include azure/__init__.py

azure/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11

2-
__import__('pkg_resources').declare_namespace(__name__)
2+
__path__ = __import__('pkgutil').extend_path(__path__, __name__)

azure/eventhub/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# Licensed under the MIT License. See License.txt in the project root for license information.
44
# --------------------------------------------------------------------------------------------
55

6-
__version__ = "1.1.0"
6+
__version__ = "1.1.1"
77

88
from azure.eventhub.common import EventData, EventHubError, Offset
99
from azure.eventhub.client import EventHubClient

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@
5454
'License :: OSI Approved :: MIT License',
5555
],
5656
zip_safe=False,
57-
packages=find_packages(exclude=["examples", "tests"]),
57+
packages=find_packages(exclude=["azure", "examples", "tests"]),
5858
install_requires=[
5959
'uamqp>=1.0.0,<2.0.0',
6060
'msrestazure~=0.4.11',

0 commit comments

Comments
 (0)