Skip to content

Commit

Permalink
Restrict numpy to version < 2. (#236)
Browse files Browse the repository at this point in the history
## Description

New numpy version break binary compatibility with Cython. For now we
restrict numpy version until this issue is fixed.

## Checklist:

<!---
This checklist serves as a reminder of a couple of things that ensure
your pull request will be merged swiftly.
-->

- [x] The pull request only contains commits that are related to it.
- [x] I have added appropriate tests and documentation.
- [x] I have made sure that all CI jobs on GitHub pass.
- [x] The pull request introduces no new warnings and follows the
project's style guidelines.

---------

Signed-off-by: Lukas Burgholzer <[email protected]>
Co-authored-by: Lukas Burgholzer <[email protected]>
  • Loading branch information
pehamTom and burgholzer authored Jul 1, 2024
1 parent c639ba1 commit d02996e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ dependencies = [
"z3-solver>=4.11,<4.14",
"qecsim",
"ldpc>=0.1.50",
"numpy",
"numpy < 2", # some of our dependencies are not yet compatible with numpy 2.0
"qiskit[qasm3-import]>=1.0.0",
"qiskit-aer>=0.14.0",
"bposd",
Expand Down

0 comments on commit d02996e

Please sign in to comment.