-
Notifications
You must be signed in to change notification settings - Fork 126
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
ModuleNotFoundError: No module named 'wheel' #750
Comments
You're building with isolation so the It looks as though you might've had an implicit dependency on
|
[build-system]
build-backend = "setuptools.build_meta"
requires = ["setuptools"] Is fine. I’m guessing we no longer build pure setup.py packages, then? |
Ahh, you needed wheel for get_requires_for_build_sdist, okay, that’s why you need wheel. I’d recommend not importing wheel in setup.py, it does not consider its interface public. But okay, that’s to be expected then. |
After
I get an error
... ModuleNotFoundError: No module named 'wheel' ERROR Backend subprocess exited when trying to invoke get_requires_for_build_sdist
but if I downgrade
build
version to 1.0.3 the error goes awayThe text was updated successfully, but these errors were encountered: