Skip to content

Commit 1e370a2

Browse files
committed
fix python version selection in GitHub action
1 parent ac18f55 commit 1e370a2

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

.github/workflows/python.yaml

+2
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ jobs:
1313
name: "Lint & test"
1414
strategy:
1515
matrix:
16+
# Needs to be string for 3.10, otherwise it's wrongly parsed as 3.1
1617
python-version: ['3.10']
1718
runs-on: ubuntu-latest
1819

@@ -64,6 +65,7 @@ jobs:
6465
- name: Set up Python 3.10
6566
uses: actions/setup-python@v1
6667
with:
68+
# Needs to be string for 3.10, otherwise it's wrongly parsed as 3.1
6769
python-version: '3.10'
6870

6971
- name: Publish

0 commit comments

Comments
 (0)