Skip to content
This repository has been archived by the owner on Dec 7, 2021. It is now read-only.

Install PySCF for all but Windows #937

Merged
merged 2 commits into from
Apr 30, 2020
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
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,5 @@ quandl
setuptools>=40.1.0
h5py
networkx>=2.2
pyscf; sys_platform == 'linux' or (python_version < '3.8' and sys_platform != 'win32')
pyscf; sys_platform != 'win32'
cplex; python_version >= '3.6' and python_version < '3.8'
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
"setuptools>=40.1.0",
"h5py",
"networkx>=2.2",
"pyscf; sys_platform == 'linux' or (python_version < '3.8' and sys_platform != 'win32')",
"pyscf; sys_platform != 'win32'",
"cplex; python_version >= '3.6' and python_version < '3.8'",
]

Expand Down