Skip to content

Commit bfcba4b

Browse files
committed
py: quote Python versions in Actions workflow
3.10 might be interpreted as a float, yielding 3.1.
1 parent f11818e commit bfcba4b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
strategy:
1111
matrix:
1212
os: [ubuntu-latest, macos-latest]
13-
python: [3.8, 3.9, 3.10, 3.11]
13+
python: ["3.8", "3.9", "3.10", "3.11"]
1414

1515
runs-on: ${{ matrix.os }}
1616
environment: "Publish wheels"

0 commit comments

Comments
 (0)