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

Restrict scipy version to < 1.13.0. #1323

Merged
merged 2 commits into from
Apr 4, 2024
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
1 change: 1 addition & 0 deletions pytket/docs/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ Fixes:
targets.
* When adding operations to a circuit, check for invalid wires before adding a
vertex to the circuit.
* Restrict scipy version to 1.12.x to avoid quimb-related errors from zx module.

1.26.0 (March 2024)
-------------------
Expand Down
2 changes: 1 addition & 1 deletion pytket/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ def finalize_options(self):
"sympy ~=1.6",
"numpy >=1.21.4, <2.0",
"lark-parser ~=0.7",
"scipy >=1.7.2, <2.0",
"scipy ~=1.12.0",
"networkx >= 2.8.8",
"graphviz ~= 0.14",
"jinja2 ~= 3.0",
Expand Down
Loading