diff --git a/.circleci/windows/dependencies.config b/.circleci/windows/dependencies.config index f58c032a..1b5a0b1d 100644 --- a/.circleci/windows/dependencies.config +++ b/.circleci/windows/dependencies.config @@ -1,6 +1,6 @@ - + diff --git a/.circleci/windows/prepare.bat b/.circleci/windows/prepare.bat index acc801fe..9f2a612b 100644 --- a/.circleci/windows/prepare.bat +++ b/.circleci/windows/prepare.bat @@ -26,12 +26,12 @@ REM install dependencies needed for build choco install .circleci\windows\dependencies.config --limit-output --yes --no-progress REM create a symlink python3.exe and make it available in %PATH% -mklink C:\Python37\python3.exe C:\Python37\python.exe +mklink C:\Python39\python3.exe C:\Python39\python.exe SET PATH=%PATH%;C:\Python39 REM install runtime dependency for the build -C:\Python37\python.exe -m pip install wheel +C:\Python39\python.exe -m pip install wheel REM permanently set variables for Bazel build SETX BAZEL_SH "C:\Program Files\Git\usr\bin\bash.exe" -SETX BAZEL_PYTHON C:\Python37\python.exe +SETX BAZEL_PYTHON C:\Python39\python.exe