Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Pin Numpy < 2 in requirements #10893

Merged
merged 1 commit into from
Sep 23, 2023
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
10 changes: 10 additions & 0 deletions releasenotes/notes/numpy-2-pin-f600328f24fab6dd.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
---
other:
- |
This version of Qiskit is explicitly pinned to the Numpy 1.x series, because it includes compiled
extensions that are not yet compiled against the as-yet-unreleased Numpy 2.x series. We will
release a new version of Qiskit with Numpy 2.x support as soon as feasible.

We cannot prevent your package manager from resolving to older versions of Qiskit (which do not
have the same pin but are still likely to be incompatible) if you forcibly try to install Qiskit
alongside Numpy 2, before we have released a compatible version.
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
rustworkx>=0.13.0
numpy>=1.17
numpy>=1.17,<2
ply>=3.10
psutil>=5
scipy>=1.5
Expand Down