This is an automated email from the ASF dual-hosted git repository. juergbi pushed a commit to branch juerg/pip in repository https://gitbox.apache.org/repos/asf/buildstream-plugins.git
commit ca56b1310c0f4e3d268b9a8f577ae9828847faf5 Author: Jürg Billeter <[email protected]> AuthorDate: Fri May 17 13:06:00 2024 +0200 sources/pip.py: Add `python3` as preferred Python command Use the Python 3.x version that is configured as default on the host, if available. This will also make the plugin work with future Python 3.x version that aren't yet listed explicitly. --- src/buildstream_plugins/sources/pip.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/buildstream_plugins/sources/pip.py b/src/buildstream_plugins/sources/pip.py index 6193200..1c8546e 100644 --- a/src/buildstream_plugins/sources/pip.py +++ b/src/buildstream_plugins/sources/pip.py @@ -93,6 +93,7 @@ _PYTHON_VERSIONS = [ "python3.10", "python3.11", "python3.12", + "python3", ] # List of allowed extensions taken from
