From 78f0c6c82f2a73ce14c80613ff86967c5370d73e Mon Sep 17 00:00:00 2001 From: Christian Clauss Date: Tue, 14 May 2024 14:20:15 +0200 Subject: [PATCH 1/2] ci: Add Python 3.13.0b1 to the testing Like: * #425 * #427 * #451 --- .github/workflows/ci.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6993dd9e..c91f90d1 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -8,6 +8,13 @@ jobs: fail-fast: false matrix: include: + - BUILD_TYPE: Debug + WITH_BFD: yes + PYTHON_VERSION: '3.13.0b1' + TEST_SYMPY: yes + OS: ubuntu-24.04 + CC: gcc + - BUILD_TYPE: Debug WITH_BFD: yes PYTHON_VERSION: '3.12' From b048324c92076766f42db634c78d17feb11fc417 Mon Sep 17 00:00:00 2001 From: Christian Clauss Date: Tue, 14 May 2024 14:25:41 +0200 Subject: [PATCH 2/2] ubuntu-24.04 has not finished deploying https://github.com/actions/runner-images --- .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 c91f90d1..2bd7e1d3 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -12,7 +12,7 @@ jobs: WITH_BFD: yes PYTHON_VERSION: '3.13.0b1' TEST_SYMPY: yes - OS: ubuntu-24.04 + OS: ubuntu-22.04 CC: gcc - BUILD_TYPE: Debug