From 95086ea5bc9f528bea5c7aff1cab76a14891b821 Mon Sep 17 00:00:00 2001 From: Joseph Bredahl Date: Sun, 14 Apr 2024 19:32:01 -0500 Subject: [PATCH] ci.yml Use quotes around python versions version 3.10 was interpreted as 3.1. Per actions/setup-python#160 use quotes around versions to get around yaml limitation --- .github/workflows/ci.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a5f7d63..27db74a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -10,12 +10,12 @@ jobs: strategy: matrix: os: [ubuntu-latest] - python: [3.8, 3.9, 3.10, 3.11, 3.12] + python: ['3.8', '3.9', '3.10', '3.11', '3.12'] include: - os: macos-latest - python: 3.12 + python: '3.12' - os: windows-latest - python: 3.12 + python: '3.12' runs-on: ${{ matrix.os }} @@ -45,7 +45,7 @@ jobs: - name: Set up Python 3.12 uses: actions/setup-python@v1 with: - python: 3.12 + python: '3.12' - name: Install dependencies run: | python -m pip install --upgrade pip