diff --git a/.github/workflows/tests_lgpu_python.yml b/.github/workflows/tests_lgpu_python.yml index 8d3112380..cc0b85b20 100644 --- a/.github/workflows/tests_lgpu_python.yml +++ b/.github/workflows/tests_lgpu_python.yml @@ -254,7 +254,8 @@ jobs: - name: Download coverage reports uses: actions/download-artifact@v4 with: - name: ubuntu-codecov-results-python + pattern: ubuntu-codecov-* + merge-multiple: true - name: Upload to Codecov uses: codecov/codecov-action@v4 diff --git a/.github/workflows/tests_lkcpu_python.yml b/.github/workflows/tests_lkcpu_python.yml index ef7e73ae9..42136229f 100644 --- a/.github/workflows/tests_lkcpu_python.yml +++ b/.github/workflows/tests_lkcpu_python.yml @@ -121,20 +121,7 @@ jobs: run: | python -m pip install -r requirements-dev.txt - # TODO: Update after Release 0.37 - name: Create device wheel ${{ inputs.lightning-version }} - if: inputs.lightning-version == 'stable' - run: | - PL_BACKEND=${{ matrix.pl_backend }} CMAKE_ARGS="-DCMAKE_PREFIX_PATH=${{ github.workspace }}/Kokkos" \ - python setup.py bdist_wheel - cd dist - WHEEL_NAME=$(ls *.whl) - cp $WHEEL_NAME ${{ github.workspace }}/wheel_${{ matrix.pl_backend }}-${{ matrix.exec_model }}.whl - echo $WHEEL_NAME > ${{ github.workspace }}/${{ matrix.pl_backend }}-${{ matrix.exec_model }}_name.txt - - # TODO: Remove after Release 0.37 - - name: Create device wheel ${{ inputs.lightning-version }} - if: inputs.lightning-version != 'stable' run: | PL_BACKEND=${{ matrix.pl_backend }} python scripts/configure_pyproject_toml.py CMAKE_ARGS="-DCMAKE_PREFIX_PATH=${{ github.workspace }}/Kokkos" python -m build diff --git a/.github/workflows/tests_lqcpu_python.yml b/.github/workflows/tests_lqcpu_python.yml index a117b321f..90798b8b6 100644 --- a/.github/workflows/tests_lqcpu_python.yml +++ b/.github/workflows/tests_lqcpu_python.yml @@ -93,9 +93,7 @@ jobs: run: | python -m pip install -r requirements-dev.txt - # TODO: Update after Release 0.37 - name: Create device wheel ${{ inputs.lightning-version }} - if: inputs.lightning-version != 'stable' run: | PL_BACKEND=${{ matrix.pl_backend }} python scripts/configure_pyproject_toml.py CMAKE_ARGS="-DENABLE_BLAS=${{ matrix.blas }} -DLQ_ENABLE_KERNEL_OMP=ON -DENABLE_PYTHON=ON" python -m build @@ -104,17 +102,6 @@ jobs: cp $WHEEL_NAME ${{ github.workspace }}/wheel_${{ matrix.pl_backend }}-${{ matrix.blas }}.whl echo $WHEEL_NAME > ${{ github.workspace }}/${{ matrix.pl_backend }}-${{ matrix.blas }}_name.txt - # TODO: Remove after Release 0.37 - - name: Create device wheel (stable) - 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 setup.py bdist_wheel - cd dist - WHEEL_NAME=$(ls *.whl) - cp $WHEEL_NAME ${{ github.workspace }}/wheel_${{ matrix.pl_backend }}-${{ matrix.blas }}.whl - echo $WHEEL_NAME > ${{ github.workspace }}/${{ matrix.pl_backend }}-${{ matrix.blas }}_name.txt - - name: Send wheel name uses: actions/upload-artifact@v4 with: diff --git a/pennylane_lightning/core/_version.py b/pennylane_lightning/core/_version.py index c4edd4139..8d7e4ed0a 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.39.0-dev4" +__version__ = "0.39.0-dev5"