From e0be3eec256f52f7df0c9d8166ae35d8f8786602 Mon Sep 17 00:00:00 2001 From: Kumi Date: Fri, 9 Feb 2024 13:01:07 +0100 Subject: [PATCH] Updated Python command to specify version 3 for build step Modified the build command in the CI workflow to explicitly call Python 3 to ensure compatibility and avoid potential conflicts with systems where Python 2 is the default. This change aligns the build process with modern Python practices and reduces ambiguity in environments where multiple Python versions are available. --- .github/workflows/python-package-ubuntu.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/python-package-ubuntu.yml b/.github/workflows/python-package-ubuntu.yml index cf7a851..5d304a8 100644 --- a/.github/workflows/python-package-ubuntu.yml +++ b/.github/workflows/python-package-ubuntu.yml @@ -26,4 +26,4 @@ jobs: - name: Build the package run: | - python -m build + python3 -m build