fix: pin pip version to <24.1 to allow installing pytz (celery) (#3043)
Related to https://github.com/libretime/libretime/issues/2983
This commit is contained in:
parent
4e0953d513
commit
646bc81724
2
install
2
install
|
@ -605,7 +605,7 @@ info "creating python3 venv"
|
||||||
python3 -m venv "$VENV_DIR"
|
python3 -m venv "$VENV_DIR"
|
||||||
|
|
||||||
info "upgrading python3 tools"
|
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
|
# Install Shared and API client
|
||||||
########################################################################################
|
########################################################################################
|
||||||
|
|
|
@ -12,7 +12,7 @@ VENV = .venv
|
||||||
install: $(VENV)
|
install: $(VENV)
|
||||||
$(VENV):
|
$(VENV):
|
||||||
python3 -m 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 \
|
$(VENV)/bin/pip install --prefer-binary \
|
||||||
--requirement ../tools/python-requirements.txt \
|
--requirement ../tools/python-requirements.txt \
|
||||||
$(PIP_INSTALL)
|
$(PIP_INSTALL)
|
||||||
|
|
Loading…
Reference in New Issue