From e475ef67e87b6d30c5596b68a28423f8d37a8ab4 Mon Sep 17 00:00:00 2001 From: Timothy Sutton Date: Sun, 7 Nov 2021 18:17:27 -0500 Subject: [PATCH] python 2? --- ci/windows/ci-windows.sh | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/ci/windows/ci-windows.sh b/ci/windows/ci-windows.sh index a2a0f22..a5a6767 100755 --- a/ci/windows/ci-windows.sh +++ b/ci/windows/ci-windows.sh @@ -2,12 +2,14 @@ set -eux -o pipefail -script_dir="$(cd -- "$(dirname -- "${BASH_SOURCE[0]}")" &> /dev/null && pwd )" +PYTHON_VERSION=2.7.18 +script_dir="$(cd -- "$(dirname -- "${BASH_SOURCE[0]}")" &> /dev/null && pwd )" +python="/c/hostedtoolcache/windows/Python/${PYTHON_VERSION}/x64/python" ls '/c/program files' -python -V +$python -V -which python +# which python pip install -r "${script_dir}/requirements.txt"