From 71aa1388e0d7dd2a1c073874a25c88a98ed914f8 Mon Sep 17 00:00:00 2001 From: Sviatoslav Sydorenko Date: Fri, 19 Aug 2022 19:01:40 +0200 Subject: [PATCH] Drop `wheel` from `pyproject.toml` example It is unnecessary and has been deleted from the setuptools' docs too. The setuptools' PEP 517 build backend implementation has been auto-adding the `wheel` dependency since it's first been implemented. --- doc/en/explanation/goodpractices.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/en/explanation/goodpractices.rst b/doc/en/explanation/goodpractices.rst index 0b812ba58..8deef9abe 100644 --- a/doc/en/explanation/goodpractices.rst +++ b/doc/en/explanation/goodpractices.rst @@ -17,7 +17,7 @@ Next, place a ``pyproject.toml`` file in the root of your package: .. code-block:: toml [build-system] - requires = ["setuptools>=42", "wheel"] + requires = ["setuptools >= 42"] build-backend = "setuptools.build_meta" and a ``setup.cfg`` file containing your package's metadata with the following minimum content: