Skip to content

Commit 6807eb4

Browse files
authored
[ServiceBus&EventHubs] prepare for release (Azure#22428)
* release prep * add python 3.6 * add 3.6 to EH * add 3.6 to SR * update dates * newline
1 parent 17f69f7 commit 6807eb4

File tree

24 files changed

+34
-28
lines changed

24 files changed

+34
-28
lines changed

sdk/eventhub/azure-eventhub-checkpointstoreblob-aio/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
## 1.2.0 (Unreleased)
44

5-
This version and all future versions will require Python 3.7+. Python 2.7 and 3.6 are no longer supported.
5+
This version and all future versions will require Python 3.6+. Python 2.7 is no longer supported.
66

77
### Bugs Fixed
88

sdk/eventhub/azure-eventhub-checkpointstoreblob-aio/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ _Azure SDK Python packages support for Python 2.7 has ended 01 January 2022. For
1515

1616
### Prerequisites
1717

18-
- Python 3.7 or later.
18+
- Python 3.6 or later.
1919
- **Microsoft Azure Subscription:** To use Azure services, including Azure Event Hubs, you'll need a subscription. If you do not have an existing Azure account, you may sign up for a free trial or use your MSDN subscriber benefits when you [create an account](https://azure.microsoft.com/).
2020

2121
- **Event Hubs namespace with an Event Hub:** To interact with Azure Event Hubs, you'll also need to have a namespace and Event Hub available. If you are not familiar with creating Azure resources, you may wish to follow the step-by-step guide for [creating an Event Hub using the Azure portal](https://docs.microsoft.com/azure/event-hubs/event-hubs-create). There, you can also find detailed instructions for using the Azure CLI, Azure PowerShell, or Azure Resource Manager (ARM) templates to create an Event Hub.

sdk/eventhub/azure-eventhub-checkpointstoreblob-aio/samples/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ These sample programs show how to use the async Python client libraries for Azur
1818
| [receive_events_using_checkpoint_store_storage_api_version_async.py](https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/eventhub/azure-eventhub-checkpointstoreblob-aio/samples/receive_events_using_checkpoint_store_storage_api_version_async.py) | Demonstrates how to use a specific Azure Storage Blobs API version with BlobCheckpointStore. |
1919

2020
## Prerequisites
21-
- Python 3.7 or later.
21+
- Python 3.6 or later.
2222
- **Microsoft Azure Subscription:** To use Azure services, including Azure Event Hubs, you'll need a subscription. If you do not have an existing Azure account, you may sign up for a free trial or use your MSDN subscriber benefits when you [create an account](https://azure.microsoft.com/).
2323

2424
- **Event Hubs namespace with an Event Hub:** To interact with Azure Event Hubs, you'll also need to have a namespace and Event Hub available. If you are not familiar with creating Azure resources, you may wish to follow the step-by-step guide for [creating an Event Hub using the Azure portal](https://docs.microsoft.com/azure/event-hubs/event-hubs-create). There, you can also find detailed instructions for using the Azure CLI, Azure PowerShell, or Azure Resource Manager (ARM) templates to create an Event Hub.

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

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,7 @@
5656
"Development Status :: 5 - Production/Stable",
5757
'Programming Language :: Python',
5858
'Programming Language :: Python :: 3 :: Only',
59+
'Programming Language :: Python :: 3.6',
5960
'Programming Language :: Python :: 3.7',
6061
'Programming Language :: Python :: 3.8',
6162
'Programming Language :: Python :: 3.9',
@@ -64,7 +65,7 @@
6465
],
6566
zip_safe=False,
6667
packages=find_packages(exclude=exclude_packages),
67-
python_requires=">=3.7",
68+
python_requires=">=3.6",
6869
install_requires=[
6970
# dependencies for the vendored storage blob
7071
"azure-core<2.0.0,>=1.20.1",

sdk/eventhub/azure-eventhub-checkpointstoreblob/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
## 1.2.0 (Unreleased)
44

5-
This version and all future versions will require Python 3.7+. Python 2.7 and 3.6 are no longer supported.
5+
This version and all future versions will require Python 3.6+. Python 2.7 is no longer supported.
66

77
### Bugs Fixed
88

sdk/eventhub/azure-eventhub-checkpointstoreblob/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ _Azure SDK Python packages support for Python 2.7 has ended 01 January 2022. For
1515

1616
### Prerequisites
1717

18-
- Python 3.7 or later.
18+
- Python 3.6 or later.
1919
- **Microsoft Azure Subscription:** To use Azure services, including Azure Event Hubs, you'll need a subscription. If you do not have an existing Azure account, you may sign up for a free trial or use your MSDN subscriber benefits when you [create an account](https://azure.microsoft.com/).
2020

2121
- **Event Hubs namespace with an Event Hub:** To interact with Azure Event Hubs, you'll also need to have a namespace and Event Hub available. If you are not familiar with creating Azure resources, you may wish to follow the step-by-step guide for [creating an Event Hub using the Azure portal](https://docs.microsoft.com/azure/event-hubs/event-hubs-create). There, you can also find detailed instructions for using the Azure CLI, Azure PowerShell, or Azure Resource Manager (ARM) templates to create an Event Hub.

sdk/eventhub/azure-eventhub-checkpointstoreblob/samples/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ These sample programs show how to use the sync Python client libraries for Azure
1818
| [receive_events_using_checkpoint_store_storage_api_version.py](https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/eventhub/azure-eventhub-checkpointstoreblob/samples/receive_events_using_checkpoint_store_storage_api_version.py) | Demonstrates how to use a specific Azure Storage Blobs API version with BlobCheckpointStore. |
1919

2020
## Prerequisites
21-
- Python 3.7 or later.
21+
- Python 3.6 or later.
2222
- **Microsoft Azure Subscription:** To use Azure services, including Azure Event Hubs, you'll need a subscription. If you do not have an existing Azure account, you may sign up for a free trial or use your MSDN subscriber benefits when you [create an account](https://azure.microsoft.com/).
2323

2424
- **Event Hubs namespace with an Event Hub:** To interact with Azure Event Hubs, you'll also need to have a namespace and Event Hub available. If you are not familiar with creating Azure resources, you may wish to follow the step-by-step guide for [creating an Event Hub using the Azure portal](https://docs.microsoft.com/azure/event-hubs/event-hubs-create). There, you can also find detailed instructions for using the Azure CLI, Azure PowerShell, or Azure Resource Manager (ARM) templates to create an Event Hub.

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

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,13 +56,14 @@
5656
"Development Status :: 5 - Production/Stable",
5757
'Programming Language :: Python',
5858
'Programming Language :: Python :: 3 :: Only',
59+
'Programming Language :: Python :: 3.6',
5960
'Programming Language :: Python :: 3.7',
6061
'Programming Language :: Python :: 3.8',
6162
'Programming Language :: Python :: 3.9',
6263
'Programming Language :: Python :: 3.10',
6364
'License :: OSI Approved :: MIT License',
6465
],
65-
python_requires=">=3.7",
66+
python_requires=">=3.6",
6667
zip_safe=False,
6768
packages=find_packages(exclude=exclude_packages),
6869
install_requires=[

sdk/eventhub/azure-eventhub/CHANGELOG.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# Release History
22

3-
## 5.7.0 (Unreleased)
3+
## 5.7.0 (2022-01-12)
44

5-
This version and all future versions will require Python 3.7+. Python 2.7 and 3.6 are no longer supported.
5+
This version and all future versions will require Python 3.6+. Python 2.7 is no longer supported.
66

77
### Features Added
88

sdk/eventhub/azure-eventhub/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ _Azure SDK Python packages support for Python 2.7 has ended 01 January 2022. For
2323

2424
### Prerequisites
2525

26-
- Python 3.7 or later.
26+
- Python 3.6 or later.
2727
- **Microsoft Azure Subscription:** To use Azure services, including Azure Event Hubs, you'll need a subscription.
2828
If you do not have an existing Azure account, you may sign up for a free trial or use your MSDN subscriber benefits when you [create an account](https://account.windowsazure.com/Home/Index).
2929

0 commit comments

Comments
 (0)