We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Instead of
Wheel-Version: 1.0 Generator: bdist_wheel (0.29.0) Root-Is-Purelib: false Tag: cp27-cp27mu-linux_x86_64
we could have
Wheel-Version: 1.0 Generator: skbuild.command.bdist_wheel (0.3.0) Root-Is-Purelib: false Tag: cp27-cp27mu-linux_x86_64
In section file-contents, the PEP-0427 mentions the following:
[...] 8. Generator is the name and optionally the version of the software that produced the archive. [...]
Implementation of bdist_wheel is in
bdist_wheel
https://bitbucket.org/pypa/wheel/src/54ddbcc9cec25e1f4d111a142b8bfaa163130a61/wheel/bdist_wheel.py?at=default&fileviewer=file-view-default#bdist_wheel.py-260:265
[...] def write_wheelfile(self, wheelfile_base, generator='bdist_wheel (' + wheel_version + ')'): from email.message import Message msg = Message() msg['Wheel-Version'] = '1.0' # of the spec msg['Generator'] = generator msg['Root-Is-Purelib'] = str(self.root_is_pure).lower() [...]
Otherwise, here is what other tools are doing:
[...] wheel_file_template = """\ Wheel-Version: 1.0 Generator: flit {version} Root-Is-Purelib: true """.format(version=__version__) [...]
???
The text was updated successfully, but these errors were encountered:
skbuild.command.bdist_wheel: Set "skbuild <version>" as wheel generator
6f1f72e
Fixes #191
b0caa15
b1bb3ef
23f19cd
21df3f5
acba7f3
0d794db
No branches or pull requests
Instead of
we could have
In section file-contents, the PEP-0427 mentions the following:
Implementation of
bdist_wheel
is inhttps://bitbucket.org/pypa/wheel/src/54ddbcc9cec25e1f4d111a142b8bfaa163130a61/wheel/bdist_wheel.py?at=default&fileviewer=file-view-default#bdist_wheel.py-260:265
Otherwise, here is what other tools are doing:
The text was updated successfully, but these errors were encountered: