diff --git a/.github/CHANGELOG.md b/.github/CHANGELOG.md index bd02b7c0f9..22fe74cea2 100644 --- a/.github/CHANGELOG.md +++ b/.github/CHANGELOG.md @@ -55,6 +55,9 @@ * Remove the Autoray dependency from requirement files. [(#736)](https://github.com/PennyLaneAI/pennylane-lightning/pull/736) +* Fix the `cuda-runtime-12-0` dependency issue on RHEL8. + [(#739)](https://github.com/PennyLaneAI/pennylane-lightning/pull/739) + ### Contributors This release contains contributions from (in alphabetical order): diff --git a/.github/workflows/wheel_linux_x86_64_cuda.yml b/.github/workflows/wheel_linux_x86_64_cuda.yml index a12173daa0..0b2038936f 100644 --- a/.github/workflows/wheel_linux_x86_64_cuda.yml +++ b/.github/workflows/wheel_linux_x86_64_cuda.yml @@ -87,7 +87,7 @@ jobs: dnf install gcc-toolset-12 dnf-utils -y source /opt/rh/gcc-toolset-12/enable -y yum-config-manager --add-repo http://developer.download.nvidia.com/compute/cuda/repos/rhel8/x86_64/cuda-rhel8.repo -y - dnf -y install cuda-${{ matrix.cuda_version }}-0 git openssh wget + dnf -y install cuda-toolkit-${{ matrix.cuda_version }}-0 git openssh wget # ensure nvcc is available CIBW_ENVIRONMENT: | diff --git a/pennylane_lightning/core/_version.py b/pennylane_lightning/core/_version.py index eb05b84bd4..7671600d2c 100644 --- a/pennylane_lightning/core/_version.py +++ b/pennylane_lightning/core/_version.py @@ -16,4 +16,4 @@ Version number (major.minor.patch[-label]) """ -__version__ = "0.37.0-dev16" +__version__ = "0.37.0-dev17"