From 462c96d87cc351019f0713e5bd5a55fad41674bf Mon Sep 17 00:00:00 2001 From: "Jonathan B. Coe" Date: Sat, 31 Jan 2026 21:48:04 +0000 Subject: [PATCH 1/2] Run tests with more Python and clang versions --- .github/workflows/python.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/python.yml b/.github/workflows/python.yml index ced2878..8e65132 100644 --- a/.github/workflows/python.yml +++ b/.github/workflows/python.yml @@ -11,8 +11,8 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python: ["3.10", "3.11", "3.12", "3.13"] - clang: ["18"] + python: ["3.10", "3.11", "3.12", "3.13", "3.14"] + clang: ["18", "19", "20", "21"] steps: - uses: actions/checkout@v4 From a9280901863c369d739a81e43024594850777cf1 Mon Sep 17 00:00:00 2001 From: "Jonathan B. Coe" Date: Sat, 31 Jan 2026 21:55:04 +0000 Subject: [PATCH 2/2] Run tests with more Python and clang versions --- .github/workflows/python.yml | 6 ------ 1 file changed, 6 deletions(-) diff --git a/.github/workflows/python.yml b/.github/workflows/python.yml index 8e65132..b842b50 100644 --- a/.github/workflows/python.yml +++ b/.github/workflows/python.yml @@ -12,7 +12,6 @@ jobs: strategy: matrix: python: ["3.10", "3.11", "3.12", "3.13", "3.14"] - clang: ["18", "19", "20", "21"] steps: - uses: actions/checkout@v4 @@ -21,11 +20,6 @@ jobs: with: enable-cache: true python-version: ${{ matrix.python }} - - name: Setup Clang - uses: egor-tensin/setup-clang@v1 - with: - version: ${{ matrix.clang }} - platform: x64 - name: Install the project run: uv sync - name: Linting checks