Skip to content

Commit 7341dde

Browse files
Attempt to work around macos-14 python limitations
1 parent d35d9d3 commit 7341dde

File tree

1 file changed

+11
-1
lines changed

1 file changed

+11
-1
lines changed

.github/workflows/cd.yml

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,9 +89,10 @@ jobs:
8989
brew info boost
9090
brew info hdf5
9191
92-
- name: Install ARM MacOS dependencies
92+
- name: Install ARM MacOS dependencies Part 1
9393
if: matrix.platform == 'macos-14'
9494
shell: bash
95+
9596
run: |
9697
brew install boost
9798
brew install hdf5
@@ -111,6 +112,15 @@ jobs:
111112
brew info boost
112113
brew info hdf5
113114
115+
- name: Install ARM MacOS dependencies Part 2
116+
if: matrix.platform == 'macos-14'
117+
uses: actions/setup-python@v5
118+
119+
- name: Install ARM MacOS dependencies Part 3
120+
if: matrix.platform == 'macos-14'
121+
run: pip install h5py numpy
122+
123+
114124
- name: Build Macos ARM
115125
if: matrix.platform == 'macos-14'
116126
run: |

0 commit comments

Comments
 (0)