Skip to content

Commit 5a54d5b

Browse files
authored
Append arbitrary args instead of prepending (#4217)
2 parents a9e7b72 + 1719601 commit 5a54d5b

File tree

3 files changed

+21
-2
lines changed

3 files changed

+21
-2
lines changed

newsfragments/4217.bugfix.rst

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
Fix argument order of ``--config-settings["--build-option"]`` arguments.
2+
This was broken by <https://github.com/pypa/setuptools/pull/4079>`.

setuptools/build_meta.py

+9-2
Original file line numberDiff line numberDiff line change
@@ -369,7 +369,12 @@ def prepare_metadata_for_build_wheel(
369369
return self._bubble_up_info_directory(metadata_directory, ".dist-info")
370370

371371
def _build_with_temp_dir(
372-
self, setup_command, result_extension, result_directory, config_settings
372+
self,
373+
setup_command,
374+
result_extension,
375+
result_directory,
376+
config_settings,
377+
arbitrary_args=(),
373378
):
374379
result_directory = os.path.abspath(result_directory)
375380

@@ -384,6 +389,7 @@ def _build_with_temp_dir(
384389
*setup_command,
385390
"--dist-dir",
386391
tmp_dist_dir,
392+
*arbitrary_args,
387393
]
388394
with no_install_setup_requires():
389395
self.run_setup()
@@ -402,10 +408,11 @@ def build_wheel(
402408
):
403409
with suppress_known_deprecation():
404410
return self._build_with_temp_dir(
405-
['bdist_wheel', *self._arbitrary_args(config_settings)],
411+
['bdist_wheel'],
406412
'.whl',
407413
wheel_directory,
408414
config_settings,
415+
self._arbitrary_args(config_settings),
409416
)
410417

411418
def build_sdist(self, sdist_directory, config_settings=None):

setuptools/tests/test_build_meta.py

+10
Original file line numberDiff line numberDiff line change
@@ -720,6 +720,16 @@ def test_editable_without_config_settings(self, tmpdir_cwd):
720720
build_backend.build_editable("temp")
721721
assert not Path("build").exists()
722722

723+
def test_build_wheel_inplace(self, tmpdir_cwd):
724+
config_settings = {"--build-option": ["build_ext", "--inplace"]}
725+
path.build(self._simple_pyproject_example)
726+
build_backend = self.get_build_backend()
727+
assert not Path("build").exists()
728+
Path("build").mkdir()
729+
build_backend.prepare_metadata_for_build_wheel("build", config_settings)
730+
build_backend.build_wheel("build", config_settings)
731+
assert Path("build/proj-42-py3-none-any.whl").exists()
732+
723733
@pytest.mark.parametrize("config_settings", [{"editable-mode": "strict"}])
724734
def test_editable_with_config_settings(self, tmpdir_cwd, config_settings):
725735
path.build({**self._simple_pyproject_example, '_meta': {}})

0 commit comments

Comments
 (0)