py: quote Python versions in Actions workflow

3.10 might be interpreted as a float, yielding 3.1.
This commit is contained in:
Dirkjan Ochtman 2023-02-02 12:02:31 +01:00
parent f11818e4c7
commit bfcba4b3b7
1 changed files with 1 additions and 1 deletions

View File

@ -10,7 +10,7 @@ jobs:
strategy: strategy:
matrix: matrix:
os: [ubuntu-latest, macos-latest] os: [ubuntu-latest, macos-latest]
python: [3.8, 3.9, 3.10, 3.11] python: ["3.8", "3.9", "3.10", "3.11"]
runs-on: ${{ matrix.os }} runs-on: ${{ matrix.os }}
environment: "Publish wheels" environment: "Publish wheels"