Skip to content

Commit

Permalink
Remove pybind11 upper bound in pyproject.toml example in docs
Browse files Browse the repository at this point in the history
The ~= upper bound version as it is now will cause incompatibility with Python 3.11. I got bit by copying and pasting the pyproject.toml from this documentation.
  • Loading branch information
ketozhang authored Aug 2, 2023
1 parent 8b03ffa commit 00016bd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/compiling.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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::
Expand Down

0 comments on commit 00016bd

Please sign in to comment.