From c48cad38d6685d570823382f55d7950005c5f40c Mon Sep 17 00:00:00 2001 From: Chris Tralie Date: Fri, 23 Feb 2024 17:43:40 -0500 Subject: [PATCH] Apparently quotations are needed... --- .github/workflows/python-app.yml | 6 +++--- .github/workflows/python-publish.yml | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/python-app.yml b/.github/workflows/python-app.yml index 6ac8c6c..ceb22b9 100644 --- a/.github/workflows/python-app.yml +++ b/.github/workflows/python-app.yml @@ -13,7 +13,7 @@ jobs: test: strategy: matrix: - python-version: [3.9, 3.10, 3.11, 3.12] + python-version: ["3.9", "3.10", "3.11", "3.12"] os: ["ubuntu-latest", "macos-latest"] runs-on: ${{ matrix.os }} @@ -47,7 +47,7 @@ jobs: strategy: fail-fast: false matrix: - python-version: [3.9, 3.10, 3.11, 3.12] + python-version: ["3.9", "3.10", "3.11", "3.12"] steps: - uses: actions/checkout@v2 @@ -72,7 +72,7 @@ jobs: strategy: fail-fast: false matrix: - python-version: [3.9, 3.10, 3.11, 3.12] + python-version: ["3.9", "3.10", "3.11", "3.12"] steps: - uses: actions/checkout@v2 diff --git a/.github/workflows/python-publish.yml b/.github/workflows/python-publish.yml index fd8ad7c..1d59e43 100644 --- a/.github/workflows/python-publish.yml +++ b/.github/workflows/python-publish.yml @@ -13,7 +13,7 @@ jobs: strategy: fail-fast: false matrix: - python-version: [3.9, 3.10, 3.11, 3.12] + python-version: ["3.9", "3.10", "3.11", "3.12"] runs-on: "ubuntu-latest" steps: @@ -43,7 +43,7 @@ jobs: fail-fast: false matrix: arch: ['x86', 'x64'] - python-version: [3.9, 3.10, 3.11, 3.12] + python-version: ["3.9", "3.10", "3.11", "3.12"] runs-on: "windows-latest"