Skip to content

Commit

Permalink
CI fix[k8s-configuration]: deprecate python version 3.6 use in testing (
Browse files Browse the repository at this point in the history
#174)

* CI fix[k8s-configuration]: deprecate python version 3.6 use in testing

* correct the python version for package install

Co-authored-by: Bavneet Singh <[email protected]>
  • Loading branch information
bavneetsingh16 and Bavneet Singh authored Aug 19, 2022
1 parent 79ae67e commit f12d195
Showing 1 changed file with 10 additions and 8 deletions.
18 changes: 10 additions & 8 deletions testing/pipeline/k8s-custom-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,9 +74,9 @@ stages:
vmImage: 'ubuntu-latest'
steps:
- task: UsePythonVersion@0
displayName: 'Use Python 3.6'
displayName: 'Use Python 3.10'
inputs:
versionSpec: 3.6
versionSpec: 3.10
- bash: |
set -ev
Expand Down Expand Up @@ -119,9 +119,9 @@ stages:
vmImage: 'ubuntu-latest'
steps:
- task: UsePythonVersion@0
displayName: 'Use Python 3.7'
displayName: 'Use Python 3.10'
inputs:
versionSpec: 3.7
versionSpec: 3.10
- bash: |
#!/usr/bin/env bash
set -ev
Expand All @@ -136,10 +136,12 @@ stages:
vmImage: 'ubuntu-latest'
strategy:
matrix:
Python36:
python.version: '3.6'
Python38:
python.version: '3.8'
Python39:
python.version: '3.9'
Python310:
python.version: '3.10'
steps:
- task: UsePythonVersion@0
displayName: 'Use Python $(python.version)'
Expand Down Expand Up @@ -173,9 +175,9 @@ stages:
vmImage: 'ubuntu-latest'
steps:
- task: UsePythonVersion@0
displayName: 'Use Python 3.6'
displayName: 'Use Python 3.10'
inputs:
versionSpec: 3.6
versionSpec: 3.10
- bash: |
set -ev
Expand Down

0 comments on commit f12d195

Please sign in to comment.