Commit da9f6b1 1 parent f4e18c3 commit da9f6b1 Copy full SHA for da9f6b1
File tree 3 files changed +4
-4
lines changed
3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 4
4
5
5
# Changelog
6
6
7
- ## unreleased
7
+ ## 0.62.0 (December 2024)
8
8
9
- - AerBackend now reject circuits with too many qubits
9
+ - AerBackend now rejects circuits with too many qubits
10
10
- Update pytket version requirement to 1.37.0.
11
11
- Update qiskit version requirement to 1.3.1.
12
12
- Fix conversion of circuits containing multiple operations conditioned on the
Original file line number Diff line number Diff line change @@ -663,7 +663,7 @@ def append_tk_command_to_qiskit(
663
663
qb = qregmap [qubit .reg_name ][qubit .index [0 ]]
664
664
b = cregmap [bit .reg_name ][bit .index [0 ]]
665
665
# If the bit is storing a range predicate it should be invalidated:
666
- range_preds .pop (bit , None )
666
+ range_preds .pop (bit , None ) # type: ignore
667
667
return qcirc .measure (qb , b )
668
668
669
669
if optype == OpType .Reset :
Original file line number Diff line number Diff line change @@ -1193,7 +1193,7 @@ def test_nonregister_bits() -> None:
1193
1193
tk_to_qiskit (c )
1194
1194
1195
1195
1196
- def test_range_preds_with_conditionals ():
1196
+ def test_range_preds_with_conditionals () -> None :
1197
1197
# https://github.com/CQCL/pytket-qiskit/issues/375
1198
1198
c = Circuit (1 , 1 )
1199
1199
treg = c .add_c_register (_TEMP_BIT_NAME , 1 )
You can’t perform that action at this time.
0 commit comments