Skip to content

Commit

Permalink
try to get eigen installed on macos workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
dmeliza committed Jan 12, 2024
1 parent 550770c commit d398c5d
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions .github/workflows/python_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,13 @@ jobs:
strategy:
fail-fast: false
matrix:
platform: [windows-latest, macos-latest, ubuntu-latest]
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
platform: [macos-latest, ubuntu-latest]
python-version: ["3.7"] #, "3.8", "3.9", "3.10", "3.11"]
include:
- os: ubuntu-latest
INSTALL_DEPS: sudo apt-get install libeigen3-dev
- os: macos-latest
INSTALL_DEPS: brew install eigen
runs-on: ${{ matrix.platform }}

steps:
Expand All @@ -30,7 +35,7 @@ jobs:
with:
python-version: ${{ matrix.python-version }}
- name: Install eigen
run: sudo apt-get install libeigen3-dev
run: ${{ matrix.INSTALL_DEPS }}
- name: Install dependencies
run: python -m pip install --upgrade pip wheel setuptools
- name: Build and install
Expand Down

0 comments on commit d398c5d

Please sign in to comment.