Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[metricsadvisor] drop support for 3.6 (Azure#25168) #25814

Merged
merged 6 commits into from
Aug 25, 2022
Merged
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion sdk/metricsadvisor/azure-ai-metricsadvisor/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
### Bugs Fixed

### Other Changes
- Python 2.7 is no longer supported. Please use Python version 3.6 or later.
- This version and all future versions will require Python 3.7+. Python 2.7 and 3.6 no longer supported.
wonder6845 marked this conversation as resolved.
Show resolved Hide resolved

## 1.0.0 (2021-07-06)

Expand Down
5 changes: 3 additions & 2 deletions sdk/metricsadvisor/azure-ai-metricsadvisor/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@ Metrics Advisor is a scalable real-time time series monitoring, alerting, and ro

## _Disclaimer_

_Azure SDK Python packages support for Python 2.7 has ended 01 January 2022. For more information and questions, please refer to https://github.com/Azure/azure-sdk-for-python/issues/20691_
kristapratico marked this conversation as resolved.
Show resolved Hide resolved
_Python 3.7 or later is required to use this package. For more details, please refer to [Azure SDK for Python version support policy](https://github.com/Azure/azure-sdk-for-python/wiki/Azure-SDKs-Python-version-support-policy)._
kristapratico marked this conversation as resolved.
Show resolved Hide resolved


## Getting started

Expand All @@ -24,7 +25,7 @@ pip install azure-ai-metricsadvisor

### Prerequisites

* Python 3.6 or later is required to use this package.
* Python 3.7 or later is required to use this package.
* You need an [Azure subscription][azure_sub], and a [Metrics Advisor serivce][ma_service] to use this package.

### Authenticate the client
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ These code samples show common scenario operations with the Azure Metrics Adviso

## Prerequisites

* Python 3.6 or later is required to use this package
* Python 3.7 or later is required to use this package
* You must have an [Azure subscription][azure_subscription] and an
[Azure Metrics Advisor account][portal_metrics_advisor_account] to run these samples.

Expand Down
3 changes: 1 addition & 2 deletions sdk/metricsadvisor/azure-ai-metricsadvisor/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,6 @@
'Programming Language :: Python',
"Programming Language :: Python :: 3 :: Only",
'Programming Language :: Python :: 3',
"Programming Language :: Python :: 3.6",
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
Expand All @@ -63,7 +62,7 @@
'azure',
'azure.ai',
]),
python_requires=">=3.6",
python_requires=">=3.7",
install_requires=[
"azure-core<2.0.0,>=1.23.0",
"msrest>=0.6.21",
Expand Down