feat(workflows): Use python3 for venv and version check
Some checks failed
Python Package CI/CD / Setup and Test (push) Failing after 21s
Python Package CI/CD / Publish to PyPI (push) Failing after 10m58s

Updated the GitHub Actions workflow in `.forgejo/workflows/release.yml` to explicitly use `python3` instead of `python` for both version checking and virtual environment setup. This change ensures compatibility and clarity across environments where `python` might still point to Python 2.x, preventing potential conflicts and erasing ambiguity. The adjustment aligns with modern best practices, acknowledging the widespread transition to Python 3 and its tooling.
This commit is contained in:
Kumi 2024-04-15 18:58:44 +02:00
parent d57a7367ab
commit c33efd2e73
Signed by: kumi
GPG key ID: ECBCC9082395383F

View file

@ -4,7 +4,7 @@ on:
workflow_dispatch:
push:
tags:
- '*'
- "*"
jobs:
setup:
@ -23,8 +23,8 @@ jobs:
- name: Set up Python environment
run: |
python -V
python -m venv venv
python3 -V
python3 -m venv venv
source venv/bin/activate
pip install -U pip
pip install .[all]
@ -45,7 +45,7 @@ jobs:
- name: Set up Python environment
run: |
python -m venv venv
python3 -m venv venv
source venv/bin/activate
- name: Install publishing tools