From 5138bb535df254639f550ecb06223871724cf689 Mon Sep 17 00:00:00 2001 From: Alvin Schiller <103769832+AlvinSchiller@users.noreply.github.com> Date: Mon, 19 Feb 2024 23:49:10 +0100 Subject: [PATCH] Hotfix for pyzmq installation (#2272) * dont use prereleases * dont use prereleases (docker) * Bump to version 3.5.2 --- docker/armv7/jukebox.Dockerfile | 2 +- docker/jukebox.Dockerfile | 2 +- installation/routines/setup_jukebox_core.sh | 2 +- src/jukebox/jukebox/version.py | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/docker/armv7/jukebox.Dockerfile b/docker/armv7/jukebox.Dockerfile index d81c447de..a242f5faf 100644 --- a/docker/armv7/jukebox.Dockerfile +++ b/docker/armv7/jukebox.Dockerfile @@ -65,7 +65,7 @@ WORKDIR ${HOME} COPY --chown=${USER}:${USER} . ${INSTALLATION_PATH}/ RUN pip install --no-cache-dir -r ${INSTALLATION_PATH}/requirements.txt -RUN pip install --no-cache-dir --pre --no-binary pyzmq pyzmq +RUN pip install --no-cache-dir --no-binary pyzmq pyzmq EXPOSE 5555 5556 diff --git a/docker/jukebox.Dockerfile b/docker/jukebox.Dockerfile index e7a7a45b1..0936f5d46 100644 --- a/docker/jukebox.Dockerfile +++ b/docker/jukebox.Dockerfile @@ -50,7 +50,7 @@ RUN [ "$(uname -m)" = "aarch64" ] && ARCH="arm64" || ARCH="$(uname -m)"; \ rm -f libzmq.tar.gz; RUN export ZMQ_PREFIX=${PREFIX} && export ZMQ_DRAFT_API=1 -RUN pip install -v --no-binary pyzmq --pre pyzmq +RUN pip install -v --no-binary pyzmq pyzmq EXPOSE 5555 5556 diff --git a/installation/routines/setup_jukebox_core.sh b/installation/routines/setup_jukebox_core.sh index d9c06b937..cb85198be 100644 --- a/installation/routines/setup_jukebox_core.sh +++ b/installation/routines/setup_jukebox_core.sh @@ -86,7 +86,7 @@ _jukebox_core_build_and_install_pyzmq() { fi ZMQ_PREFIX="${JUKEBOX_ZMQ_PREFIX}" ZMQ_DRAFT_API=1 \ - pip install -v --no-binary pyzmq --pre pyzmq + pip install -v --no-binary pyzmq pyzmq else print_lc " Skipping. pyzmq already installed" fi diff --git a/src/jukebox/jukebox/version.py b/src/jukebox/jukebox/version.py index dae1bc8c0..b97391207 100644 --- a/src/jukebox/jukebox/version.py +++ b/src/jukebox/jukebox/version.py @@ -1,7 +1,7 @@ VERSION_MAJOR = 3 VERSION_MINOR = 5 -VERSION_PATCH = 1 +VERSION_PATCH = 2 VERSION_EXTRA = "" # build a version string in compliance with the SemVer specification