From 52055c89e57cacfa04a4abcf9c2502dc0c70dcc1 Mon Sep 17 00:00:00 2001 From: Levente Meszaros Date: Mon, 14 Oct 2024 11:51:38 +0200 Subject: [PATCH] .github: Fixed installing python packages in Github worklfows. The latest ubuntu doesn't allow installing python packages with pip by default. --- .github/workflows/chart-tests.yml | 2 +- .github/workflows/statistical-tests.yml | 2 +- .github/workflows/validation-tests.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/chart-tests.yml b/.github/workflows/chart-tests.yml index 1cedaa0e7cc..c4b3070eaab 100644 --- a/.github/workflows/chart-tests.yml +++ b/.github/workflows/chart-tests.yml @@ -49,7 +49,7 @@ jobs: echo "::endgroup::" echo "::group::Installing Python packages" - python3 -m pip install --upgrade matplotlib numpy pandas seaborn scipy ipython posix-ipc cppyy sewar dask distributed optimparallel + python3 -m pip install --upgrade matplotlib numpy pandas seaborn scipy ipython posix-ipc cppyy sewar dask distributed optimparallel --break-system-packages echo "::endgroup::" source $GITHUB_WORKSPACE/inet/_scripts/github/build-inet.sh diff --git a/.github/workflows/statistical-tests.yml b/.github/workflows/statistical-tests.yml index ca91908ac59..887e350d67a 100644 --- a/.github/workflows/statistical-tests.yml +++ b/.github/workflows/statistical-tests.yml @@ -49,7 +49,7 @@ jobs: echo "::endgroup::" echo "::group::Installing Python packages" - python3 -m pip install --upgrade matplotlib numpy pandas seaborn scipy ipython posix-ipc cppyy sewar dask distributed optimparallel + python3 -m pip install --upgrade matplotlib numpy pandas seaborn scipy ipython posix-ipc cppyy sewar dask distributed optimparallel --break-system-packages echo "::endgroup::" source $GITHUB_WORKSPACE/inet/_scripts/github/build-inet.sh diff --git a/.github/workflows/validation-tests.yml b/.github/workflows/validation-tests.yml index bdc0640348e..f63d2b7dcad 100644 --- a/.github/workflows/validation-tests.yml +++ b/.github/workflows/validation-tests.yml @@ -49,7 +49,7 @@ jobs: echo "::endgroup::" echo "::group::Installing Python packages" - python3 -m pip install --upgrade matplotlib numpy pandas seaborn scipy ipython posix-ipc cppyy sewar dask distributed optimparallel + python3 -m pip install --upgrade matplotlib numpy pandas seaborn scipy ipython posix-ipc cppyy sewar dask distributed optimparallel --break-system-packages echo "::endgroup::" source $GITHUB_WORKSPACE/inet/_scripts/github/build-inet.sh