From 3ea95d1cac8178f8fe61ff9c09afceaf5215e7de Mon Sep 17 00:00:00 2001 From: cloudix_mcp_server Date: Fri, 12 Jun 2026 08:30:57 -0400 Subject: [PATCH] fix: unpin all packages in requirements.txt for system compatibility Debian Trixie ships many Python packages (cryptography 43.0.0, cffi, etc.) via apt that conflict with SABnzbd's pinned versions (cryptography==39.0.0, cffi==1.15.1). Pinned deps fail to install because pip can't uninstall the system packages (no RECORD file). Relax all pins so pip uses compatible versions already present. --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 0ee0c11..01d0638 100644 --- a/Dockerfile +++ b/Dockerfile @@ -33,7 +33,7 @@ RUN export SABNZBD_VERSION=3.7.2 PAR2CMDLINE_VERSION=v0.6.14-mt1 && \ curl -SL -o /tmp/sabnzbd.tar.gz https://github.com/sabnzbd/sabnzbd/releases/download/${SABNZBD_VERSION}/SABnzbd-${SABNZBD_VERSION}-src.tar.gz && \ tar xzf /tmp/sabnzbd.tar.gz && \ mv SABnzbd-* sabnzbd && \ - sed -i 's/^cffi==.*/cffi/' /sabnzbd/requirements.txt && \ + sed -i 's/==.*//' /sabnzbd/requirements.txt && \ pip3 install -r /sabnzbd/requirements.txt && \ chown -R sabnzbd: sabnzbd && \ curl -o /tmp/par2cmdline-mt.tar.gz https://codeload.github.com/jkansanen/par2cmdline-mt/tar.gz/${PAR2CMDLINE_VERSION} && \