Skip to content
New issue

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

PEP 517: add missing def for the mandatory hook build_wheel signature #2535

Merged
merged 2 commits into from
Apr 19, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions pep-0517.txt
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ build_wheel

::

build_wheel(wheel_directory, config_settings=None, metadata_directory=None):
def build_wheel(wheel_directory, config_settings=None, metadata_directory=None):
...

Must build a .whl file, and place it in the specified ``wheel_directory``. It
Expand Down Expand Up @@ -340,7 +340,7 @@ get_requires_for_build_sdist
::

def get_requires_for_build_sdist(config_settings=None):
...
...

This hook MUST return an additional list of strings containing :pep:`508`
dependency specifications, above and beyond those specified in the
Expand Down