From 9116734205aef0d845eb73699a6efe5a71b40fe6 Mon Sep 17 00:00:00 2001 From: Alan Orth Date: Thu, 6 Jan 2022 13:50:08 +0200 Subject: [PATCH] .github/workflows/pages.yml: use Python 3.10 It's what I use locally and it's the latest supported version so it will let this project work a bit longer as time goes on if we start with the latest version possible. --- .github/workflows/pages.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/pages.yml b/.github/workflows/pages.yml index de2474fa..8b4d5597 100644 --- a/.github/workflows/pages.yml +++ b/.github/workflows/pages.yml @@ -12,10 +12,10 @@ jobs: - name: Set up Python uses: actions/setup-python@v2 with: - # 2021-12-14 this is currently an OK choice, but it will need to be + # 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.9 + python-version: 3.10 - name: Install Poetry uses: abatilo/actions-poetry@v2.1.4 - name: Install Python dependencies