From fdcc944310207596b2a7ad9c2452fe0070e5049c Mon Sep 17 00:00:00 2001 From: Maxime N Date: Sat, 28 Sep 2024 19:18:38 +0200 Subject: [PATCH] #7: Restore conda pip install package --- ci/setup_conda.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/ci/setup_conda.sh b/ci/setup_conda.sh index 467af5bc5..abb528457 100644 --- a/ci/setup_conda.sh +++ b/ci/setup_conda.sh @@ -41,6 +41,10 @@ do . $CONDA_PATH/etc/profile.d/conda.sh && conda activate py${python_version} echo "Python version: $(python --version)" + pip install PyYAML + pip install Brotli + pip install schema + pip install nanobind conda deactivate echo "::endgroup::" done