Skip to content

Commit 4ba2434

Browse files
committed
Forked as v0.37.0_release to be released with tag v0.37.0.
1 parent 240b7ed commit 4ba2434

9 files changed

+10
-10
lines changed

.github/workflows/wheel_linux_aarch64.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ jobs:
167167

168168
- uses: actions/upload-artifact@v3
169169
if: |
170-
github.event_name == 'pull_request' ||
170+
github.event_name == 'release' ||
171171
github.event_name == 'workflow_dispatch' ||
172172
github.ref == 'refs/heads/master'
173173
with:

.github/workflows/wheel_linux_ppc64le.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ jobs:
158158

159159
- uses: actions/upload-artifact@v3
160160
if: |
161-
github.event_name == 'pull_request' ||
161+
github.event_name == 'release' ||
162162
github.event_name == 'workflow_dispatch' ||
163163
github.ref == 'refs/heads/master' ||
164164
steps.rc_build.outputs.match != ''

.github/workflows/wheel_linux_x86_64.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -187,7 +187,7 @@ jobs:
187187

188188
- uses: actions/upload-artifact@v3
189189
if: |
190-
github.event_name == 'pull_request' ||
190+
github.event_name == 'release' ||
191191
github.event_name == 'workflow_dispatch' ||
192192
github.ref == 'refs/heads/master' ||
193193
steps.rc_build.outputs.match != ''

.github/workflows/wheel_linux_x86_64_cuda.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ jobs:
117117

118118
- uses: actions/upload-artifact@v3
119119
if: |
120-
github.event_name == 'pull_request' ||
120+
github.event_name == 'release' ||
121121
github.event_name == 'workflow_dispatch' ||
122122
github.ref == 'refs/heads/master' ||
123123
steps.rc_build.outputs.match != ''

.github/workflows/wheel_macos_arm64.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ jobs:
116116
117117
- uses: actions/upload-artifact@v3
118118
if: |
119-
github.event_name == 'pull_request' ||
119+
github.event_name == 'release' ||
120120
github.event_name == 'workflow_dispatch' ||
121121
github.ref == 'refs/heads/master'
122122
with:

.github/workflows/wheel_macos_x86_64.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ jobs:
170170

171171
- uses: actions/upload-artifact@v3
172172
if: |
173-
github.event_name == 'pull_request' ||
173+
github.event_name == 'release' ||
174174
github.event_name == 'workflow_dispatch' ||
175175
github.ref == 'refs/heads/master' ||
176176
steps.rc_build.outputs.match != ''

.github/workflows/wheel_noarch.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ jobs:
7575
- uses: actions/upload-artifact@v3
7676
if: |
7777
matrix.pl_backend == 'lightning_qubit' &&
78-
(github.event_name == 'pull_request' || github.event_name == 'workflow_dispatch' || github.ref == 'refs/heads/master')
78+
(github.event_name == 'release' || github.event_name == 'workflow_dispatch' || github.ref == 'refs/heads/master')
7979
with:
8080
name: pure-python-wheels-${{ matrix.pl_backend }}.zip
8181
path: main/dist/*.whl
@@ -90,7 +90,7 @@ jobs:
9090
SKIP_COMPILATION: True
9191

9292
- uses: actions/upload-artifact@v3
93-
if: ${{ matrix.pl_backend != 'lightning_qubit' && (github.event_name == 'pull_request' || github.ref == 'refs/heads/master') }}
93+
if: ${{ matrix.pl_backend != 'lightning_qubit' && (github.event_name == 'release' || github.ref == 'refs/heads/master') }}
9494
with:
9595
name: pure-source-dist-${{ matrix.pl_backend }}.tar.gz
9696
path: main/dist/*.tar.gz

.github/workflows/wheel_win_x86_64.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -197,7 +197,7 @@ jobs:
197197

198198
- uses: actions/upload-artifact@v3
199199
if: |
200-
github.event_name == 'pull_request' ||
200+
github.event_name == 'release' ||
201201
github.event_name == 'workflow_dispatch' ||
202202
github.ref == 'refs/heads/master' ||
203203
steps.rc_build.outputs.match != ''

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.37.0-rc0"
19+
__version__ = "0.37.0"

0 commit comments

Comments
 (0)