From bfcba4b3b70cf19e9500322a7ee6367f369891f0 Mon Sep 17 00:00:00 2001 From: Dirkjan Ochtman Date: Thu, 2 Feb 2023 12:02:31 +0100 Subject: [PATCH] py: quote Python versions in Actions workflow 3.10 might be interpreted as a float, yielding 3.1. --- .github/workflows/publish.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index c97bc48..c519b12 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -10,7 +10,7 @@ jobs: strategy: matrix: 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 }} environment: "Publish wheels"