Skip to content

Commit 42a5297

Browse files
Update choco dependencies to use python39 package (#825)
## Usage and product changes Choco is `unable to resolve dependency 'python3 (= 3.7.4)'.` We upgrade to 3.9.
1 parent ee47368 commit 42a5297

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<packages>
33
<package id="bazelisk" version="1.17.0"/>
4-
<package id="python" version="3.7.4"/>
4+
<package id="python39" version="3.9.13"/>
55
<package id="openjdk11" version="11.0.9.11"/>
66
</packages>

.circleci/windows/prepare.bat

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,12 +26,12 @@ REM install dependencies needed for build
2626
choco install .circleci\windows\dependencies.config --limit-output --yes --no-progress
2727

2828
REM create a symlink python3.exe and make it available in %PATH%
29-
mklink C:\Python37\python3.exe C:\Python37\python.exe
29+
mklink C:\Python39\python3.exe C:\Python39\python.exe
3030
SET PATH=%PATH%;C:\Python39
3131

3232
REM install runtime dependency for the build
33-
C:\Python37\python.exe -m pip install wheel
33+
C:\Python39\python.exe -m pip install wheel
3434

3535
REM permanently set variables for Bazel build
3636
SETX BAZEL_SH "C:\Program Files\Git\usr\bin\bash.exe"
37-
SETX BAZEL_PYTHON C:\Python37\python.exe
37+
SETX BAZEL_PYTHON C:\Python39\python.exe

0 commit comments

Comments
 (0)