From 612c13eba740e61086fa281d2a0efb30251796c1 Mon Sep 17 00:00:00 2001 From: Michael Howitz Date: Fri, 12 Apr 2024 18:00:28 +0200 Subject: [PATCH] Do not install cffi as it is not always needed. And it is currently broken on Python 3.13a*. --- config/c-code/tests.yml.j2 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/config/c-code/tests.yml.j2 b/config/c-code/tests.yml.j2 index 5adadad..5a66288 100644 --- a/config/c-code/tests.yml.j2 +++ b/config/c-code/tests.yml.j2 @@ -101,7 +101,7 @@ jobs: if: matrix.python-version == '%(future_python_version)s' run: | pip install -U pip - pip install -U setuptools wheel twine cffi + pip install -U setuptools wheel twine {% endif %} - name: Install Build Dependencies {% if with_future_python %} @@ -109,7 +109,7 @@ jobs: {% endif %} run: | pip install -U pip - pip install -U setuptools wheel twine cffi + pip install -U setuptools wheel twine {% if gha_additional_build_dependencies %} {% for line in gha_additional_build_dependencies %} pip install -U %(line)s