From fda612b6cf3107fabb84dead1ca9c171a48e1314 Mon Sep 17 00:00:00 2001 From: Nicolas Roussel Date: Fri, 26 Apr 2024 10:06:38 +0200 Subject: [PATCH] Restrict `pybind11` version when building wheel --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 4382c409b..917be5f5b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,5 +1,5 @@ [build-system] -requires = ["setuptools", "wheel", "scikit-build", "cmake", "ninja", "pybind11>=2.10.1", "drjit==0.4.4"] +requires = ["setuptools", "wheel", "scikit-build", "cmake", "ninja", "pybind11>=2.10.1,<=v2.11.1", "drjit==0.4.4"] [tool.pytest.ini_options] norecursedirs = [ "ext" ]