Skip to content

Commit 041e642

Browse files
Use kwargs
1 parent 6cb0e6b commit 041e642

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

rapids_build_backend/impls.py

+6-6
Original file line numberDiff line numberDiff line change
@@ -190,12 +190,12 @@ def _edit_pyproject(config):
190190
if cuda_version is not None:
191191
matrix["cuda"] = [f"{cuda_version[0]}.{cuda_version[1]}"]
192192
rapids_dependency_file_generator.make_dependency_files(
193-
parsed_config,
194-
[file_key],
195-
{rapids_dependency_file_generator.Output.PYPROJECT},
196-
matrix,
197-
[],
198-
False,
193+
parsed_config=parsed_config,
194+
file_keys=[file_key],
195+
output={rapids_dependency_file_generator.Output.PYPROJECT},
196+
matrix=matrix,
197+
prepend_channels=[],
198+
to_stdout=False,
199199
)
200200
pyproject = utils._get_pyproject()
201201
project_data = pyproject["project"]

0 commit comments

Comments
 (0)