From 7badef1ad6d8b5b627bd2382921322d4ee3fb391 Mon Sep 17 00:00:00 2001 From: Daniel Standage Date: Mon, 2 Feb 2026 09:45:24 -0500 Subject: [PATCH 1/3] Update Python version matrix in CI build workflow Troubleshoot CI --- .github/workflows/cibuild.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/cibuild.yml b/.github/workflows/cibuild.yml index e6e7bd3..b9b224b 100644 --- a/.github/workflows/cibuild.yml +++ b/.github/workflows/cibuild.yml @@ -12,7 +12,7 @@ jobs: strategy: max-parallel: 4 matrix: - python-version: ['3.9', '3.10', '3.11', '3.12'] + python-version: ['3.10', '3.11', '3.12', '3.13'] steps: - uses: actions/checkout@v1 From 6a5bd5c6c358fb397854020f0d58d34a0edbdf79 Mon Sep 17 00:00:00 2001 From: Daniel Standage Date: Mon, 2 Feb 2026 09:48:59 -0500 Subject: [PATCH 2/3] Troubleshoot CI --- .github/workflows/cibuild.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/cibuild.yml b/.github/workflows/cibuild.yml index b9b224b..8770e15 100644 --- a/.github/workflows/cibuild.yml +++ b/.github/workflows/cibuild.yml @@ -2,8 +2,11 @@ name: CI Build on: push: + branches: + - master + pull_request: schedule: - - cron: '0 4 1 * *' + - cron: '30 4 1 * *' jobs: build: From de1e69a184c8a0edafbd462778ed2986c71ad905 Mon Sep 17 00:00:00 2001 From: Daniel Standage Date: Mon, 2 Feb 2026 09:52:26 -0500 Subject: [PATCH 3/3] Meaningless edit to trigger a stupid build --- .github/workflows/cibuild.yml | 2 -- 1 file changed, 2 deletions(-) diff --git a/.github/workflows/cibuild.yml b/.github/workflows/cibuild.yml index 8770e15..cb88048 100644 --- a/.github/workflows/cibuild.yml +++ b/.github/workflows/cibuild.yml @@ -10,13 +10,11 @@ on: jobs: build: - runs-on: ubuntu-latest strategy: max-parallel: 4 matrix: python-version: ['3.10', '3.11', '3.12', '3.13'] - steps: - uses: actions/checkout@v1 - name: Set up Python ${{ matrix.python-version }}