Skip to content

Commit 4b2122c

Browse files
authored
Merge branch 'main' into migrate-to-2.0
2 parents 6ff8bf9 + a88432f commit 4b2122c

32 files changed

+1194
-505
lines changed

.github/workflows/deploy-code.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
matrix:
2828
python-version: [3.9]
2929
steps:
30-
- uses: actions/checkout@v4
30+
- uses: actions/checkout@v5
3131
- uses: actions/setup-python@v5
3232
with:
3333
python-version: ${{ matrix.python-version }}

.github/workflows/deploy-docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
matrix:
2828
python-version: ['3.10']
2929
steps:
30-
- uses: actions/checkout@v4
30+
- uses: actions/checkout@v5
3131
with:
3232
fetch-depth: 0
3333
- uses: actions/setup-python@v5

.github/workflows/main.yml

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444
echo -e "\033[31;1;4mConcurrency Group\033[0m"
4545
echo -e "$CONCURRENCY_GROUP\n"
4646
shell: bash
47-
- uses: actions/checkout@v4
47+
- uses: actions/checkout@v5
4848
with:
4949
fetch-depth: 0
5050
- uses: actions/setup-python@v5
@@ -124,7 +124,7 @@ jobs:
124124
- os: windows-latest
125125
python-version: 3.13
126126
steps:
127-
- uses: actions/checkout@v4
127+
- uses: actions/checkout@v5
128128
- uses: actions/setup-python@v5
129129
with:
130130
python-version: ${{ matrix.python-version }}
@@ -186,7 +186,7 @@ jobs:
186186
os: [ubuntu-latest]
187187
python-version: [3.9, 3.13]
188188
steps:
189-
- uses: actions/checkout@v4
189+
- uses: actions/checkout@v5
190190
with:
191191
fetch-depth: 0
192192
- uses: actions/setup-python@v5
@@ -262,43 +262,43 @@ jobs:
262262
matrix:
263263
python-version: [3.9]
264264
steps:
265-
- uses: actions/checkout@v4
265+
- uses: actions/checkout@v5
266266
- uses: actions/setup-python@v5
267267
with:
268268
python-version: ${{ matrix.python-version }}
269-
- uses: actions/download-artifact@v4
269+
- uses: actions/download-artifact@v5
270270
with:
271271
name: ubuntu-latest-3.9
272272
path: /tmp/u39
273-
- uses: actions/download-artifact@v4
273+
- uses: actions/download-artifact@v5
274274
with:
275275
name: ubuntu-latest-3.10
276276
path: /tmp/u310
277-
- uses: actions/download-artifact@v4
277+
- uses: actions/download-artifact@v5
278278
with:
279279
name: ubuntu-latest-3.11
280280
path: /tmp/u311
281-
- uses: actions/download-artifact@v4
281+
- uses: actions/download-artifact@v5
282282
with:
283283
name: ubuntu-latest-3.12
284284
path: /tmp/u312
285-
- uses: actions/download-artifact@v4
285+
- uses: actions/download-artifact@v5
286286
with:
287287
name: ubuntu-latest-3.13
288288
path: /tmp/u313
289-
- uses: actions/download-artifact@v4
289+
- uses: actions/download-artifact@v5
290290
with:
291291
name: macos-latest-3.9
292292
path: /tmp/m39
293-
- uses: actions/download-artifact@v4
293+
- uses: actions/download-artifact@v5
294294
with:
295295
name: macos-latest-3.13
296296
path: /tmp/m313
297-
- uses: actions/download-artifact@v4
297+
- uses: actions/download-artifact@v5
298298
with:
299299
name: windows-latest-3.9
300300
path: /tmp/w39
301-
- uses: actions/download-artifact@v4
301+
- uses: actions/download-artifact@v5
302302
with:
303303
name: windows-latest-3.13
304304
path: /tmp/w313

.pylintdict

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ arg
2121
argmax
2222
args
2323
armijo
24+
arrasmith
2425
arxiv
2526
asmatrix
2627
aspuru
@@ -39,6 +40,8 @@ barkoutsos
3940
batchsize
4041
bayes
4142
bayesian
43+
beckey
44+
benchmarked
4245
benchmarking
4346
bergholm
4447
bfgs
@@ -63,6 +66,7 @@ carleo
6366
carlo
6467
cbit
6568
centroid
69+
cerezo
6670
chernoff
6771
choi
6872
chuang
@@ -190,6 +194,7 @@ gellmann
190194
generalised
191195
getter
192196
getters
197+
gigena
193198
gilliam
194199
giuseppe
195200
globals
@@ -255,6 +260,7 @@ izaac
255260
izz
256261
jac
257262
jacobian
263+
jl
258264
johnson
259265
jm
260266
jonathan
@@ -359,6 +365,7 @@ nonlocal
359365
nosignatures
360366
np
361367
ns
368+
ntangled
362369
num
363370
numpy
364371
nxd
@@ -400,7 +407,9 @@ pearson
400407
pedro
401408
pegasos
402409
peruzzo
410+
physrevlett
403411
pixelated
412+
pj
404413
platt
405414
polyfit
406415
postprocess
@@ -492,6 +501,7 @@ satisfiability
492501
satyen
493502
sbplx
494503
scalability
504+
schatzki
495505
schroediger
496506
schroedinger
497507
schrödinger
@@ -501,6 +511,9 @@ scipy
501511
sdg
502512
seealso
503513
semidefinite
514+
sep
515+
seperate
516+
seperable
504517
serializable
505518
serializablemodelmixin
506519
shalev

docs/tutorials/02_neural_network_classifier_and_regressor.ipynb

Lines changed: 127 additions & 57 deletions
Large diffs are not rendered by default.

docs/tutorials/02a_training_a_quantum_model_on_a_real_dataset.ipynb

Lines changed: 75 additions & 70 deletions
Large diffs are not rendered by default.

docs/tutorials/03_quantum_kernel.ipynb

Lines changed: 29 additions & 24 deletions
Large diffs are not rendered by default.

docs/tutorials/04_torch_qgan.ipynb

Lines changed: 28 additions & 13 deletions
Large diffs are not rendered by default.

docs/tutorials/05_torch_connector.ipynb

Lines changed: 141 additions & 149 deletions
Large diffs are not rendered by default.

docs/tutorials/07_pegasos_qsvc.ipynb

Lines changed: 10 additions & 12 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)