Skip to content

Commit b8b2a52

Browse files
committed
Represent version number as a string
1 parent 7ff7ab0 commit b8b2a52

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/pytest.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,8 @@ jobs:
77
runs-on: ubuntu-latest
88
strategy:
99
matrix:
10-
python-version: [3.7, 3.8, 3.9, 3.10]
10+
# "3.10" must be a string; otherwise it is interpreted as 3.1.
11+
python-version: [3.7, 3.8, 3.9, "3.10"]
1112
fail-fast: false
1213

1314
steps:

0 commit comments

Comments
 (0)