fix function signature of get_requires_for_build_wheel

This commit is contained in:
Max Bachmann 2022-12-20 18:36:06 +01:00 committed by GitHub
parent 07a0381077
commit 8eadc371b0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 7 additions and 1 deletions

View File

@ -1,6 +1,12 @@
Changelog
---------
[2.13.7] -
^^^^^^^^^^^^^^^^^^^^^
Fixed
~~~~~~~
- fix function signature of ``get_requires_for_build_wheel``
[2.13.6] - 2022-12-11
^^^^^^^^^^^^^^^^^^^^^
Changed

View File

@ -84,7 +84,7 @@ def _ninja_required():
return False
def get_requires_for_build_wheel(self, config_settings=None):
def get_requires_for_build_wheel(config_settings=None):
packages = []
if _cmake_required():
packages.append("cmake")