From ccac2c025533beacfd9e98ba8341f5562f0f6de0 Mon Sep 17 00:00:00 2001 From: Jari Date: Thu, 17 Oct 2024 10:37:49 +0100 Subject: [PATCH] Add pybind11 requirement to setup.py --- setup.py | 1 + 1 file changed, 1 insertion(+) diff --git a/setup.py b/setup.py index 6cabb2c..02d463b 100644 --- a/setup.py +++ b/setup.py @@ -149,6 +149,7 @@ def build_extension(self, ext): ], ext_modules=[CMakeExtension("gofit")], cmdclass={"build_ext": CMakeBuild}, + install_requires=["pybind11[global]"], python_requires=">=3.6", zip_safe=False, )