We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In the base abstract definition of _get_system_python_interpreter() below, it is possible to return None.
_get_system_python_interpreter()
None
craft-parts/craft_parts/plugins/base.py
Line 237 in 8907c07
However, this line below attempts to stringify the return value of _get_system_python_interpreter(), which will always break if set to None.
craft-parts/craft_parts/plugins/uv_plugin.py
Line 102 in 8907c07
Override UvPlugin's _get_system_python_interpreter to return None, then attempt to build a project.
UvPlugin
_get_system_python_interpreter
N/A
The text was updated successfully, but these errors were encountered:
Thank you for reporting your feedback to us!
The internal ticket has been created: https://warthogs.atlassian.net/browse/CRAFT-4010.
This message was autogenerated
Sorry, something went wrong.
bepri
Successfully merging a pull request may close this issue.
Bug Description
In the base abstract definition of
_get_system_python_interpreter()
below, it is possible to returnNone
.craft-parts/craft_parts/plugins/base.py
Line 237 in 8907c07
However, this line below attempts to stringify the return value of
_get_system_python_interpreter()
, which will always break if set toNone
.craft-parts/craft_parts/plugins/uv_plugin.py
Line 102 in 8907c07
To Reproduce
Override
UvPlugin
's_get_system_python_interpreter
to returnNone
, then attempt to build a project.part yaml
Relevant log output
The text was updated successfully, but these errors were encountered: