ci: fix github action python version

This commit is contained in:
Alexander Engelsberger 2022-04-27 09:30:07 +02:00
parent 5911f4dd90
commit dd34c57e2e
2 changed files with 4 additions and 2 deletions

View File

@ -15,7 +15,7 @@ jobs:
- name: Set up Python 3.10
uses: actions/setup-python@v2
with:
python-version: 3.10
python-version: "3.10"
- name: Install dependencies
run: |
python -m pip install --upgrade pip

View File

@ -16,7 +16,7 @@ jobs:
- name: Set up Python 3.10
uses: actions/setup-python@v2
with:
python-version: 3.10
python-version: "3.10"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
@ -34,6 +34,8 @@ jobs:
python-version: "3.7"
- os: windows-latest
python-version: "3.8"
- os: windows-latest
python-version: "3.9"
runs-on: ${{ matrix.os }}
steps: