From e79559a554c205e34bba2757a6696edadc32dd28 Mon Sep 17 00:00:00 2001 From: Ben Frederickson Date: Fri, 1 Nov 2024 11:08:01 -0700 Subject: [PATCH] test py3.12 on windows --- .github/workflows/build.yml | 16 ---------------- ci/update_python_test_versions.py | 2 +- 2 files changed, 1 insertion(+), 17 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 5e8231cd..d363db52 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -234,36 +234,20 @@ jobs: python-version: 3.11.10 - os: macos-13 python-version: 3.12.0 - - os: windows-latest - python-version: 3.12.0 - os: macos-13 python-version: 3.12.1 - - os: windows-latest - python-version: 3.12.1 - os: macos-13 python-version: 3.12.2 - - os: windows-latest - python-version: 3.12.2 - os: macos-13 python-version: 3.12.3 - - os: windows-latest - python-version: 3.12.3 - os: macos-13 python-version: 3.12.4 - - os: windows-latest - python-version: 3.12.4 - os: macos-13 python-version: 3.12.5 - - os: windows-latest - python-version: 3.12.5 - os: macos-13 python-version: 3.12.6 - - os: windows-latest - python-version: 3.12.6 - os: macos-13 python-version: 3.12.7 - - os: windows-latest - python-version: 3.12.7 steps: - uses: actions/checkout@v2 diff --git a/ci/update_python_test_versions.py b/ci/update_python_test_versions.py index daf2394c..5436b0e0 100644 --- a/ci/update_python_test_versions.py +++ b/ci/update_python_test_versions.py @@ -95,7 +95,7 @@ def update_python_test_versions(): exclusions.append(" - os: macos-13\n") exclusions.append(f" python-version: {v}\n") - if ("win32", "x64") not in platforms[v] or v.startswith("3.12"): + if ("win32", "x64") not in platforms[v]: exclusions.append(" - os: windows-latest\n") exclusions.append(f" python-version: {v}\n")