@@ -40,15 +40,15 @@ jobs:
40
40
CMAKE_GENERATOR : " Visual Studio 16 2019"
41
41
CMAKE_GENERATOR_PLATFORM : " Win32"
42
42
43
- - os : macos-12
43
+ - os : macos-13
44
44
arch : " x86_64"
45
45
env :
46
46
MACOSX_DEPLOYMENT_TARGET : 11.0
47
47
48
48
# Apple Silicon M1/arm64/aarch64 builds:
49
49
# https://cibuildwheel.readthedocs.io/en/stable/faq/#apple-silicon
50
50
# https://github.com/pypa/cibuildwheel/pull/704
51
- - os : macos-12
51
+ - os : macos-13
52
52
arch : " arm64"
53
53
env :
54
54
CMAKE_OSX_ARCHITECTURES : " arm64"
60
60
# https://developer.apple.com/documentation/apple-silicon/building-a-universal-macos-binary
61
61
# ADIOS1 tricky to build and HDF5 even with CMake as well (as of 1.12)
62
62
# We could build them twice and use `lipo` to combine the lib artifacts.
63
- # - os: macos-12
63
+ # - os: macos-13
64
64
# arch: "universal2"
65
65
# env:
66
66
# CMAKE_OSX_ARCHITECTURES: "arm64;x86_64"
70
70
- uses : actions/checkout@v4
71
71
with :
72
72
path : ' src'
73
- ref : ' 0.16.0 '
73
+ ref : ' 0.16.1 '
74
74
75
75
- uses : actions/checkout@v4
76
76
with :
@@ -86,29 +86,29 @@ jobs:
86
86
python -m pip install --upgrade pip setuptools wheel
87
87
python -m pip install cibuildwheel==2.21.2
88
88
89
- # Patch: Fix versioning
90
- - name : Download Patch 1/2
91
- uses : suisei-cn/actions-download-file@818d6b7dc8fe73f2f924b6241f2b1134ca1377d9 # 1.6.0
92
- id : setupversion
93
- with :
94
- url : " https://github.com/openPMD/openPMD-api/pull/1680.patch"
95
- target : src/.patch/
96
-
97
- # Patch: PYBIND11_FINDPYTHON=ON
98
- - name : Download Patch 2/2
99
- uses : suisei-cn/actions-download-file@818d6b7dc8fe73f2f924b6241f2b1134ca1377d9 # 1.6.0
100
- id : setupfindpython
101
- with :
102
- url : " https://github.com/openPMD/openPMD-api/pull/1684.patch"
103
- target : src/.patch/
104
-
105
- - name : Apply Patches
106
- run : |
107
- cd src
108
- git apply --exclude=.github/workflows/windows.yml .patch/1680.patch
109
- git apply --exclude=cmake/dependencies/pybind11.cmake .patch/1684.patch
110
- git fetch
111
- git apply --exclude=setup.py -3 .patch/1684.patch
89
+ # # Patch: Fix versioning
90
+ # - name: Download Patch 1/2
91
+ # uses: suisei-cn/actions-download-file@818d6b7dc8fe73f2f924b6241f2b1134ca1377d9 # 1.6.0
92
+ # id: setupversion
93
+ # with:
94
+ # url: "https://github.com/openPMD/openPMD-api/pull/1680.patch"
95
+ # target: src/.patch/
96
+
97
+ # # Patch: PYBIND11_FINDPYTHON=ON
98
+ # - name: Download Patch 2/2
99
+ # uses: suisei-cn/actions-download-file@818d6b7dc8fe73f2f924b6241f2b1134ca1377d9 # 1.6.0
100
+ # id: setupfindpython
101
+ # with:
102
+ # url: "https://github.com/openPMD/openPMD-api/pull/1684.patch"
103
+ # target: src/.patch/
104
+
105
+ # - name: Apply Patches
106
+ # run: |
107
+ # cd src
108
+ # git apply --exclude=.github/workflows/windows.yml .patch/1680.patch
109
+ # git apply --exclude=cmake/dependencies/pybind11.cmake .patch/1684.patch
110
+ # git fetch
111
+ # git apply --exclude=setup.py -3 .patch/1684.patch
112
112
113
113
- name : Build wheel
114
114
env :
0 commit comments