From 9d62213abfda395b452f3ac7d3aac8eb1124436b Mon Sep 17 00:00:00 2001 From: Xavier-Do Date: Thu, 25 Jul 2024 08:23:54 +0200 Subject: [PATCH] [FIX] runbot: pin matplotlib 1.22 See https://github.com/odoo/runbot/commit/66a1018918316db765f86d7d17a951d798c09ca6#r144596695 Looks like 1.21.5 is not available on some distribution 1.22 should be available on most system. Note that the prefered solution would be to install matplotlib using apt install python3-matplotlib as stated in the readme. --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index d09327c14..168c35d7f 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,5 +1,5 @@ matplotlib==3.5.1 -numpy==1.21.5 # for matplotlib compatibility +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)