From 52eca5629fffcb953214bb1ca6ce406d94166df1 Mon Sep 17 00:00:00 2001 From: arvidn Date: Sat, 25 Jan 2025 10:17:45 +0100 Subject: [PATCH] install perl-IPC-Cmd, to build OpenSSL --- .pre-commit-config.yaml | 5 ----- pyproject.toml | 5 +++-- 2 files changed, 3 insertions(+), 7 deletions(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index a2630bac6b..bc0bbdf003 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -31,11 +31,6 @@ repos: - id: debug-statements - id: check-symlinks - id: check-toml -- repo: https://github.com/pappasam/toml-sort - rev: v0.24.2 - hooks: - - id: toml-sort - args: [--all, --in-place] - repo: https://github.com/pre-commit/pygrep-hooks rev: v1.10.0 hooks: diff --git a/pyproject.toml b/pyproject.toml index 0f4af51b6a..e7adfc2171 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -24,8 +24,9 @@ PATH = "/tmp/boost:$PATH" before-all = [ "./tools/cibuildwheel/setup_boost.sh $BOOST_VERSION $BOOST_ROOT", "./tools/cibuildwheel/setup_ccache_on_manylinux.sh", - "./tools/cibuildwheel/setup_openssl.sh", - "yum install -y glibc-static" # needed for libutil.a and libdl.a + # perl-IPC-Cmd is needed to build OpenSSL + "yum install -y perl-IPC-Cmd && ./tools/cibuildwheel/setup_openssl.sh", + "yum install -y glibc-static", # needed for libutil.a and libdl.a ] before-test = "ccache -s" select = "*-manylinux_*"