From 580add7a2441b8a03072d50b1ac2987a636d0acc Mon Sep 17 00:00:00 2001 From: twald Date: Wed, 22 Jan 2025 13:24:45 +0200 Subject: [PATCH] fix --- .github/workflows/pr-test.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/pr-test.yml b/.github/workflows/pr-test.yml index ffad208d6c9..4492412530d 100644 --- a/.github/workflows/pr-test.yml +++ b/.github/workflows/pr-test.yml @@ -88,7 +88,7 @@ jobs: github-token: ${{ secrets.GITHUB_TOKEN }} - name: Install pipenv run: | - if [[ "${{ matrix.python }}" = "3.12" ]] || [[ "${{ matrix.python }}" = "3.13" ]]; then + if [[ "${{ matrix.python }}" = "3.12" ] || [ "${{ matrix.python }}" = "3.13" ]]; then # needed for numpy python -m pip install --no-cache-dir --upgrade pipenv==2024.4.0 else @@ -100,7 +100,7 @@ jobs: pipenv --rm || true pipenv --python ${{ matrix.python }} - if [[ "${{ matrix.python }}" = "3.12" ]] || [[ "${{ matrix.python }}" = "3.13" ]]; then + if [[ "${{ matrix.python }}" = "3.12" ] || [ "${{ matrix.python }}" = "3.13" ]]; then echo "patching >3.12 issues" pipenv install setuptools # needed for numpy