Skip to content

Commit

Permalink
bump lightning to 0.31 in setup.py, pin scipy to [1.8,1.10] (#4304)
Browse files Browse the repository at this point in the history
* bump lightning to 0.31 in setup.py

* trigger ci

* pin scipy

* Revert "pin scipy"

This reverts commit 492ad40.

* take Soran's forward fix for scipy fac2

* revert the scipy un-pinning and forward fix - just pin scipy

* remove lower bound in files that didn't have them

* remove autograd lower bound
  • Loading branch information
timmysilv authored Jun 26, 2023
1 parent f29bf32 commit 18603e2
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions doc/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
--find-links https://download.pytorch.org/whl/torch_stable.html
pip
appdirs
autograd>=1.4,<=1.5
autograd<=1.5
autoray
jax==0.4.10
jaxlib==0.4.10
Expand All @@ -10,7 +10,7 @@ m2r2
numpy
pygments-github-lexers
semantic_version==2.10
scipy
scipy<=1.10
docutils==0.16
sphinx==3.5; python_version < "3.10"
sphinx==4.2; python_version == "3.10"
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
numpy<1.24
scipy~=1.8
scipy>=1.8,<=1.10
cvxpy~=1.2
cvxopt~=1.3.0
cachetools~=5.0.0
Expand Down
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,16 +21,16 @@

requirements = [
"numpy<1.24",
"scipy",
"scipy<=1.10",
"networkx",
"rustworkx",
"autograd>=1.4,<=1.5",
"autograd<=1.5",
"toml",
"appdirs",
"semantic-version>=2.7",
"autoray>=0.3.1",
"cachetools",
"pennylane-lightning>=0.30",
"pennylane-lightning>=0.31",
"requests",
]

Expand Down

0 comments on commit 18603e2

Please sign in to comment.