Skip to content

Commit

Permalink
Python 3.6 deprecated (Azure#25768)
Browse files Browse the repository at this point in the history
# Description

fixed Azure#25148

Updating service bus python requirement from 3.6 to 3.7
  • Loading branch information
JJHWAN authored and mccoyp committed Sep 22, 2022
1 parent dedff6c commit 05e8cd7
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
2 changes: 2 additions & 0 deletions sdk/servicebus/azure-servicebus/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

## 7.8.1 (Unreleased)

This version and all future versions will require Python 3.7+. Python 3.6 is no longer supported.

### Features Added

### Breaking Changes
Expand Down
2 changes: 1 addition & 1 deletion sdk/servicebus/azure-servicebus/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ pip install azure-servicebus
To use this package, you must have:
* Azure subscription - [Create a free account][azure_sub]
* Azure Service Bus - [Namespace and management credentials][service_bus_namespace]
* Python 3.6 or later - [Install Python][python]
* Python 3.7 or later - [Install Python][python]


If you need an Azure service bus namespace, you can create it via the [Azure Portal][azure_namespace_creation].
Expand Down
2 changes: 1 addition & 1 deletion sdk/servicebus/azure-servicebus/samples/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ Both [sync version](https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/

## Prerequisites

- Python 3.6 or later.
- Python 3.7 or later.
- **Microsoft Azure Subscription:** To use Azure services, including Azure Service Bus, 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://account.windowsazure.com/Home/Index).

Expand Down
3 changes: 1 addition & 2 deletions sdk/servicebus/azure-servicebus/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,14 +48,13 @@
"Development Status :: 5 - Production/Stable",
'Programming Language :: Python',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'License :: OSI Approved :: MIT License',
],
python_requires=">=3.6",
python_requires=">=3.7",
zip_safe=False,
packages=find_packages(exclude=[
'tests',
Expand Down

0 comments on commit 05e8cd7

Please sign in to comment.