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.
This commit is contained in:
Kumi 2024-02-09 13:01:07 +01:00
parent 5ccb4e080b
commit e0be3eec25
Signed by: kumi
GPG key ID: ECBCC9082395383F

View file

@ -26,4 +26,4 @@ jobs:
- name: Build the package
run: |
python -m build
python3 -m build