Skip to content

Commit da9f6b1

Browse files
authored
release 0.62.0 (#441)
* update changelog * fix typo in changelog * fix mypy
1 parent f4e18c3 commit da9f6b1

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

docs/changelog.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@
44

55
# Changelog
66

7-
## unreleased
7+
## 0.62.0 (December 2024)
88

9-
- AerBackend now reject circuits with too many qubits
9+
- AerBackend now rejects circuits with too many qubits
1010
- Update pytket version requirement to 1.37.0.
1111
- Update qiskit version requirement to 1.3.1.
1212
- Fix conversion of circuits containing multiple operations conditioned on the

pytket/extensions/qiskit/qiskit_convert.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -663,7 +663,7 @@ def append_tk_command_to_qiskit(
663663
qb = qregmap[qubit.reg_name][qubit.index[0]]
664664
b = cregmap[bit.reg_name][bit.index[0]]
665665
# 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
667667
return qcirc.measure(qb, b)
668668

669669
if optype == OpType.Reset:

tests/qiskit_convert_test.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1193,7 +1193,7 @@ def test_nonregister_bits() -> None:
11931193
tk_to_qiskit(c)
11941194

11951195

1196-
def test_range_preds_with_conditionals():
1196+
def test_range_preds_with_conditionals() -> None:
11971197
# https://github.com/CQCL/pytket-qiskit/issues/375
11981198
c = Circuit(1, 1)
11991199
treg = c.add_c_register(_TEMP_BIT_NAME, 1)

0 commit comments

Comments
 (0)