Skip to content

Commit 4786fc9

Browse files
authored
[EventHubs] remove 3.8 (Azure#40446)
1 parent 68dff9f commit 4786fc9

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

sdk/eventhub/azure-eventhub-checkpointstoreblob-aio/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@
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",

sdk/eventhub/azure-eventhub-checkpointstoreblob/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@
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,

sdk/eventhub/azure-eventhub/tests/pyamqp_tests/asynctests/test_websocket_async.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
from azure.eventhub._pyamqp.aio import ReceiveClientAsync, SendClientAsync
1212
from azure.eventhub._pyamqp.constants import TransportType
1313
from azure.eventhub._pyamqp.message import Message
14+
import sys
1415

1516

1617
async 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")
3537
async 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(

0 commit comments

Comments
 (0)