Skip to content

Commit

Permalink
Fix 3.10 specifier in deploy
Browse files Browse the repository at this point in the history
  • Loading branch information
djhoese committed Feb 4, 2022
1 parent ebb9e41 commit 7c14ae9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/deploy.yaml
Expand Up @@ -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.
Expand All @@ -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: |
Expand Down

0 comments on commit 7c14ae9

Please sign in to comment.