From bbd961c2518a741970197a206cc3e9266f5415d0 Mon Sep 17 00:00:00 2001 From: konsti Date: Mon, 10 Jun 2024 13:49:24 +0200 Subject: [PATCH] Fix python3.13 on windows CI job by pinning older version (#4192) See https://github.com/actions/setup-python/issues/888 --------- Co-authored-by: Alex Waygood --- .github/workflows/ci.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 426fc4047..4e65b1f9a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -898,7 +898,8 @@ jobs: - uses: actions/setup-python@v5 with: - python-version: "3.13" + # TODO(konsti): https://github.com/actions/setup-python/issues/888 + python-version: "3.13.0-beta.1" allow-prereleases: true cache: pip