Closed jameslamb closed 10 months ago
Similar to #64, this proposes small changes to make bugs related to passing configuration between the project's functions less likely.
make_dependency_file()
extras
make_dependency_file() is only called in one place, and that place supplies a value for extras.
https://github.com/rapidsai/dependency-file-generator/blob/36a40613235089b4de271367ccef3674678c1555/src/rapids_dependency_file_generator/rapids_dependency_file_generator.py#L442-L450
:tada: This PR is included in version 1.9.0 :tada:
The release is available on:
Your semantic-release bot :package::rocket:
Similar to #64, this proposes small changes to make bugs related to passing configuration between the project's functions less likely.
make_dependency_file()
(which takes 7 arguments) only be called with keyword argumentsextras
in that functionHow is this safe?
make_dependency_file()
is only called in one place, and that place supplies a value forextras
.https://github.com/rapidsai/dependency-file-generator/blob/36a40613235089b4de271367ccef3674678c1555/src/rapids_dependency_file_generator/rapids_dependency_file_generator.py#L442-L450