Fix python 3.10 in default action

This commit is contained in:
Andrew Senetar 2022-01-24 19:30:42 -06:00
parent 6456e64328
commit 880205dbc8
Signed by: arsenetar
GPG Key ID: C63300DCE48AB2F1
1 changed files with 3 additions and 3 deletions

View File

@ -16,7 +16,7 @@ jobs:
- name: Set up Python 3.10 - name: Set up Python 3.10
uses: actions/setup-python@v2 uses: actions/setup-python@v2
with: with:
python-version: 3.10 python-version: '3.10'
- name: Install dependencies - name: Install dependencies
run: | run: |
python -m pip install --upgrade pip python -m pip install --upgrade pip
@ -31,7 +31,7 @@ jobs:
- name: Set up Python 3.10 - name: Set up Python 3.10
uses: actions/setup-python@v2 uses: actions/setup-python@v2
with: with:
python-version: 3.10 python-version: '3.10'
- name: Install dependencies - name: Install dependencies
run: | run: |
python -m pip install --upgrade pip python -m pip install --upgrade pip
@ -45,7 +45,7 @@ jobs:
strategy: strategy:
matrix: matrix:
os: [ubuntu-latest, macos-latest, windows-latest] os: [ubuntu-latest, macos-latest, windows-latest]
python-version: [3.6, 3.7, 3.8, 3.9, 3.10] python-version: [3.6, 3.7, 3.8, 3.9, '3.10']
exclude: exclude:
- os: macos-latest - os: macos-latest
python-version: 3.6 python-version: 3.6