Skip to content

Commit dcea959

Browse files
committed
Forked as v0.39.0_release to be released with tag v0.39.0.
1 parent cf828ac commit dcea959

9 files changed

+17
-17
lines changed

.github/workflows/wheel_linux_aarch64.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,7 @@ jobs:
184184

185185
- uses: actions/upload-artifact@v4
186186
if: |
187-
github.event_name == 'pull_request' ||
187+
github.event_name == 'release' ||
188188
github.event_name == 'workflow_dispatch' ||
189189
github.ref == 'refs/heads/master'
190190
with:
@@ -202,7 +202,7 @@ jobs:
202202
cibw_build: ${{ fromJson(needs.set_wheel_build_matrix.outputs.python_version) }}
203203
runs-on: ubuntu-latest
204204
if: |
205-
github.event_name == 'pull_request' ||
205+
github.event_name == 'release' ||
206206
github.ref == 'refs/heads/master'
207207
208208
steps:

.github/workflows/wheel_linux_aarch64_cuda.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ jobs:
107107

108108
- uses: actions/upload-artifact@v4
109109
if: |
110-
github.event_name == 'pull_request' ||
110+
github.event_name == 'release' ||
111111
github.event_name == 'workflow_dispatch' ||
112112
github.ref == 'refs/heads/master'
113113
with:
@@ -128,7 +128,7 @@ jobs:
128128
permissions:
129129
id-token: write
130130
if: |
131-
github.event_name == 'pull_request' ||
131+
github.event_name == 'release' ||
132132
github.ref == 'refs/heads/master'
133133
134134
steps:

.github/workflows/wheel_linux_x86_64.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -198,7 +198,7 @@ jobs:
198198

199199
- uses: actions/upload-artifact@v4
200200
if: |
201-
github.event_name == 'pull_request' ||
201+
github.event_name == 'release' ||
202202
github.event_name == 'workflow_dispatch' ||
203203
github.ref == 'refs/heads/master' ||
204204
steps.rc_build.outputs.match != ''
@@ -217,7 +217,7 @@ jobs:
217217
cibw_build: ${{ fromJson(needs.set_wheel_build_matrix.outputs.python_version) }}
218218
runs-on: ubuntu-latest
219219
if: |
220-
github.event_name == 'pull_request' ||
220+
github.event_name == 'release' ||
221221
github.ref == 'refs/heads/master'
222222
223223
steps:

.github/workflows/wheel_linux_x86_64_cuda.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ jobs:
119119

120120
- uses: actions/upload-artifact@v4
121121
if: |
122-
github.event_name == 'pull_request' ||
122+
github.event_name == 'release' ||
123123
github.event_name == 'workflow_dispatch' ||
124124
github.ref == 'refs/heads/master' ||
125125
steps.rc_build.outputs.match != ''
@@ -141,7 +141,7 @@ jobs:
141141
permissions:
142142
id-token: write
143143
if: |
144-
github.event_name == 'pull_request' ||
144+
github.event_name == 'release' ||
145145
github.ref == 'refs/heads/master'
146146
147147
steps:

.github/workflows/wheel_macos_arm64.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ jobs:
126126
127127
- uses: actions/upload-artifact@v4
128128
if: |
129-
github.event_name == 'pull_request' ||
129+
github.event_name == 'release' ||
130130
github.event_name == 'workflow_dispatch' ||
131131
github.ref == 'refs/heads/master'
132132
with:
@@ -144,7 +144,7 @@ jobs:
144144
cibw_build: ${{ fromJson(needs.mac-set-matrix-arm.outputs.python_version) }}
145145
runs-on: ubuntu-latest
146146
if: |
147-
github.event_name == 'pull_request' ||
147+
github.event_name == 'release' ||
148148
github.ref == 'refs/heads/master'
149149
150150
steps:

.github/workflows/wheel_macos_x86_64.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,7 @@ jobs:
184184

185185
- uses: actions/upload-artifact@v4
186186
if: |
187-
github.event_name == 'pull_request' ||
187+
github.event_name == 'release' ||
188188
github.event_name == 'workflow_dispatch' ||
189189
github.ref == 'refs/heads/master' ||
190190
steps.rc_build.outputs.match != ''
@@ -203,7 +203,7 @@ jobs:
203203
cibw_build: ${{ fromJson(needs.set_wheel_build_matrix.outputs.python_version) }}
204204
runs-on: ubuntu-latest
205205
if: |
206-
github.event_name == 'pull_request' ||
206+
github.event_name == 'release' ||
207207
github.ref == 'refs/heads/master'
208208
209209
steps:

.github/workflows/wheel_noarch.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ jobs:
8686
- uses: actions/upload-artifact@v4
8787
if: |
8888
matrix.pl_backend == 'lightning_qubit' &&
89-
(github.event_name == 'pull_request' || github.event_name == 'workflow_dispatch' || github.ref == 'refs/heads/master')
89+
(github.event_name == 'release' || github.event_name == 'workflow_dispatch' || github.ref == 'refs/heads/master')
9090
with:
9191
name: pure-python-wheels-${{ matrix.pl_backend }}.zip
9292
path: dist/*.whl
@@ -102,7 +102,7 @@ jobs:
102102

103103
steps:
104104
- uses: actions/download-artifact@v4
105-
if: ${{ matrix.pl_backend == 'lightning_qubit' && github.event_name == 'pull_request' }}
105+
if: ${{ matrix.pl_backend == 'lightning_qubit' && github.event_name == 'release' }}
106106
with:
107107
name: pure-python-wheels-${{ matrix.pl_backend }}.zip
108108
path: dist

.github/workflows/wheel_win_x86_64.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,7 @@ jobs:
206206

207207
- uses: actions/upload-artifact@v4
208208
if: |
209-
github.event_name == 'pull_request' ||
209+
github.event_name == 'release' ||
210210
github.event_name == 'workflow_dispatch' ||
211211
github.ref == 'refs/heads/master' ||
212212
steps.rc_build.outputs.match != ''
@@ -225,7 +225,7 @@ jobs:
225225
cibw_build: ${{ fromJson(needs.set_wheel_build_matrix.outputs.python_version) }}
226226
runs-on: ubuntu-latest
227227
if: |
228-
github.event_name == 'pull_request' ||
228+
github.event_name == 'release' ||
229229
github.ref == 'refs/heads/master'
230230
231231
steps:

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.39.0-rc7"
19+
__version__ = "0.39.0"

0 commit comments

Comments
 (0)