From c7431fa0c81f69e269eae39a0a3519aa7045a45f Mon Sep 17 00:00:00 2001 From: Christopher McCarthy Date: Wed, 17 Jul 2024 14:20:53 +0000 Subject: [PATCH] #2758 - Updated azure-benchmark-pipeline.yaml to use python3.10 on the yak pool vm --- .azure/azure-benchmark-pipeline.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.azure/azure-benchmark-pipeline.yaml b/.azure/azure-benchmark-pipeline.yaml index 378187e4..f29a85ef 100644 --- a/.azure/azure-benchmark-pipeline.yaml +++ b/.azure/azure-benchmark-pipeline.yaml @@ -47,15 +47,15 @@ jobs: addToPath: true - script: | - python -m pip install --upgrade pip - pip install -e .[dev,rl] + python3.10 -m pip install --upgrade pip + python3.10 -m pip install -e .[dev,rl] primaite setup displayName: 'Install Dependencies' - script: | set -e cd benchmark - python3 primaite_benchmark.py + python3.10 -m pip primaite_benchmark.py cd .. displayName: 'Run Benchmarking Script'