Skip to content

Commit 173ac5c

Browse files
committed
Updates
1 parent 99e2352 commit 173ac5c

File tree

3 files changed

+18
-18
lines changed

3 files changed

+18
-18
lines changed

.github/workflows/wheels.yaml

+14-15
Original file line numberDiff line numberDiff line change
@@ -184,87 +184,87 @@ jobs:
184184
- os: macos-latest
185185
pythonVersion: 37
186186
bitness: 64
187-
platform_id: macosx_x86_64
187+
platformID: macosx_x86_64
188188
pythonType: "cp"
189189

190190
- os: macos-latest
191191
pythonVersion: 38
192192
bitness: 64
193-
platform_id: macosx_x86_64
193+
platformID: macosx_x86_64
194194
pythonType: "cp"
195195

196196
- os: macos-latest
197197
pythonVersion: 39
198198
bitness: 64
199-
platform_id: macosx_x86_64
199+
platformID: macosx_x86_64
200200
pythonType: "cp"
201201

202202
- os: macos-latest
203203
pythonVersion: 310
204204
bitness: 64
205-
platform_id: macosx_x86_64
205+
platformID: macosx_x86_64
206206
pythonType: "cp"
207207

208208
- os: macos-latest
209209
pythonVersion: 311
210210
bitness: 64
211-
platform_id: macosx_x86_64
211+
platformID: macosx_x86_64
212212
pythonType: "cp"
213213

214214
- os: macos-latest
215215
pythonVersion: 312
216216
bitness: 64
217-
platform_id: macosx_x86_64
217+
platformID: macosx_x86_64
218218
pythonType: "cp"
219219

220220
# Apple-Silicon MacOS
221221
- os: macos-latest
222222
pythonVersion: 38
223223
bitness: 64
224-
platform_id: macosx_arm64
224+
platformID: macosx_arm64
225225
pythonType: "cp"
226226

227227
- os: macos-latest
228228
pythonVersion: 39
229229
bitness: 64
230-
platform_id: macosx_arm64
230+
platformID: macosx_arm64
231231
pythonType: "cp"
232232

233233
- os: macos-latest
234234
pythonVersion: 310
235235
bitness: 64
236-
platform_id: macosx_arm64
236+
platformID: macosx_arm64
237237
pythonType: "cp"
238238

239239
- os: macos-latest
240240
pythonVersion: 311
241241
bitness: 64
242-
platform_id: macosx_arm64
242+
platformID: macosx_arm64
243243
pythonType: "cp"
244244

245245
- os: macos-latest
246246
pythonVersion: 312
247247
bitness: 64
248-
platform_id: macosx_arm64
248+
platformID: macosx_arm64
249249
pythonType: "cp"
250250

251251
# Apple-Silicon MacOS PyPy
252252
- os: macos-latest
253253
pythonVersion: 38
254254
bitness: 64
255-
platform_id: macosx_arm64
255+
platformID: macosx_arm64
256256
pythonType: "pp"
257257

258258
- os: macos-latest
259259
pythonVersion: 39
260260
bitness: 64
261-
platform_id: macosx_arm64
261+
platformID: macosx_arm64
262262
pythonType: "pp"
263263

264264
- os: macos-latest
265265
pythonVersion: 310
266266
bitness: 64
267-
platform_id: macosx_arm64
267+
platformID: macosx_arm64
268268
pythonType: "pp"
269269

270270
steps:
@@ -386,7 +386,6 @@ jobs:
386386
run: |
387387
ls dist
388388
twine upload --skip-existing dist/artifact/* -u ${{ secrets.PYPI_USER }} -p ${{ secrets.PYPI_PASSWORD }}
389-
390389
391390
# To uncomment: remove hash -- no space after!!!
392391
# # Build the wheels for Linux and Windows with CUDA support

CMakeLists.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -144,8 +144,8 @@ if (${SKBUILD})
144144
set(LIBRAPID_USE_CUDA ON)
145145
set(LIBRAPID_USE_OPENCL ON)
146146
set(LIBRAPID_USE_OMP ON)
147-
set(LIBRAPID_USE_MULTIPREC ON)
148-
set(LIBRAPID_GET_MULTIPREC ON)
147+
set(LIBRAPID_USE_MULTIPREC OFF)
148+
set(LIBRAPID_GET_MULTIPREC OFF)
149149

150150
file(GLOB_RECURSE PYTHON_SOURCES
151151
"${CMAKE_CURRENT_SOURCE_DIR}/librapid/bindings/python/*.hpp" # Header files

requirements.txt

+2-1
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,5 @@ pybind11
77
cmake
88
scikit-build
99
packaging
10-
icecream
10+
icecream
11+
build

0 commit comments

Comments
 (0)