Skip to content

Commit e2a51e1

Browse files
bavneetsingh16andborja
authored andcommitted
update python version to 3.13 (#10)
1 parent 605bd21 commit e2a51e1

2 files changed

Lines changed: 5 additions & 3 deletions

File tree

testing/pipeline/templates/build-extension.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,9 @@ steps:
2727
condition: and(succeeded(), eq(variables['IS_PRIVATE_BRANCH'], 'False'))
2828
displayName: "Copy Files, Set Variables for k8s-extension"
2929
- task: UsePythonVersion@0
30-
displayName: 'Use Python 3.10'
30+
displayName: 'Use Python 3.13'
3131
inputs:
32-
versionSpec: 3.10
32+
versionSpec: 3.13
3333
- bash: |
3434
set -ev
3535
echo "Building extension ${EXTENSION_NAME}..."

testing/pipeline/templates/run-test.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,9 @@ jobs:
5555
5656
- bash : |
5757
echo "Downloading the kind script"
58-
curl -Lo ./kind https://kind.sigs.k8s.io/dl/v0.23.0/kind-linux-amd64
58+
# Get the latest version tag and download
59+
LATEST_KIND_VERSION=$(curl -s https://api.github.com/repos/kubernetes-sigs/kind/releases/latest | grep '"tag_name":' | sed -E 's/.*"([^"]+)".*/\1/')
60+
curl -Lo ./kind "https://kind.sigs.k8s.io/dl/${LATEST_KIND_VERSION}/kind-linux-amd64"
5961
chmod +x ./kind
6062
./kind create cluster
6163
displayName: "Create and Start the Kind cluster"

0 commit comments

Comments
 (0)