From 270c626d6bb2b231f0e72f38f422aed5048cb590 Mon Sep 17 00:00:00 2001 From: Sviatoslav Sydorenko Date: Mon, 27 Nov 2023 16:29:10 +0100 Subject: [PATCH] Stop suggesting adding `wheel` to `pyproject.toml` This was a historic mistake in the `setuptools`' docs that many projects copied. But `wheel` is already a dependency injected by `setuptools` when needed. So let's not suggest people to depend on it when producing sdists. --- docs/faq.md | 1 - 1 file changed, 1 deletion(-) diff --git a/docs/faq.md b/docs/faq.md index fa1adb135..f6ca4b3a9 100644 --- a/docs/faq.md +++ b/docs/faq.md @@ -216,7 +216,6 @@ to build, your pyproject.toml might include a section like this: [build-system] requires = [ "setuptools>=42", - "wheel", "Cython", ]