From 948471a180487f564f12fce8e7b9737f7d9822fa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christoph=20Kl=C3=B6ffel?= <145490354+christophkloeffel@users.noreply.github.com> Date: Tue, 15 Oct 2024 11:30:35 +0200 Subject: [PATCH] fixes python3.8 disabled error (#99) fixes 3.8 disabled error --- .github/workflows/ci.yml | 11 ++--------- 1 file changed, 2 insertions(+), 9 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 71714f66..25b387bb 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -40,20 +40,13 @@ jobs: steps: - uses: actions/checkout@v4 - name: Install python version - if: matrix.os != 'macos-14' || matrix.py-version == '3.11' || matrix.py-version == '3.12' uses: actions/setup-python@v5 with: python-version: ${{ matrix.py-version }} - - name: Install python (3.8, 3.9, 3.10) on macOS-arm64 - if: matrix.os == 'macos-14' && (matrix.py-version == '3.8' || matrix.py-version == '3.9' || matrix.py-version == '3.10') - run: | - brew install python@${{ matrix.py-version }} - echo "${{ matrix.brew }}/opt/python@${{ matrix.py-version }}/libexec/bin" >> $GITHUB_PATH - python${{ matrix.py-version }} -m ensurepip - name: Install dependencies run: | - python -m pip install --upgrade pip - python -m pip install -r requirements_dev.txt + python3 -m pip install --upgrade pip + python3 -m pip install -r requirements_dev.txt - name: Install gnu make on macos if: startsWith(matrix.os, 'macos') run: |