Skip to content

Commit

Permalink
[FIX] runbot: pin matplotlib 1.22
Browse files Browse the repository at this point in the history
See 66a1018#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.
  • Loading branch information
Xavier-Do committed Jul 25, 2024
1 parent 66a1018 commit 9d62213
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -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)

0 comments on commit 9d62213

Please sign in to comment.