Skip to content

Commit 70f0111

Browse files
authored
ENH: Versions as strings, not numbers, so that 3.1 != 3.10, etc. (#40)
1 parent b91c55e commit 70f0111

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/build-test-package.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
- name: Set up Python 3.7
3333
uses: actions/setup-python@v1
3434
with:
35-
python-version: 3.7
35+
python-version: "3.7"
3636

3737
- name: Install build dependencies
3838
run: |
@@ -134,7 +134,7 @@ jobs:
134134
strategy:
135135
max-parallel: 2
136136
matrix:
137-
python-version: [36, 37, 38, 39]
137+
python-version: ["36", "37", "38", "39"]
138138
include:
139139
- itk-python-git-tag: "v5.2.1"
140140

@@ -206,7 +206,7 @@ jobs:
206206
strategy:
207207
max-parallel: 2
208208
matrix:
209-
python-version-minor: [6, 7, 8, 9]
209+
python-version-minor: ["6", "7", "8", "9"]
210210
include:
211211
- itk-python-git-tag: "v5.2.1"
212212

0 commit comments

Comments
 (0)