From: Michał Górny Date: Fri, 27 Jan 2023 08:16:54 +0000 (+0100) Subject: remove redundant wheel dep from pyproject.toml X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8f2d8991f9c057b2dd1a0ca7017968e6eb35e5c8;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git remove redundant wheel dep from pyproject.toml Remove the redundant `wheel` dependency, as it is added by the backend automatically. Listing it explicitly in the documentation was a historical mistake and has been fixed since, see: https://github.com/pypa/setuptools/commit/f7d30a9529378cf69054b5176249e5457aaf640a --- diff --git a/pyproject.toml b/pyproject.toml index fe52ea7fc6..ecf030a42c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -2,7 +2,6 @@ build-backend = "setuptools.build_meta" requires = [ "setuptools>=47", - "wheel>=0.34", "cython>=0.29.24; python_implementation == 'CPython'", # Skip cython when using pypy ]