prevent github action error with python 3.10 recognized as python 3.1

This commit is contained in:
dingedi 2022-05-03 11:14:21 +02:00
parent 0c85b1a53c
commit ea63203aea
No known key found for this signature in database
GPG key ID: EE23A12D271A3CED
2 changed files with 2 additions and 2 deletions

View file

@ -12,7 +12,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.7, 3.8, 3.9, 3.10]
python-version: ['3.7', '3.8', '3.9', '3.10']
steps:
- uses: actions/checkout@v2

View file

@ -19,7 +19,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.7, 3.8, 3.9, 3.10]
python-version: ['3.7', '3.8', '3.9', '3.10']
steps:
- uses: actions/checkout@v2