Skip to content

Commit

Permalink
Fix problems with scipy and pyscf
Browse files Browse the repository at this point in the history
  • Loading branch information
maxscheurer committed Jul 1, 2023
1 parent 57da290 commit 0f4eae7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion conda/environment_dev_linux.yml
Expand Up @@ -12,7 +12,7 @@ dependencies:
- pip
# Run
- numpy >=1.14
- scipy >=1.2
- scipy >=1.2,<1.11 # TODO: pyscf problems with sym_pos kwarg, remove at some point
- tqdm >=4.30
- h5py >=2.9
- opt_einsum >=3.0
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -539,7 +539,7 @@ def read_readme():
install_requires=[
"opt_einsum >= 3.0",
"numpy >= 1.14",
"scipy >= 1.2",
"scipy >= 1.2,<1.11", # TODO: pyscf problem with sym_pos, remove later
"h5py >= 2.9",
"tqdm >= 4.30",
],
Expand Down

0 comments on commit 0f4eae7

Please sign in to comment.