Skip to content

Commit fcbed02

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

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

.github/workflows/cd.yml

Lines changed: 9 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,13 @@ 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+
run: |
119+
pip install h5py numpy
120+
121+
114122
- name: Build Macos ARM
115123
if: matrix.platform == 'macos-14'
116124
run: |

0 commit comments

Comments
 (0)