From 9a177396ca492b1c1794aaf42af6179a9a1d9de4 Mon Sep 17 00:00:00 2001 From: Xinacod Date: Sun, 22 Feb 2026 11:41:48 +0100 Subject: [PATCH] Pin dependency versions and add missing pypdf Unpinned dependencies allow different machines to install different package versions, which leads to inconsistent behaviour and hard-to- reproduce bugs. Pinned each existing dependency to the version currently used in the project and added pypdf, which was missing from the file despite being required for PDF processing. Fixes #6. Fixes #18. --- requirements.txt | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/requirements.txt b/requirements.txt index acd1a1a..4dd5f58 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,5 +1,5 @@ -requests -pdfrw -flask -commonforms - +requests==2.32.5 +pdfrw==0.4 +flask==3.1.3 +commonforms==0.2.1 +pypdf==6.7.1