From 67f688278ff1cfaeae1e05b278c581f35b5a1088 Mon Sep 17 00:00:00 2001 From: Daniele Nicolodi Date: Sun, 24 Mar 2024 16:54:26 +0100 Subject: [PATCH 1/2] CI: run tests also with GraalPy 24.0 --- .github/workflows/tests.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index d88133646..b1fe24325 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -50,6 +50,8 @@ jobs: meson: - include: + - os: ubuntu + python: 'graalpy-24.0' - os: ubuntu python: 'pypy-3.9' - os: ubuntu From e1699e9a0761c469baa150582507c58058a29e3e Mon Sep 17 00:00:00 2001 From: Daniele Nicolodi Date: Sun, 24 Mar 2024 17:20:48 +0100 Subject: [PATCH 2/2] TST: ignore distutils deprecation warning Somehow this warning is triggered when running the tests with GraalPy. --- pyproject.toml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index 8cfd805b4..ca4f83060 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -117,4 +117,6 @@ testpaths = ['tests'] xfail_strict = true filterwarnings = [ 'error', + # For some reason, running the tests with GraalPy 24.0 triggers this warning. + 'ignore:The distutils package is deprecated:DeprecationWarning', ]