fix: pin pip version to <21.4 to allow installing pytz (celery) (#3041)

Related to https://github.com/libretime/libretime/issues/2983
This commit is contained in:
Jonas L 2024-06-22 16:33:23 +02:00 committed by GitHub
parent 6958070eec
commit c96f78df9f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -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 setuptools wheel $VENV_DIR/bin/pip install --upgrade "pip<21.4" setuptools wheel
# Install Shared and API client # Install Shared and API client
######################################################################################## ########################################################################################