Skip to content

Commit

Permalink
Attempt installation of pinned bumpy scipy versions
Browse files Browse the repository at this point in the history
  • Loading branch information
darrylong authored Jun 25, 2024
1 parent d7d5e89 commit 1ec670a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,10 +67,11 @@ jobs:

- name: Install pinned dependencies - numpy ${{ matrix.versions.numpy }}, scipy ${{ matrix.versions.scipy }}
run: |
python${{ matrix.versions.python }} -m pip install numpy==${{ matrix.versions.numpy }} scipy==${{ matrix.versions.scipy }}
python${{ matrix.versions.python }} setup.py build_ext -j${{ steps.cpu-cores.outputs.count }}
python${{ matrix.versions.python }} -m pip install -e .[tests]
python${{ matrix.versions.python }} -m pip uninstall numpy scipy
python${{ matrix.versions.python }} -m pip install numpy==${{ matrix.versions.numpy }} scipy==${{ matrix.versions.scipy }}
python${{ matrix.versions.python }} setup.py build_ext -j${{ steps.cpu-cores.outputs.count }}
- name: Display numpy version
run: python${{ matrix.versions.python }} -c "import numpy; print(numpy.__version__)"
Expand Down

0 comments on commit 1ec670a

Please sign in to comment.