Skip to content

Commit

Permalink
Hotfix for pyzmq installation (#2272)
Browse files Browse the repository at this point in the history
* dont use prereleases

* dont use prereleases (docker)

* Bump to version 3.5.2
  • Loading branch information
AlvinSchiller committed Feb 19, 2024
1 parent cbaf33c commit 5138bb5
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion docker/armv7/jukebox.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion docker/jukebox.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion installation/routines/setup_jukebox_core.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion src/jukebox/jukebox/version.py
Original file line number Diff line number Diff line change
@@ -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
Expand Down

0 comments on commit 5138bb5

Please sign in to comment.