From 800cab6019d5f73b491d6d26e48a0be05047aba2 Mon Sep 17 00:00:00 2001 From: Jonas Bardino Date: Thu, 16 Jul 2026 13:10:18 +0200 Subject: [PATCH] Switch to actively maintained fork of jsonrpclib to match https://github.com/ucphhpc/migrid-sync/pull/596 once merged. --- Dockerfile.rocky9 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile.rocky9 b/Dockerfile.rocky9 index aa437d14..6997b13b 100755 --- a/Dockerfile.rocky9 +++ b/Dockerfile.rocky9 @@ -759,9 +759,9 @@ USER root # Prepare py dependencies not in dnf or just outdated there -# NOTE: use jsonrpclib and pysendfile from pip for py3 here +# NOTE: use maintained jsonrpclib fork and pysendfile from pip for py3 here # and iso3166 for smart country selection -RUN pip3 install --no-cache-dir 'jsonrpclib<0.2' pysendfile iso3166 +RUN pip3 install --no-cache-dir jsonrpclib-pelix pysendfile iso3166 # NOTE: recent paramiko is required for modern host key algo RUN if [ "${ENABLE_SFTP}" = "True" -o "${ENABLE_SFTP_SUBSYS}" = "True" ]; then \