From ea43e7744b13f561cda13730fa858db2fc796b74 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 15 Dec 2025 08:06:54 +0000 Subject: [PATCH 1/3] Bump the actions group with 2 updates Bumps the actions group with 2 updates: [actions/upload-artifact](https://github.com/actions/upload-artifact) and [actions/download-artifact](https://github.com/actions/download-artifact). Updates `actions/upload-artifact` from 5 to 6 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v5...v6) Updates `actions/download-artifact` from 6 to 7 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](https://github.com/actions/download-artifact/compare/v6...v7) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: actions/download-artifact dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions ... Signed-off-by: dependabot[bot] --- .github/workflows/tests.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 4eeff88..c038be9 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -48,7 +48,7 @@ jobs: SIMWEIGHTS_TESTDATA: . run: python3 -m pytest --cov-report=xml --junit-xml=test-results-${{matrix.os}}-${{matrix.python-version}}.junit.xml - name: Upload Test Results - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v6 if: always() with: if-no-files-found: error @@ -86,7 +86,7 @@ jobs: SIMWEIGHTS_TESTDATA: . run: /opt/icetray/bin/icetray-shell python -m pytest --junit-xml=test-results-icetray.junit.xml - name: Upload Test Results - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v6 if: always() with: if-no-files-found: error @@ -103,7 +103,7 @@ jobs: if: always() steps: - name: Download Artifacts - uses: actions/download-artifact@v6 + uses: actions/download-artifact@v7 with: path: . pattern: test-results-* From 91cc499e545c18fc4f897a2deaaa7e74c5b76dc8 Mon Sep 17 00:00:00 2001 From: Kevin Meagher <11620178+kjmeagher@users.noreply.github.com> Date: Mon, 15 Dec 2025 15:55:36 -0600 Subject: [PATCH 2/3] update runners --- .github/workflows/tests.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index c038be9..8aeb32e 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -18,15 +18,17 @@ jobs: strategy: fail-fast: false matrix: - python-version: ["3.10", "3.11", "3.12", "3.13"] + python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"] os: [ubuntu-24.04] include: - python-version: "3.13" - os: macos-13 + os: macos-15-intel - python-version: "3.13" os: macos-14 - python-version: "3.13" os: macos-15 + - python-version: "3.13" + os: macos-26 steps: - uses: actions/checkout@v6 - name: Set up Python ${{ matrix.python-version }} From b034297c8d40c99ae3e5a43c269c783fe0242567 Mon Sep 17 00:00:00 2001 From: Kevin Meagher <11620178+kjmeagher@users.noreply.github.com> Date: Mon, 15 Dec 2025 16:06:55 -0600 Subject: [PATCH 3/3] Back off of python3.14 It probaly works but tables --- .github/workflows/tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 8aeb32e..3f09274 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -18,7 +18,7 @@ jobs: strategy: fail-fast: false matrix: - python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"] + python-version: ["3.10", "3.11", "3.12", "3.13"] os: [ubuntu-24.04] include: - python-version: "3.13"