From ec54d75dd9d0235b4b4f9a98a5654702069a8869 Mon Sep 17 00:00:00 2001 From: Manoel Marques Date: Thu, 30 Apr 2020 10:11:02 -0400 Subject: [PATCH] Install PySCF for all but Windows --- requirements.txt | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/requirements.txt b/requirements.txt index f071c9440f..26cab9de35 100644 --- a/requirements.txt +++ b/requirements.txt @@ -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' diff --git a/setup.py b/setup.py index 95f7c2d27d..aeaa14844f 100644 --- a/setup.py +++ b/setup.py @@ -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'", ]