From 4ba2434b2da134cbcd56d2bc44e3efbfeb0bac51 Mon Sep 17 00:00:00 2001 From: Vincent Michaud-Rioux Date: Mon, 8 Jul 2024 12:23:57 +0000 Subject: [PATCH] Forked as v0.37.0_release to be released with tag v0.37.0. --- .github/workflows/wheel_linux_aarch64.yml | 2 +- .github/workflows/wheel_linux_ppc64le.yml | 2 +- .github/workflows/wheel_linux_x86_64.yml | 2 +- .github/workflows/wheel_linux_x86_64_cuda.yml | 2 +- .github/workflows/wheel_macos_arm64.yml | 2 +- .github/workflows/wheel_macos_x86_64.yml | 2 +- .github/workflows/wheel_noarch.yml | 4 ++-- .github/workflows/wheel_win_x86_64.yml | 2 +- pennylane_lightning/core/_version.py | 2 +- 9 files changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/workflows/wheel_linux_aarch64.yml b/.github/workflows/wheel_linux_aarch64.yml index 2473ae6939..ec090d9f7c 100644 --- a/.github/workflows/wheel_linux_aarch64.yml +++ b/.github/workflows/wheel_linux_aarch64.yml @@ -167,7 +167,7 @@ jobs: - uses: actions/upload-artifact@v3 if: | - github.event_name == 'pull_request' || + github.event_name == 'release' || github.event_name == 'workflow_dispatch' || github.ref == 'refs/heads/master' with: diff --git a/.github/workflows/wheel_linux_ppc64le.yml b/.github/workflows/wheel_linux_ppc64le.yml index ddcec0d0ed..d305e53342 100644 --- a/.github/workflows/wheel_linux_ppc64le.yml +++ b/.github/workflows/wheel_linux_ppc64le.yml @@ -158,7 +158,7 @@ jobs: - uses: actions/upload-artifact@v3 if: | - github.event_name == 'pull_request' || + github.event_name == 'release' || github.event_name == 'workflow_dispatch' || github.ref == 'refs/heads/master' || steps.rc_build.outputs.match != '' diff --git a/.github/workflows/wheel_linux_x86_64.yml b/.github/workflows/wheel_linux_x86_64.yml index bc8b2cd93c..f91ff34e88 100644 --- a/.github/workflows/wheel_linux_x86_64.yml +++ b/.github/workflows/wheel_linux_x86_64.yml @@ -187,7 +187,7 @@ jobs: - uses: actions/upload-artifact@v3 if: | - github.event_name == 'pull_request' || + github.event_name == 'release' || github.event_name == 'workflow_dispatch' || github.ref == 'refs/heads/master' || steps.rc_build.outputs.match != '' diff --git a/.github/workflows/wheel_linux_x86_64_cuda.yml b/.github/workflows/wheel_linux_x86_64_cuda.yml index 35934f851b..6a5a7a42c2 100644 --- a/.github/workflows/wheel_linux_x86_64_cuda.yml +++ b/.github/workflows/wheel_linux_x86_64_cuda.yml @@ -117,7 +117,7 @@ jobs: - uses: actions/upload-artifact@v3 if: | - github.event_name == 'pull_request' || + github.event_name == 'release' || github.event_name == 'workflow_dispatch' || github.ref == 'refs/heads/master' || steps.rc_build.outputs.match != '' diff --git a/.github/workflows/wheel_macos_arm64.yml b/.github/workflows/wheel_macos_arm64.yml index 73b7e83f0a..5b1b20d3d0 100644 --- a/.github/workflows/wheel_macos_arm64.yml +++ b/.github/workflows/wheel_macos_arm64.yml @@ -116,7 +116,7 @@ jobs: - uses: actions/upload-artifact@v3 if: | - github.event_name == 'pull_request' || + github.event_name == 'release' || github.event_name == 'workflow_dispatch' || github.ref == 'refs/heads/master' with: diff --git a/.github/workflows/wheel_macos_x86_64.yml b/.github/workflows/wheel_macos_x86_64.yml index 8d2b4440e7..f3aa0d9008 100644 --- a/.github/workflows/wheel_macos_x86_64.yml +++ b/.github/workflows/wheel_macos_x86_64.yml @@ -170,7 +170,7 @@ jobs: - uses: actions/upload-artifact@v3 if: | - github.event_name == 'pull_request' || + github.event_name == 'release' || github.event_name == 'workflow_dispatch' || github.ref == 'refs/heads/master' || steps.rc_build.outputs.match != '' diff --git a/.github/workflows/wheel_noarch.yml b/.github/workflows/wheel_noarch.yml index 1c14e4009a..55c62b0287 100644 --- a/.github/workflows/wheel_noarch.yml +++ b/.github/workflows/wheel_noarch.yml @@ -75,7 +75,7 @@ jobs: - uses: actions/upload-artifact@v3 if: | matrix.pl_backend == 'lightning_qubit' && - (github.event_name == 'pull_request' || github.event_name == 'workflow_dispatch' || github.ref == 'refs/heads/master') + (github.event_name == 'release' || github.event_name == 'workflow_dispatch' || github.ref == 'refs/heads/master') with: name: pure-python-wheels-${{ matrix.pl_backend }}.zip path: main/dist/*.whl @@ -90,7 +90,7 @@ jobs: SKIP_COMPILATION: True - uses: actions/upload-artifact@v3 - if: ${{ matrix.pl_backend != 'lightning_qubit' && (github.event_name == 'pull_request' || github.ref == 'refs/heads/master') }} + if: ${{ matrix.pl_backend != 'lightning_qubit' && (github.event_name == 'release' || github.ref == 'refs/heads/master') }} with: name: pure-source-dist-${{ matrix.pl_backend }}.tar.gz path: main/dist/*.tar.gz diff --git a/.github/workflows/wheel_win_x86_64.yml b/.github/workflows/wheel_win_x86_64.yml index 4ea1e88642..ca5b6a3b76 100644 --- a/.github/workflows/wheel_win_x86_64.yml +++ b/.github/workflows/wheel_win_x86_64.yml @@ -197,7 +197,7 @@ jobs: - uses: actions/upload-artifact@v3 if: | - github.event_name == 'pull_request' || + github.event_name == 'release' || github.event_name == 'workflow_dispatch' || github.ref == 'refs/heads/master' || steps.rc_build.outputs.match != '' diff --git a/pennylane_lightning/core/_version.py b/pennylane_lightning/core/_version.py index 1451e00451..3c3aef48b8 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-rc0" +__version__ = "0.37.0"