From 083da1363471a9dbfa7f309e36beb1610937645e Mon Sep 17 00:00:00 2001 From: v-soujanya <101401302+v-soujanya@users.noreply.github.com> Date: Mon, 20 Apr 2026 16:37:07 +0530 Subject: [PATCH] Update Python package installation steps in CI setup --- .azure-pipelines/templates/setup-ci-machine.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.azure-pipelines/templates/setup-ci-machine.yml b/.azure-pipelines/templates/setup-ci-machine.yml index 68c86d72..05bc1bb8 100644 --- a/.azure-pipelines/templates/setup-ci-machine.yml +++ b/.azure-pipelines/templates/setup-ci-machine.yml @@ -1,9 +1,9 @@ steps: - script: python -m pip install --upgrade pip displayName: 'Upgrade pip' -- script: pip install wheel - displayName: 'Install Wheel' -- script: "pip install 'pytest>=7.0.0'" +- script: pip install wheel==0.30.0 setuptools==70.0.0 + displayName: 'Install Wheel & Setuptools' +- script: "pip install pytest==6.2.5" displayName: 'Install pytest' - script: pip install coverage displayName: 'Install coverage'