From 4197cf2c5eb10f764479fd2e502d9ff9c073811e Mon Sep 17 00:00:00 2001 From: Leonid Boytsov Date: Thu, 12 Jul 2018 20:15:36 -0400 Subject: [PATCH] Changing install_requires to setup_requires so pip could pull up dependencies during the local installation. --- python_bindings/setup.py | 1 + 1 file changed, 1 insertion(+) diff --git a/python_bindings/setup.py b/python_bindings/setup.py index c26a53c..66211eb 100755 --- a/python_bindings/setup.py +++ b/python_bindings/setup.py @@ -137,6 +137,7 @@ def build_extensions(self): high dimensions and/or non-metric spaces. Hence, the main focus is on approximate methods.""", ext_modules=ext_modules, install_requires=['pybind11>=2.0', 'numpy'], + setup_requires=['pybind11>=2.0', 'numpy'], cmdclass={'build_ext': BuildExt}, test_suite="tests", zip_safe=False,