From e1ba623e6edb7dc90608b838d10e9029cb509c9e Mon Sep 17 00:00:00 2001 From: Ralf Gabriels Date: Thu, 9 Sep 2021 11:30:49 +0200 Subject: [PATCH] Build with manylinux2014 By default 2010 was used, required Numba build, which failed. --- .github/workflows/build_and_publish.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/build_and_publish.yml b/.github/workflows/build_and_publish.yml index 5f61687c..9d9d44a8 100644 --- a/.github/workflows/build_and_publish.yml +++ b/.github/workflows/build_and_publish.yml @@ -50,6 +50,7 @@ jobs: env: CIBW_BUILD: "cp3*-macosx_x86_64 cp3*-manylinux_x86_64" CIBW_SKIP: "cp35-* cp39-macosx_x86_64" # see compomics/ms2pip_c#126 + CIBW_MANYLINUX_X86_64_IMAGE: "manylinux2014" CIBW_BEFORE_BUILD: "pip install setuptools cython numpy==1.16.6" CIBW_TEST_REQUIRES: "pytest" CIBW_TEST_COMMAND: "pytest {project}/tests"