Skip to content

Commit 2fef2ee

Browse files
committed
Quote Python version strings
GHA seemed to be interpreting 3.10 as 3.1?
1 parent 939cc46 commit 2fef2ee

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/build.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -26,22 +26,22 @@ jobs:
2626
include:
2727
- name: "ubuntu-py27"
2828
os: ubuntu-latest
29-
python-version: 2.7
29+
python-version: "2.7"
3030
- name: "ubuntu-py37"
3131
os: ubuntu-latest
32-
python-version: 3.7
32+
python-version: "3.7"
3333
- name: "ubuntu-py38"
3434
os: ubuntu-latest
35-
python-version: 3.8
35+
python-version: "3.8"
3636
- name: "ubuntu-py39"
3737
os: ubuntu-latest
38-
python-version: 3.9
38+
python-version: "3.9"
3939
- name: "ubuntu-py310"
4040
os: ubuntu-latest
41-
python-version: 3.10
41+
python-version: "3.10"
4242
- name: "ubuntu-py311"
4343
os: ubuntu-latest
44-
python-version: 3.11
44+
python-version: "3.11"
4545
steps:
4646
- uses: actions/checkout@v3
4747
- name: Set up Python ${{ matrix.python-version }}

0 commit comments

Comments
 (0)