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