Skip to content

Commit

Permalink
RND-681 windows build: update pip/wheel/setuptools (#1486)
Browse files Browse the repository at this point in the history
Upgrade all the build tools so that things like cryptography can be
installed via wheel
  • Loading branch information
tehasdf authored May 31, 2023
1 parent 1ed1dc1 commit f027084
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion packaging/windows/win_cli_builder.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,6 @@ function rm_rf {


### Main ###

Write-Host "Deleting existing artifacts"
rm_rf python.zip
rm_rf get-pip.py
Expand Down Expand Up @@ -107,6 +106,9 @@ run $CLI_PATH\python.exe get-pip.py pip==$PIP_VERSION

Write-Host "Installing CLI"
pushd cloudify-cli
run $CLI_PATH\python.exe -m pip install --upgrade pip
run $CLI_PATH\scripts\pip.exe install --upgrade wheel
run $CLI_PATH\scripts\pip.exe install --upgrade setuptools
run $CLI_PATH\scripts\pip.exe install --prefix="$CLI_PATH" -r requirements.txt
run $CLI_PATH\scripts\pip.exe install --prefix="$CLI_PATH" .
popd
Expand Down

0 comments on commit f027084

Please sign in to comment.