]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
remove redundant wheel dep from pyproject.toml
authorMichał Górny <mgorny@gentoo.org>
Fri, 27 Jan 2023 08:31:01 +0000 (03:31 -0500)
committersqla-tester <sqla-tester@sqlalchemy.org>
Fri, 27 Jan 2023 08:31:01 +0000 (03:31 -0500)
### Description
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

### Checklist

This pull request is:

- [x] A misc build system change (it doesn't really fit the other categories)
- [ ] A documentation / typographical error fix
- Good to go, no issue or tests are needed
- [ ] A short code fix
- please include the issue number, and create an issue if none exists, which
  must include a complete example of the issue.  one line code fixes without an
  issue and demonstration will not be accepted.
- Please include: `Fixes: #<issue number>` in the commit message
- please include tests.   one line code fixes without tests will not be accepted.
- [ ] A new feature implementation
- please include the issue number, and create an issue if none exists, which must
  include a complete example of how the feature would look.
- Please include: `Fixes: #<issue number>` in the commit message
- please include tests.

**Have a nice day!**

Closes: #9153
Pull-request: https://github.com/sqlalchemy/sqlalchemy/pull/9153
Pull-request-sha: 8f2d8991f9c057b2dd1a0ca7017968e6eb35e5c8

Change-Id: I877e56819cd3068d94721a7094880366fb2abc9b

pyproject.toml

index fe52ea7fc6b3cc59857b85561e0766eb841e6174..ecf030a42c43c28ed19cf95c670f410cf03377db 100644 (file)
@@ -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
     ]