Skip to content

Commit 5e17724

Browse files
authored
Fix macOS wheels (#412)
Fix Issue PennyLaneAI/pennylane-lightning#583 in Catalyst **temporary** until we merge PR PennyLaneAI/pennylane-lightning#582 [sc-52500]
1 parent d82338d commit 5e17724

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

.github/workflows/build-wheel-linux-x86_64.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -259,7 +259,7 @@ jobs:
259259
-DPYTHON_EXECUTABLE=$(which python${{ matrix.python_version }}) \
260260
-Dpybind11_DIR=$(python${{ matrix.python_version }} -c "import pybind11; print(pybind11.get_cmake_dir())") \
261261
-DENABLE_LIGHTNING_KOKKOS=ON \
262-
-DLIGHTNING_GIT_TAG="8101e42" \
262+
-DLIGHTNING_GIT_TAG="23ee599" \
263263
-DKokkos_ENABLE_SERIAL=ON \
264264
-DKokkos_ENABLE_OPENMP=ON \
265265
-DENABLE_WARNINGS=OFF \

.github/workflows/build-wheel-macos-arm64.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -243,7 +243,7 @@ jobs:
243243
-DPYTHON_EXECUTABLE=$(which python${{ matrix.python_version }}) \
244244
-Dpybind11_DIR=$(python${{ matrix.python_version }} -c "import pybind11; print(pybind11.get_cmake_dir())") \
245245
-DENABLE_LIGHTNING_KOKKOS=ON \
246-
-DLIGHTNING_GIT_TAG="8101e42" \
246+
-DLIGHTNING_GIT_TAG="23ee599" \
247247
-DKokkos_ENABLE_SERIAL=ON \
248248
-DKokkos_ENABLE_OPENMP=OFF \
249249
-DKokkos_ENABLE_COMPLEX_ALIGN=OFF \

.github/workflows/build-wheel-macos-x86_64.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -244,7 +244,7 @@ jobs:
244244
-DCMAKE_LIBRARY_OUTPUT_DIRECTORY=$GITHUB_WORKSPACE/runtime-build/lib \
245245
-DPYTHON_EXECUTABLE=$(which python${{ matrix.python_version }}) \
246246
-Dpybind11_DIR=$(python${{ matrix.python_version }} -c "import pybind11; print(pybind11.get_cmake_dir())") \
247-
-DLIGHTNING_GIT_TAG="8101e42" \
247+
-DLIGHTNING_GIT_TAG="23ee599" \
248248
-DENABLE_LIGHTNING_KOKKOS=ON \
249249
-DKokkos_ENABLE_SERIAL=ON \
250250
-DKokkos_ENABLE_OPENMP=OFF \

runtime/Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ ENABLE_LIGHTNING?=ON
1414
ENABLE_LIGHTNING_KOKKOS?=OFF
1515
ENABLE_OPENQASM?=OFF
1616
ENABLE_ASAN?=OFF
17-
LIGHTNING_GIT_TAG_VALUE?="8101e42" # TODO: Update to v0.34.0
17+
LIGHTNING_GIT_TAG_VALUE?="23ee599" # TODO: Update to v0.34.0
1818
NPROC?=$(shell python3 -c "import os; print(os.cpu_count())")
1919

2020
ifeq ($(shell uname), Darwin)

0 commit comments

Comments
 (0)