Skip to content

Commit

Permalink
Ignore pip upgrade failure to allow windows builds to run
Browse files Browse the repository at this point in the history
  • Loading branch information
bitwiseman committed Jun 20, 2022
1 parent 145ffa0 commit b7ff83b
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions Makefile
Expand Up @@ -144,8 +144,9 @@ $(BUILD_DIR)/virtualenv: | $(BUILD_DIR)
virtualenv --version || pip install virtualenv
virtualenv build/python-dev
virtualenv build/python-rel
$(SCRIPT_DIR)/python-dev pip install pip --upgrade
$(SCRIPT_DIR)/python-rel pip install pip --upgrade
# ignore pip upgrade failure to allow windows builds to continue
$(SCRIPT_DIR)/python-dev pip install pip --upgrade || exit 0
$(SCRIPT_DIR)/python-rel pip install pip --upgrade || exit 0
$(SCRIPT_DIR)/python-dev3 pip install black
@touch $(BUILD_DIR)/virtualenv

Expand Down

0 comments on commit b7ff83b

Please sign in to comment.