8000
Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion install
Original file line number Diff line number Diff line change
Expand Up @@ -605,7 +605,7 @@ info "creating python3 venv"
python3 -m venv "$VENV_DIR"

info "upgrading python3 tools"
$VENV_DIR/bin/pip install --upgrade "pip<21.4" setuptools wheel
$VENV_DIR/bin/pip install --upgrade "pip<24.1" setuptools wheel

# Install Shared and API client
########################################################################################
Expand Down
2 changes: 1 addition & 1 deletion tools/python.mk
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ VENV = .venv
install: $(VENV)
$(VENV):
python3 -m venv $(VENV)
$(VENV)/bin/pip install --upgrade pip setuptools wheel
$(VENV)/bin/pip install --upgrade "pip<24.1" setuptools wheel
$(VENV)/bin/pip install --prefer-binary \
--requirement ../tools/python-requirements.txt \
$(PIP_INSTALL)
Expand Down
0