From 7c14ae9c84f103c2aea8a6bf57ebe3c90cad7f44 Mon Sep 17 00:00:00 2001 From: David Hoese Date: Fri, 4 Feb 2022 09:17:40 -0600 Subject: [PATCH] Fix 3.10 specifier in deploy --- .github/workflows/deploy.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/deploy.yaml b/.github/workflows/deploy.yaml index 032d48f..b2960c2 100644 --- a/.github/workflows/deploy.yaml +++ b/.github/workflows/deploy.yaml @@ -34,7 +34,7 @@ jobs: fail-fast: false matrix: os: [windows-latest, macos-latest] - python-version: [3.7, 3.8, 3.9, 3.10] + python-version: ["3.7", "3.8", "3.9", "3.10"] include: # Using pythons inside a docker image to provide all the Linux # python-versions permutations. @@ -55,7 +55,7 @@ jobs: - name: Set up Python ${{ matrix.python-version }} uses: actions/setup-python@v1 with: - python-version: ${{ matrix.python-version }} + python-version: "${{ matrix.python-version }}" - name: Install dependencies run: |