From 7aa4df9d2cfc16f0fd7bec7b052877e7cb38e77f Mon Sep 17 00:00:00 2001 From: Kumi Date: Fri, 9 Feb 2024 13:07:33 +0100 Subject: [PATCH] Standardize Python version syntax in CI config Ensure the Python version is specified as a string in the Ubuntu workflow configuration to prevent potential parsing issues by the setup-python GitHub Action. This update aligns with the recommended practices for YAML file consistency and compatibility. --- .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 a777340..9391c02 100644 --- a/.github/workflows/python-package-ubuntu.yml +++ b/.github/workflows/python-package-ubuntu.yml @@ -23,7 +23,7 @@ jobs: - name: Set up Python 3.10 uses: actions/setup-python@v2 with: - python-version: 3.10 + python-version: "3.10" - name: Prepare Python environment run: |