Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
---
prelude: >
This release compiles a series of important updates to the package, including:

- dropped support for Python 3.8 and added support for Python 3.13
- added support for PrimitivesV2
- addressed deprecations from the 1.x cycle

These changes allow for qiskit-algorithms to now support
`Qiskit 2.x <https://docs.quantum.ibm.com/api/qiskit/release-notes/2.0>`__
while maintaining support for the 1.x cycle.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
prelude: |
prelude: >
Following up on the deprecation of ``BlueprintsCircuit`` in the 2.1 version of Qiskit, most
tests have been updated to use the replacements functions instead. These circuits are still
supported by ``qiskit-algorithms``, though their use is now deprecated, and their support will
Expand All @@ -12,6 +12,7 @@ prelude: |

The :class:`.AdaptVQE` class now supports a new way to specify its ansatz, following up on the
deprecation of :class:`~qiskit.circuit.library.EvolvedOperatorAnsatz`.

features:
- |
The :class:`.AmplificationProblem` and :class:`.Grover` classes now support being
Expand Down
3 changes: 2 additions & 1 deletion requirements-dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,8 @@ qiskit-aer>=0.12
networkx>=2.2
mypy>=0.991
mypy-extensions>=0.4.3
qiskit!=2.1.0,!=2.1.1
# There are unit test failures with the following qiskit versions
qiskit!=2.1.0,!=2.1.1,!=2.1.2

# Tweedledum is unmaintained and its existing Mac wheels are unreliable. If you
# manage to get a working install on a Mac the functionality should still work,
Expand Down
Loading