We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5b4f362 commit bfb09a9Copy full SHA for bfb09a9
1 file changed
.github/workflows/macos.yml
@@ -53,7 +53,9 @@ jobs:
53
env: {MACOSX_DEPLOYMENT_TARGET: 11.0}
54
run: |
55
set +e
56
- brew install numpy pandas
+ python -m venv env
57
+ source env/bin/activate
58
+ python -m pip install numpy pandas
59
set -e
60
- name: Build
61
env: {CXXFLAGS: -Werror, MACOSX_DEPLOYMENT_TARGET: 11.0}
@@ -63,6 +65,7 @@ jobs:
63
65
# 11.0+ for arm64/aarch64 (M1/M2) builds
64
66
67
share/openPMD/download_samples.sh build
68
69
cmake -S . -B build \
70
-DopenPMD_USE_PYTHON=ON \
71
-DopenPMD_USE_MPI=OFF \
0 commit comments