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

Commit 584c0a3

Browse files
committed
Bumped version
1 parent 6acd0df commit 584c0a3

File tree

4 files changed

+10
-6
lines changed

4 files changed

+10
-6
lines changed

HISTORY.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Release History
66
1.2.0 (release-candidate)
77
+++++++++++++++++++++++++
88

9-
- Support for Python 2.7.
9+
- Support for Python 2.7 in azure.eventhub module (azure.eventprocessorhost will not support Python 2.7).
1010

1111

1212
1.1.0 (2018-09-21)

azure/__init__.py

Lines changed: 1 addition & 1 deletion
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

Lines changed: 1 addition & 1 deletion
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.2.0rc1"
77

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

setup.py

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -56,10 +56,14 @@
5656
'License :: OSI Approved :: MIT License',
5757
],
5858
zip_safe=False,
59-
packages=find_packages(exclude=["examples", "tests"]),
59+
packages=find_packages(exclude=[
60+
"azure",
61+
"examples",
62+
"tests",
63+
"tests.asynctests"]),
6064
install_requires=[
61-
'uamqp>=1.0.0,<2.0.0',
62-
'msrestazure~=0.5',
65+
'uamqp>=1.1.0rc1,<2.0.0',
66+
'msrestazure>=0.4.32,<2.0.0',
6367
'azure-common~=1.1',
6468
'azure-storage-blob~=1.3'
6569
]

0 commit comments

Comments
 (0)