From 7ed52b703a1c19f745217b12c7d65373602b22b9 Mon Sep 17 00:00:00 2001 From: Alan Orth Date: Thu, 6 Jan 2022 14:02:13 +0200 Subject: [PATCH] .github/workflows/pages.yml: quote Python version Otherwise, in JSON, it gets interpreted as an integer (3.1). See: https://github.com/actions/setup-python/issues/160 --- .github/workflows/pages.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pages.yml b/.github/workflows/pages.yml index 8b4d5597..c20d2b57 100644 --- a/.github/workflows/pages.yml +++ b/.github/workflows/pages.yml @@ -15,7 +15,7 @@ jobs: # 2022-01-06 this is currently an OK choice, but it will need to be # updated eventually as the ecosystem moves. Keep in sync with the # version in pyproject.toml. - python-version: 3.10 + python-version: '3.10' - name: Install Poetry uses: abatilo/actions-poetry@v2.1.4 - name: Install Python dependencies