From faa0467e3a01d82cc3d1ce8521f46aa3d6accfa3 Mon Sep 17 00:00:00 2001 From: Robin Dunn Date: Fri, 9 Oct 2020 10:45:34 -0700 Subject: [PATCH] add some code to discover what versions of Python are available on the build agent --- .azure/ci-windows-job.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.azure/ci-windows-job.yml b/.azure/ci-windows-job.yml index 89b66307..479bf68f 100644 --- a/.azure/ci-windows-job.yml +++ b/.azure/ci-windows-job.yml @@ -49,6 +49,8 @@ jobs: - bash: | which python python -c "import sys; print(sys.version); print(sys.prefix)" + # check what Pythons are available + ls -al /c/hostedtoolcache/windows/Python displayName: 'Check Python' - bash: |