Skip to content

Commit ec9e340

Browse files
authored
Fix/fix/lightning tests (#854)
------------------------------------------------------------------------------------------------------------ **Context:** Calling setup.py is not supposed to have -m. **Description of the Change:** removing wrong `-m`. **Benefits:** **Possible Drawbacks:** **Related GitHub Issues:** [sc-71443]
1 parent 8e85fce commit ec9e340

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

.github/CHANGELOG.md

+3
Original file line numberDiff line numberDiff line change
@@ -92,6 +92,9 @@
9292

9393
### Bug fixes
9494

95+
* Remove wrong -m when calling setup.py.
96+
[(#854)](https://github.com/PennyLaneAI/pennylane-lightning/pull/854)
97+
9598
* Fix plugin-test-matrix CI/CD workflows.
9699
[(#850)](https://github.com/PennyLaneAI/pennylane-lightning/pull/850)
97100

.github/workflows/tests_lqcpu_python.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ jobs:
9494
if: inputs.lightning-version == 'stable'
9595
run: |
9696
PL_BACKEND=${{ matrix.pl_backend }} CMAKE_ARGS="-DENABLE_BLAS=${{ matrix.blas }} -DLQ_ENABLE_KERNEL_OMP=ON -DENABLE_PYTHON=ON" \
97-
python -m setup.py bdist_wheel
97+
python setup.py bdist_wheel
9898
cd dist
9999
WHEEL_NAME=$(ls *.whl)
100100
cp $WHEEL_NAME ${{ github.workspace }}/wheel_${{ matrix.pl_backend }}-${{ matrix.blas }}.whl

pennylane_lightning/core/_version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,4 @@
1616
Version number (major.minor.patch[-label])
1717
"""
1818

19-
__version__ = "0.38.0-dev33"
19+
__version__ = "0.38.0-dev34"

0 commit comments

Comments
 (0)