File tree Expand file tree Collapse file tree 3 files changed +4
-2
lines changed
azure-eventhub-checkpointstoreblob-aio
azure-eventhub-checkpointstoreblob
azure-eventhub/tests/pyamqp_tests/asynctests Expand file tree Collapse file tree 3 files changed +4
-2
lines changed Original file line number Diff line number Diff line change 7171 package_data = {
7272 'pytyped' : ['py.typed' ],
7373 },
74- python_requires = ">=3.8 " ,
74+ python_requires = ">=3.9 " ,
7575 install_requires = [
7676 # dependencies for the vendored storage blob
7777 "azure-core>=1.30.0" ,
Original file line number Diff line number Diff line change 6565 "Programming Language :: Python :: 3.13" ,
6666 'License :: OSI Approved :: MIT License' ,
6767 ],
68- python_requires = ">=3.8 " ,
68+ python_requires = ">=3.9 " ,
6969 zip_safe = False ,
7070 packages = find_packages (exclude = exclude_packages ),
7171 include_package_data = True ,
Original file line number Diff line number Diff line change 1111from azure .eventhub ._pyamqp .aio import ReceiveClientAsync , SendClientAsync
1212from azure .eventhub ._pyamqp .constants import TransportType
1313from azure .eventhub ._pyamqp .message import Message
14+ import sys
1415
1516
1617async def send_message (live_eventhub ):
@@ -32,6 +33,7 @@ async def send_message(live_eventhub):
3233
3334
3435@pytest .mark .asyncio
36+ @pytest .mark .skipif (sys .version_info < (3 , 9 ), reason = "Test requires Python 3.9 or higher" )
3537async def test_event_hubs_client_web_socket_async (live_eventhub ):
3638 uri = "sb://{}/{}" .format (live_eventhub ["hostname" ], live_eventhub ["event_hub" ])
3739 sas_auth = _authentication_async .SASTokenAuthAsync (
You can’t perform that action at this time.
0 commit comments