From c4e6cf761c9b3283a47bfa8f6481c59e2f2c96f7 Mon Sep 17 00:00:00 2001 From: AmintorDusko Date: Thu, 15 Aug 2024 09:05:12 -0400 Subject: [PATCH 1/3] fix ci --- .github/workflows/tests_lqcpu_python.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/tests_lqcpu_python.yml b/.github/workflows/tests_lqcpu_python.yml index dbe5488c3e..91bd2a8634 100644 --- a/.github/workflows/tests_lqcpu_python.yml +++ b/.github/workflows/tests_lqcpu_python.yml @@ -94,7 +94,7 @@ jobs: if: inputs.lightning-version == 'stable' run: | PL_BACKEND=${{ matrix.pl_backend }} CMAKE_ARGS="-DENABLE_BLAS=${{ matrix.blas }} -DLQ_ENABLE_KERNEL_OMP=ON -DENABLE_PYTHON=ON" \ - python -m setup.py bdist_wheel + python setup.py bdist_wheel cd dist WHEEL_NAME=$(ls *.whl) cp $WHEEL_NAME ${{ github.workspace }}/wheel_${{ matrix.pl_backend }}-${{ matrix.blas }}.whl From b32ee562b0222c5c053638f51a9f98449be83996 Mon Sep 17 00:00:00 2001 From: AmintorDusko Date: Thu, 15 Aug 2024 09:05:42 -0400 Subject: [PATCH 2/3] update version --- pennylane_lightning/core/_version.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pennylane_lightning/core/_version.py b/pennylane_lightning/core/_version.py index 281ac48074..d25ea38a71 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.38.0-dev33" +__version__ = "0.38.0-dev34" From d1f67302105be4d8f8c31ac256b86430e5f91c20 Mon Sep 17 00:00:00 2001 From: AmintorDusko Date: Thu, 15 Aug 2024 09:08:28 -0400 Subject: [PATCH 3/3] update changelog --- .github/CHANGELOG.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/CHANGELOG.md b/.github/CHANGELOG.md index c7db86ccc0..c028694adc 100644 --- a/.github/CHANGELOG.md +++ b/.github/CHANGELOG.md @@ -92,6 +92,9 @@ ### Bug fixes +* Remove wrong -m when calling setup.py. + [(#854)](https://github.com/PennyLaneAI/pennylane-lightning/pull/854) + * Fix plugin-test-matrix CI/CD workflows. [(#850)](https://github.com/PennyLaneAI/pennylane-lightning/pull/850)