From da3d3d4e93adda6f92c1610ec0bf69dc17ae1b9c Mon Sep 17 00:00:00 2001 From: Andrew Morgan Date: Mon, 15 Apr 2024 15:54:00 +0100 Subject: [PATCH] Install the IPC::Cmd perl cpan module --- .github/workflows/pypi.yaml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/pypi.yaml b/.github/workflows/pypi.yaml index 4fd562d..709dd6a 100644 --- a/.github/workflows/pypi.yaml +++ b/.github/workflows/pypi.yaml @@ -42,7 +42,9 @@ jobs: with: python-version: '3.10' - name: Install OpenSSL - run: sudo apt update -y && sudo apt install libssl-dev + run: | + sudo cpan IPC::Cmd + sudo apt update -y && sudo apt install libssl-dev - name: Build wheels uses: PyO3/maturin-action@v1 with: