This repository was archived by the owner on Oct 12, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 4 files changed +10
-6
lines changed Expand file tree Collapse file tree 4 files changed +10
-6
lines changed Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ Release History
661.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
12121.1.0 (2018-09-21)
Original file line number Diff line number Diff line change 11
2- __import__ ('pkg_resources ' ).declare_namespace ( __name__ )
2+ __path__ = __import__ ('pkgutil ' ).extend_path ( __path__ , __name__ )
Original file line number Diff line number Diff line change 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
88from azure .eventhub .common import EventData , EventHubError , Offset
99from azure .eventhub .client import EventHubClient
Original file line number Diff line number Diff line change 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 ]
You can’t perform that action at this time.
0 commit comments