From d6bb1cbbefa2849074eef3c9a980e8056edff4ab Mon Sep 17 00:00:00 2001 From: "Keto D. Zhang" Date: Wed, 2 Aug 2023 17:02:24 -0700 Subject: [PATCH 1/2] docs: Remove upper bound on pybind11 in example pyproject.toml for setuptools --- docs/compiling.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/compiling.rst b/docs/compiling.rst index 1fd098bec4..8e79dfd516 100644 --- a/docs/compiling.rst +++ b/docs/compiling.rst @@ -143,7 +143,7 @@ Your ``pyproject.toml`` file will likely look something like this: .. code-block:: toml [build-system] - requires = ["setuptools>=42", "wheel", "pybind11~=2.6.1"] + requires = ["setuptools>=42", "wheel", "pybind11>=2.6.1"] build-backend = "setuptools.build_meta" .. note:: From 0b53b0ca7d7521d52fea9e0e06bc30c23476937c Mon Sep 17 00:00:00 2001 From: Henry Schreiner Date: Thu, 3 Aug 2023 10:31:04 -0400 Subject: [PATCH 2/2] Update docs/compiling.rst --- docs/compiling.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/compiling.rst b/docs/compiling.rst index 8e79dfd516..9d53904c42 100644 --- a/docs/compiling.rst +++ b/docs/compiling.rst @@ -143,7 +143,7 @@ Your ``pyproject.toml`` file will likely look something like this: .. code-block:: toml [build-system] - requires = ["setuptools>=42", "wheel", "pybind11>=2.6.1"] + requires = ["setuptools>=42", "pybind11>=2.6.1"] build-backend = "setuptools.build_meta" .. note::