From ede1ef3c6aeea1fec8754e13340cc0b06ef9692f Mon Sep 17 00:00:00 2001 From: Xavier-Do Date: Mon, 28 Oct 2024 09:48:28 +0100 Subject: [PATCH] [FIX] runbot: addapt requirements --- requirements.txt | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/requirements.txt b/requirements.txt index 168c35d7..f942d003 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,5 +1,7 @@ -matplotlib==3.5.1 -numpy==1.22.0 # for matplotlib compatibility, 1.21.5 on jammy, but this version is not available on some distributions because of CVE -unidiff -docker==4.1.0; python_version < '3.10' -docker==5.0.3; python_version >= '3.10' # (Jammy) +matplotlib==3.5.1; python_version < '3.12' +matplotlib==3.6.3; python_version >= '3.12' +numpy==1.22.0; python_version < '3.12' # for matplotlib compatibility, 1.21.5 on jammy, but this version is not available on some distributions because of CVE +numpy==1.26.4; python_version >= '3.12' +unidiff==0.5.5; python_version < '3.12' +unidiff==0.7.3; python_version >= '3.12' +docker==5.0.3;