Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
jdtuck committed Dec 22, 2023
1 parent 264c0a6 commit 5070dc7
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,15 +20,14 @@ jobs:
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
- if: runner.os == 'Windows'
- if: runner.os == 'Windows'
run: |
python -m pip install --upgrade pip
python -m pip install mkl-devel
- if: runner.os == 'Linux'
run: |
python -m pip install --upgrade pip
sudo apt-get install -y libopenblas-dev
- if: runner.os == 'Linux'
run: |
python -m pip install --upgrade pip
sudo apt-get install -y libopenblas-dev
- name: Install python dependencies
run: |
python -m pip install flake8 pytest pytest-runner coverage
Expand Down

0 comments on commit 5070dc7

Please sign in to comment.