From 35e8cacab02b856dc852b3e49540cac9b9da74ab Mon Sep 17 00:00:00 2001 From: jmcarcell Date: Wed, 20 Nov 2024 09:14:26 +0100 Subject: [PATCH] Add a few comments --- packages/py-pyhepmc/package.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/packages/py-pyhepmc/package.py b/packages/py-pyhepmc/package.py index 11f502ba..72895dfb 100644 --- a/packages/py-pyhepmc/package.py +++ b/packages/py-pyhepmc/package.py @@ -28,6 +28,8 @@ class PyPyhepmc(PythonPackage): depends_on("hepmc3", type=("build", "run")) depends_on("py-numpy@1.21:", type=("build", "run")) depends_on("py-pybind11", type=("build", "run")) + # In v2.14.0 a dot command is run at import time to check which formats are supported + # The system dot on Alma 9 does not support any formats and importing fails so graphviz is required depends_on("graphviz", type="run") @run_before("install")