From 9e455684c1fda47b5b2ad4e7ff956706e78900dc Mon Sep 17 00:00:00 2001 From: Ian Bell Date: Tue, 28 Oct 2014 14:46:27 -0400 Subject: [PATCH] Reverted installation requirements - better to warn when trying to import CoolProp See https://github.com/CoolProp/CoolProp/issues/160 Signed-off-by: Ian Bell --- wrappers/Python/setup.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/wrappers/Python/setup.py b/wrappers/Python/setup.py index 898f7ff1..7889b939 100644 --- a/wrappers/Python/setup.py +++ b/wrappers/Python/setup.py @@ -222,9 +222,6 @@ if __name__=='__main__': if USE_CYTHON: ext_modules = cythonize(ext_modules) - - # Add some dependencies - install_requires = ['numpy','matplotlib'] try: setup (name = 'CoolProp', @@ -233,7 +230,6 @@ if __name__=='__main__': author_email='ian.h.bell@gmail.com', url='http://www.coolprop.org', description = """Open-source thermodynamic and transport properties database""", - install_requires = install_requires, packages = find_packages(), ext_modules = ext_modules, package_dir = {'CoolProp':'CoolProp',},