Skip to content
This repository has been archived by the owner on Oct 12, 2023. It is now read-only.

Commit

Permalink
Merge pull request #69 from annatisch/master
Browse files Browse the repository at this point in the history
Fixed bug in Azure namespace package
  • Loading branch information
annatisch authored Oct 3, 2018
2 parents 65f265d + 0480dd1 commit 5587ea9
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 3 deletions.
6 changes: 6 additions & 0 deletions HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,12 @@
Release History
===============

1.1.1 (2019-10-03)
++++++++++++++++++

- Fixed bug in Azure namespace package.


1.1.0 (2018-09-21)
++++++++++++++++++

Expand Down
1 change: 1 addition & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
include *.rst
include azure/__init__.py
2 changes: 1 addition & 1 deletion azure/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@

__import__('pkg_resources').declare_namespace(__name__)
__path__ = __import__('pkgutil').extend_path(__path__, __name__)
2 changes: 1 addition & 1 deletion azure/eventhub/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# Licensed under the MIT License. See License.txt in the project root for license information.
# --------------------------------------------------------------------------------------------

__version__ = "1.1.0"
__version__ = "1.1.1"

from azure.eventhub.common import EventData, EventHubError, Offset
from azure.eventhub.client import EventHubClient
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@
'License :: OSI Approved :: MIT License',
],
zip_safe=False,
packages=find_packages(exclude=["examples", "tests"]),
packages=find_packages(exclude=["azure", "examples", "tests"]),
install_requires=[
'uamqp>=1.0.0,<2.0.0',
'msrestazure~=0.4.11',
Expand Down

0 comments on commit 5587ea9

Please sign in to comment.