Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
setup.py: try to specify that we need pybind11
[simgrid.git] / setup.py
index 74503ea..ef23a75 100755 (executable)
--- a/setup.py
+++ b/setup.py
@@ -74,7 +74,7 @@ class CMakeBuild(build_ext):
 
 setup(
     name='simgrid',
-    version='3.22.5',
+    version='3.23.1',
     author='Da SimGrid Team',
     author_email='simgrid-devel@lists.gforge.inria.fr',
     description='Toolkit for scalable simulation of distributed applications',
@@ -84,6 +84,8 @@ setup(
                       "or even assess legacy MPI applications."),
     ext_modules=[CMakeExtension('simgrid')],
     cmdclass=dict(build_ext=CMakeBuild),
+    install_requires=['pybind11>=2.3'],
+    setup_requires=['pybind11>=2.3'],
     zip_safe=False,
     classifiers=[
       "Development Status :: 4 - Beta",