From c21b58e2635a2867aa27f2fc61ad6f1ba83405cf Mon Sep 17 00:00:00 2001 From: fanquake Date: Wed, 3 Jun 2026 09:54:34 +0100 Subject: [PATCH] ci: use pyzmq over zmq zmq seems to be an alias for pyzmq, and the project page, https://pypi.org/project/zmq/, states "You are probably looking for pyzmq.". So switch to pyzmq, which is what we document, and use in all other jobs. --- ci/test/00_setup_env_mac_native.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci/test/00_setup_env_mac_native.sh b/ci/test/00_setup_env_mac_native.sh index a9b4d5c8c2e..d59c5ae65c5 100755 --- a/ci/test/00_setup_env_mac_native.sh +++ b/ci/test/00_setup_env_mac_native.sh @@ -7,7 +7,7 @@ export LC_ALL=C.UTF-8 export CONTAINER_NAME="ci_mac_native" # macos does not use a container, but the env var is needed for logging -export PIP_PACKAGES="--break-system-packages pycapnp zmq" +export PIP_PACKAGES="--break-system-packages pycapnp pyzmq" export GOAL="install deploy" export CMAKE_GENERATOR="Ninja" export CI_OS_NAME="macos"