fix: unpin cffi from requirements.txt to use system python3-cffi
Docker Build and Push / lint (pull_request) Successful in 6s
Docker Build and Push / build (pull_request) Failing after 1m26s
Docker Build and Push / test (pull_request) Has been skipped
Docker Build and Push / push (pull_request) Has been skipped

SABnzbd 3.7.2 pins cffi==1.15.1 which is incompatible with Python 3.13
(removed internal API _PyErr_WriteUnraisableMsg). Relax the pin so pip
uses the system-installed python3-cffi (Debian Trixie's version).
This commit is contained in:
2026-06-12 08:28:22 -04:00
parent 8572d2e071
commit 5034429022
+1
View File
@@ -33,6 +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 && \
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} && \