From db995cd1b83ca8e1028a3711ddc4516e4c75da25 Mon Sep 17 00:00:00 2001 From: Adrian Moreno Date: Tue, 2 Jan 2024 08:52:51 +0100 Subject: [PATCH] requirements: Fix build on Python 3.12. Numpy 1.24 build is broken on Python 3.12 [1]. 1.26.2 seems to be the first version that fixes it. [1] https://github.com/numpy/numpy/issues/23808 Signed-off-by: Adrian Moreno --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index 1146cd6..2daabd5 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,3 +1,3 @@ pandas==1.5.3 -numpy==1.24.3 +numpy==1.26.2 pdftotext==2.2.2