From 5f747c3b6ae89f68c289d3c37918a83c0332df09 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christian=20G=C3=B6ttsche?= Date: Thu, 4 Apr 2024 18:15:34 +0200 Subject: [PATCH] github: bump python and ruby versions Bump the maximum python version to 3.12 and the maximum ruby version to 3.3 in the GitHub CI. --- .github/workflows/run_tests.yml | 37 ++++++++++++++++++--------------- 1 file changed, 20 insertions(+), 17 deletions(-) diff --git a/.github/workflows/run_tests.yml b/.github/workflows/run_tests.yml index 3bd859a37..8ada9eaea 100644 --- a/.github/workflows/run_tests.yml +++ b/.github/workflows/run_tests.yml @@ -10,30 +10,33 @@ jobs: matrix: compiler: [gcc, clang] python-ruby-version: - - {python: '3.11', ruby: '3.1'} - - {python: '3.11', ruby: '3.1', other: 'test-flags-override'} - - {python: '3.11', ruby: '3.1', other: 'test-debug'} - - {python: '3.11', ruby: '3.1', other: 'linker-bfd'} - - {python: '3.11', ruby: '3.1', other: 'linker-gold'} + - {python: '3.12', ruby: '3.3'} + - {python: '3.12', ruby: '3.3', other: 'test-flags-override'} + - {python: '3.12', ruby: '3.3', other: 'test-debug'} + - {python: '3.12', ruby: '3.3', other: 'linker-bfd'} + - {python: '3.12', ruby: '3.3', other: 'linker-gold'} # Test several Python versions with the latest Ruby version - - {python: '3.10', ruby: '3.1'} - - {python: '3.9', ruby: '3.1'} - - {python: '3.8', ruby: '3.1'} - - {python: '3.7', ruby: '3.1'} - - {python: 'pypy3.7', ruby: '3.1'} + - {python: '3.11', ruby: '3.3'} + - {python: '3.10', ruby: '3.3'} + - {python: '3.9', ruby: '3.3'} + - {python: '3.8', ruby: '3.3'} + - {python: '3.7', ruby: '3.3'} + - {python: 'pypy3.7', ruby: '3.3'} # Test several Ruby versions with the latest Python version - - {python: '3.11', ruby: '3.0'} - - {python: '3.11', ruby: '2.7'} - - {python: '3.11', ruby: '2.6'} - - {python: '3.11', ruby: '2.5'} + - {python: '3.12', ruby: '3.2'} + - {python: '3.12', ruby: '3.1'} + - {python: '3.12', ruby: '3.0'} + - {python: '3.12', ruby: '2.7'} + - {python: '3.12', ruby: '2.6'} + - {python: '3.12', ruby: '2.5'} exclude: - compiler: clang - python-ruby-version: {python: '3.11', ruby: '3.1', other: 'linker-bfd'} + python-ruby-version: {python: '3.12', ruby: '3.3', other: 'linker-bfd'} - compiler: clang - python-ruby-version: {python: '3.11', ruby: '3.1', other: 'linker-gold'} + python-ruby-version: {python: '3.12', ruby: '3.3', other: 'linker-gold'} include: - compiler: gcc - python-ruby-version: {python: '3.11', ruby: '3.1', other: 'sanitizers'} + python-ruby-version: {python: '3.12', ruby: '3.3', other: 'sanitizers'} steps: - uses: actions/checkout@v4