Skip to content

Commit

Permalink
Fix for github action
Browse files Browse the repository at this point in the history
  • Loading branch information
drlukeparry committed Dec 17, 2023
1 parent 7fc0932 commit c99c677
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/pythonpublish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,9 @@ jobs:
os: [ubuntu-latest, macos-latest, macos-13, windows-latest]
exclude:
- os: ubuntu-latest
python-version: '3.12'
python-version: '3.12'
- os: macos-13
python-version: '3.7'

steps:
- uses: actions/checkout@v2
Expand All @@ -39,7 +41,7 @@ jobs:
sudo apt-get update -qq -y
sudo apt-get install -qq -y libglu1-mesa build-essential libeigen3-dev
- name: Install Brew On Mac OS
if: matrix.os == 'macos-latest'
if: matrix.os == 'macos-latest' || matrix.os == 'macos-13'
run: |
brew install eigen
- name: Install dependencies
Expand Down

0 comments on commit c99c677

Please sign in to comment.