This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author EWDurbin
Recipients EWDurbin, dstufft, eric.araujo
Date 2017-12-12.22:47:34
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1513118854.67.0.213398074469.issue32295@psf.upfronthosting.co.za>
In-reply-to
Content
bdist_wheel is implemented as a distutils.core.Command, see https://github.com/pypa/wheel/blob/3a87ecebaba765475392ae2cdfa2a51cb78360e0/wheel/bdist_wheel.py

I was unable to find a good place to transparently hook in and catch the missing command class, but I agree that setuptools would be a far faster avenue to get this out to users.

Alternatives include:
  1) implementing bdist_wheel as a command in setuptools... which would have to get out of the way or call the real command when the wheel package is installed.
  2) trying to get wheel merged into setuptools, which would be a much larger project.

I'll see what option 1 looks like!
History
Date User Action Args
2017-12-12 22:47:34EWDurbinsetrecipients: + EWDurbin, eric.araujo, dstufft
2017-12-12 22:47:34EWDurbinsetmessageid: <1513118854.67.0.213398074469.issue32295@psf.upfronthosting.co.za>
2017-12-12 22:47:34EWDurbinlinkissue32295 messages
2017-12-12 22:47:34EWDurbincreate