Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
tjwald committed Jan 22, 2025
1 parent 580add7 commit 5e107c0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/pr-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down

0 comments on commit 5e107c0

Please sign in to comment.