Skip to content

Commit

Permalink
explicit install of libopenblas
Browse files Browse the repository at this point in the history
  • Loading branch information
iulusoy committed Oct 4, 2024
1 parent 599bdc0 commit a9215dd
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,17 @@ jobs:
if: matrix.os == 'macos-latest'
run: |
brew install ffmpeg
brew install openblas
- name: install openblas on linux
if: matrix.os == 'ubuntu-22.04'
run: |
sudo apt-get install libopenblas-dev
- name: install openblas on windows:
if: matrix.os == 'windows-latest'
run: |
choco install openblas
- name: Install dependencies
run: |
apt install libopenblas-dev # for scipy
pip install -e .
- name: Run pytest test_colors
run: |
Expand Down

0 comments on commit a9215dd

Please sign in to comment.