From a30e33461b3afa4be546144e50bba1ca21098f9b Mon Sep 17 00:00:00 2001 From: christophkloeffel Date: Fri, 4 Oct 2024 14:48:01 +0200 Subject: [PATCH] fixes externally-managed-environment error --- .github/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3d8fcc7..ece19af 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -18,9 +18,9 @@ jobs: - uses: actions/checkout@v4 - name: Install dependencies run: | - python3 -m pip install --upgrade pip - python3 -m pip install pylint==3.2.4 pycodestyle==2.12.0 - python3 -m pip install --no-deps bmw-lobster-core bmw-lobster-tool-trlc + python3 -m pip install --upgrade pip --break-system-packages + python3 -m pip install pylint==3.2.4 pycodestyle==2.12.0 --break-system-packages + python3 -m pip install --no-deps bmw-lobster-core bmw-lobster-tool-trlc --break-system-packages - name: Executing linter run: | make lint