Skip to content

Commit f027084

Browse files
authored
RND-681 windows build: update pip/wheel/setuptools (#1486)
Upgrade all the build tools so that things like cryptography can be installed via wheel
1 parent 1ed1dc1 commit f027084

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

packaging/windows/win_cli_builder.ps1

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,6 @@ function rm_rf {
3636

3737

3838
### Main ###
39-
4039
Write-Host "Deleting existing artifacts"
4140
rm_rf python.zip
4241
rm_rf get-pip.py
@@ -107,6 +106,9 @@ run $CLI_PATH\python.exe get-pip.py pip==$PIP_VERSION
107106

108107
Write-Host "Installing CLI"
109108
pushd cloudify-cli
109+
run $CLI_PATH\python.exe -m pip install --upgrade pip
110+
run $CLI_PATH\scripts\pip.exe install --upgrade wheel
111+
run $CLI_PATH\scripts\pip.exe install --upgrade setuptools
110112
run $CLI_PATH\scripts\pip.exe install --prefix="$CLI_PATH" -r requirements.txt
111113
run $CLI_PATH\scripts\pip.exe install --prefix="$CLI_PATH" .
112114
popd

0 commit comments

Comments
 (0)