Closed
Description
Problem Description
The load_extensions method was recently added, however it does not have the ability to pass arguments through to the setup function.
Proposed Solution
Change recursive key word into **kwargs and use kwargs.get(). Remove this then pass through the rest of the kwargs through to the setup function.
Alternatives Considered
Change *packages: str into packages: tuple[str] and pass through *args to the setup function.
Additional Information
No response
Code of Conduct
- I agree to follow the contribution requirements.