File tree 4 files changed +11
-3
lines changed
pytket/extensions/qiskit/backends
4 files changed +11
-3
lines changed Original file line number Diff line number Diff line change 1
- __extension_version__ = "0.35 .0"
1
+ __extension_version__ = "0.36 .0"
2
2
__extension_name__ = "pytket-qiskit"
Original file line number Diff line number Diff line change 1
1
Changelog
2
2
~~~~~~~~~
3
3
4
+ 0.36.0 (February 2023)
5
+ ----------------------
6
+
7
+ * Update qiskit version to 0.41.
8
+ * Fix order of Pauli terms when converting from ``QubitPauliOperator ``.
9
+
4
10
0.35.0 (February 2023)
5
11
----------------------
6
12
Original file line number Diff line number Diff line change @@ -696,7 +696,9 @@ def _qubitpauliop_to_sparsepauliop(
696
696
for term , coeff in operator ._dict .items ():
697
697
termmap = term .map
698
698
strings .append (
699
- "" .join (termmap .get (Qubit (i ), Pauli .I ).name for i in range (n_qubits ))
699
+ "" .join (
700
+ termmap .get (Qubit (i ), Pauli .I ).name for i in reversed (range (n_qubits ))
701
+ )
700
702
)
701
703
coeffs .append (coeff )
702
704
Original file line number Diff line number Diff line change 45
45
include_package_data = True ,
46
46
install_requires = [
47
47
"pytket ~= 1.11" ,
48
- "qiskit ~= 0.40 .0" ,
48
+ "qiskit ~= 0.41 .0" ,
49
49
"qiskit-ibm-runtime ~= 0.8.0" ,
50
50
"qiskit-aer ~= 0.11.2" ,
51
51
],
You can’t perform that action at this time.
0 commit comments