From e7ef861cc06a16859094d09ff49b4136c5905f6b Mon Sep 17 00:00:00 2001 From: Ben Frederickson Date: Thu, 31 Oct 2024 11:12:33 -0700 Subject: [PATCH] . --- .github/workflows/build.yml | 16 ++++++++++++++++ ci/update_python_test_versions.py | 2 +- 2 files changed, 17 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 751a1aa6..85968bb4 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -220,6 +220,22 @@ jobs: exclude: - os: macos-13 python-version: 3.11.10 + - os: macos-13 + python-version: 3.12.0 + - os: macos-13 + python-version: 3.12.1 + - os: macos-13 + python-version: 3.12.2 + - os: macos-13 + python-version: 3.12.3 + - os: macos-13 + python-version: 3.12.4 + - os: macos-13 + python-version: 3.12.5 + - os: macos-13 + python-version: 3.12.6 + - os: macos-13 + 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 69c21318..d8564648 100644 --- a/ci/update_python_test_versions.py +++ b/ci/update_python_test_versions.py @@ -9,7 +9,7 @@ def parse_version(v): - return tuple(int(part) for part in re.split("\W", v)[:3]) + return tuple(int(part) for part in re.split(r"\W", v)[:3]) def get_github_python_versions():