You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Originally reported by: Nate Coraor (Bitbucket: natefoo, GitHub: natefoo)
As detailed in issue #128 and issue #152, it's sometimes desirable to have a platform-specific platform tag even on pure Python wheels. This is now possible with the --plat-tag option, but this requires the user to know what the correct tag is for the build platform. This information is easily acquired from python setup.py bdist_wheel --help or by calling distutils.util.get_platform(), but it'd be more convenient and less error-prone if there was a way to specify "I want the default platform-specific tag on this pure python wheel."
This could be done in a few different ways:
A special reserved platform tag passed to --plat-tag like default, arch_default, platform_default, platform, etc.
Originally reported by: Nate Coraor (Bitbucket: natefoo, GitHub: natefoo)
As detailed in issue #128 and issue #152, it's sometimes desirable to have a platform-specific platform tag even on pure Python wheels. This is now possible with the
--plat-tag
option, but this requires the user to know what the correct tag is for the build platform. This information is easily acquired frompython setup.py bdist_wheel --help
or by callingdistutils.util.get_platform()
, but it'd be more convenient and less error-prone if there was a way to specify "I want the default platform-specific tag on this pure python wheel."This could be done in a few different ways:
--plat-tag
likedefault
,arch_default
,platform_default
,platform
, etc.--nonpure-plat-tag
The text was updated successfully, but these errors were encountered: