From c96f78df9f0d1caaccf07728c2c2f766da34dc2d Mon Sep 17 00:00:00 2001 From: Jonas L Date: Sat, 22 Jun 2024 16:33:23 +0200 Subject: [PATCH] fix: pin pip version to <21.4 to allow installing pytz (celery) (#3041) Related to https://github.com/libretime/libretime/issues/2983 --- install | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install b/install index e4793ada2..0464c2a4b 100755 --- a/install +++ b/install @@ -605,7 +605,7 @@ info "creating python3 venv" python3 -m venv "$VENV_DIR" 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 ########################################################################################