From 9cf83c4b6c429679aded3e603c51322005569a69 Mon Sep 17 00:00:00 2001 From: Axel Huebl Date: Thu, 30 Jan 2025 12:47:01 -0800 Subject: [PATCH 1/2] CI: Unbreak Eigen Eigen 3.3+ changed their internal BLAS build logic, which will need a deeper look why it does not work. Just setting the flag to build BLAS is overwritten by other logic with the Fortran compiler, which breaks current CI. --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 46b80806..5fa64e5b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -87,7 +87,7 @@ jobs: - name: Install demo module shell: bash - run: ./tests/install-demo-module.sh --pybind11-branch "${{ matrix.pybind11-branch }}" --eigen-branch "master" + run: ./tests/install-demo-module.sh --pybind11-branch "${{ matrix.pybind11-branch }}" --eigen-branch "3.2.10" - name: Check stubs generation shell: bash From f164b1b73a83bf66a72fc2a850efffb9767bfe65 Mon Sep 17 00:00:00 2001 From: Axel Huebl Date: Sun, 2 Feb 2025 20:25:48 -0800 Subject: [PATCH 2/2] CI: Python 3.7, 3.8 -> 3.12, 3.13 Remove outdated, add new. --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5fa64e5b..822e4f24 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -114,11 +114,11 @@ jobs: matrix: test-package: [ "gemmi" ] python: + - "3.13" + - "3.12" - "3.11" - "3.10" - "3.9" - - "3.8" - - "3.7" steps: - uses: actions/checkout@v4