From 3ff83e498739a6069586a415eb93ea1c632e2a93 Mon Sep 17 00:00:00 2001 From: Padraig Gleeson Date: Mon, 7 Jul 2025 12:01:58 +0100 Subject: [PATCH 1/4] Update ci_test_all.yml --- .github/workflows/ci_test_all.yml | 2 -- 1 file changed, 2 deletions(-) diff --git a/.github/workflows/ci_test_all.yml b/.github/workflows/ci_test_all.yml index 6b09af5..077e5dc 100644 --- a/.github/workflows/ci_test_all.yml +++ b/.github/workflows/ci_test_all.yml @@ -35,8 +35,6 @@ jobs: ./test_all.sh - - - name: Final version info run: | pip list From 6489ed4c7b75445a6ca09d2466f8e2e3009c4efd Mon Sep 17 00:00:00 2001 From: Padraig Gleeson Date: Wed, 13 Aug 2025 16:33:29 +0100 Subject: [PATCH 2/4] Regenerated info --- docs/sphinx/source/api/Contributors.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/sphinx/source/api/Contributors.md b/docs/sphinx/source/api/Contributors.md index 0c5a0e5..7bbf816 100644 --- a/docs/sphinx/source/api/Contributors.md +++ b/docs/sphinx/source/api/Contributors.md @@ -3,7 +3,7 @@ # Modelspec contributors This page list names and Github profiles of contributors to Modelspec, listed in no particular order. -This page is generated periodically, most recently on 2025-04-16. +This page is generated periodically, most recently on 2025-08-13. - Padraig Gleeson ([@pgleeson](https://github.com/pgleeson)) - Manifest Chakalov ([@mqnifestkelvin](https://github.com/mqnifestkelvin)) From 846c2df79376e4526ce8d944575040f739faa6da Mon Sep 17 00:00:00 2001 From: Padraig Gleeson Date: Wed, 12 Nov 2025 17:46:43 +0000 Subject: [PATCH 3/4] Regenerated --- docs/sphinx/source/api/Contributors.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/sphinx/source/api/Contributors.md b/docs/sphinx/source/api/Contributors.md index 7bbf816..62d5d21 100644 --- a/docs/sphinx/source/api/Contributors.md +++ b/docs/sphinx/source/api/Contributors.md @@ -3,7 +3,7 @@ # Modelspec contributors This page list names and Github profiles of contributors to Modelspec, listed in no particular order. -This page is generated periodically, most recently on 2025-08-13. +This page is generated periodically, most recently on 2025-11-12. - Padraig Gleeson ([@pgleeson](https://github.com/pgleeson)) - Manifest Chakalov ([@mqnifestkelvin](https://github.com/mqnifestkelvin)) From 6c44c15f7e8fd86ecf7b8a8d644019a5aa325839 Mon Sep 17 00:00:00 2001 From: Padraig Gleeson Date: Wed, 12 Nov 2025 17:54:20 +0000 Subject: [PATCH 4/4] Test specific version of python --- .github/workflows/ci_test_all.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/ci_test_all.yml b/.github/workflows/ci_test_all.yml index 077e5dc..b0efeda 100644 --- a/.github/workflows/ci_test_all.yml +++ b/.github/workflows/ci_test_all.yml @@ -14,12 +14,16 @@ jobs: strategy: fail-fast: false matrix: + python-version: [ "3.13"] runs-on: [ubuntu-latest, macos-latest, windows-latest] steps: - uses: actions/checkout@v4 + - name: Set up Python uses: actions/setup-python@v5 + with: + python-version: ${{ matrix.python-version }} - name: Install HDF5 for pytables on macos-14 if: ${{ matrix.runs-on == 'macos-latest' }}