Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
4 changes: 2 additions & 2 deletions scripts/auto_release/PythonSdkLiveTest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ variables:
- group: Azure SDK Auto Release Pipeline Secrets

jobs:
- job: LiveTestPython310
displayName: Live Test Python 3.10
- job: LiveTestPython
displayName: Live Test Python
timeoutInMinutes: 1500
strategy:
maxParallel: 5
Expand Down
4 changes: 2 additions & 2 deletions scripts/issue_helper/issue_helper.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ variables:

jobs:
- job: IssueHelper
displayName: IssueHelper Python 3.8
displayName: IssueHelper Python
timeoutInMinutes: 30
strategy:
maxParallel: 3
Expand All @@ -36,7 +36,7 @@ jobs:
steps:
- task: UsePythonVersion@0
inputs:
versionSpec: '3.8'
versionSpec: '3.10'
addToPath: true
architecture: 'x64'
- bash: |
Expand Down
4 changes: 2 additions & 2 deletions scripts/release_helper/release_helper.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ variables:

jobs:
- job: ReleaseHelper
displayName: ReleaseHelper Python 3.8
displayName: ReleaseHelper Python
timeoutInMinutes: 30
strategy:
maxParallel: 1
Expand All @@ -42,7 +42,7 @@ jobs:
steps:
- task: UsePythonVersion@0
inputs:
versionSpec: '3.8'
versionSpec: '3.10'
addToPath: true
architecture: 'x64'
- bash: |
Expand Down
4 changes: 2 additions & 2 deletions scripts/release_sdk_status/release_sdk_status.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ variables:

jobs:
- job: ReleaseSdkStatus
displayName: ReleaseSdkStatus Python 3.8
displayName: ReleaseSdkStatus Python
timeoutInMinutes: 300
strategy:
maxParallel: 1
Expand All @@ -39,7 +39,7 @@ jobs:
steps:
- task: UsePythonVersion@0
inputs:
versionSpec: '3.8'
versionSpec: '3.10'
addToPath: true
architecture: 'x64'
- bash: |
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Microsoft Azure SDK for Python

This is the Microsoft Azure {{package_pprint_name}} Client Library.
This package has been tested with Python 3.8+.
This package has been tested with Python 3.9+.
For a more complete view of Azure libraries, see the [azure sdk python release](https://aka.ms/azsdk/python/all).

## _Disclaimer_
Expand All @@ -12,7 +12,7 @@ _Azure SDK Python packages support for Python 2.7 has ended 01 January 2022. For

### Prerequisites

- Python 3.8+ is required to use this package.
- Python 3.9+ is required to use this package.
- [Azure subscription](https://azure.microsoft.com/free/)

### Install the package
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,6 @@
"Programming Language :: Python",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
Expand Down Expand Up @@ -91,5 +90,5 @@
"azure-mgmt-core>=1.3.2",
{%- endif %}
],
python_requires=">=3.8",
python_requires=">=3.9",
)
Loading