From 57ad771e2afb9198db087e1c442409f8bb046e19 Mon Sep 17 00:00:00 2001 From: Bavneet Singh Date: Tue, 3 Feb 2026 15:10:53 -0800 Subject: [PATCH 1/2] update broken test in CI pipeline --- testing/pipeline/k8s-custom-pipelines.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/testing/pipeline/k8s-custom-pipelines.yml b/testing/pipeline/k8s-custom-pipelines.yml index e08ac5b9665..42ca580be84 100644 --- a/testing/pipeline/k8s-custom-pipelines.yml +++ b/testing/pipeline/k8s-custom-pipelines.yml @@ -134,14 +134,14 @@ stages: vmImage: 'ubuntu-latest' strategy: matrix: - Python39: - python.version: '3.9' Python310: python.version: '3.10' Python311: python.version: '3.11' Python312: python.version: '3.12' + Python313: + python.version: '3.13' steps: - task: UsePythonVersion@0 displayName: 'Use Python $(python.version)' From a8bcf9945607eba6a7f2729bf9ae23253806ae44 Mon Sep 17 00:00:00 2001 From: Bavneet Singh Date: Tue, 3 Feb 2026 16:53:27 -0800 Subject: [PATCH 2/2] fix extension index test --- testing/pipeline/k8s-custom-pipelines.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/testing/pipeline/k8s-custom-pipelines.yml b/testing/pipeline/k8s-custom-pipelines.yml index 42ca580be84..d24777fae80 100644 --- a/testing/pipeline/k8s-custom-pipelines.yml +++ b/testing/pipeline/k8s-custom-pipelines.yml @@ -117,13 +117,13 @@ stages: vmImage: 'ubuntu-latest' steps: - task: UsePythonVersion@0 - displayName: 'Use Python 3.10' + displayName: 'Use Python 3.13' inputs: - versionSpec: 3.10 + versionSpec: 3.13 - bash: | #!/usr/bin/env bash set -ev - pip install wheel==0.30.0 requests packaging + pip install wheel==0.30.0 requests packaging setuptools export CI="ADO" python ./scripts/ci/test_index.py -v displayName: "Verify Extensions Index"