From 84b9c6c6739b06fadf8020fc47f55df49546a01f Mon Sep 17 00:00:00 2001 From: Daniel Tamayo Date: Tue, 17 Oct 2023 14:00:54 -0700 Subject: [PATCH] new manylinux image --- pyproject.toml | 17 +++++++++++------ 1 file changed, 11 insertions(+), 6 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index ab91c6d8..d8dc6654 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -3,12 +3,17 @@ requires = ["setuptools"] build-backend = "setuptools.build_meta" [tool.cibuildwheel] -build = "cp3*" -manylinux-x86_64-image = "sunnycase/manylinux_2_24_x86_64:version1.0" -test-requires = "pytest" -test-command = [ - "pytest {project}/tests/other" -] +test-extras = "test" +test-command = "pytest {project}/test" +manylinux-x86_64-image = "manylinux2014" +manylinux-i686-image = "manylinux2014" + +# Before Python 3.10, manylinux2010 is the most compatible +[[tool.cibuildwheel.overrides]] +select = "cp3?-*" +manylinux-x86_64-image = "manylinux2010" +manylinux-i686-image = "manylinux2010" +[tool.cibuildwheel [tool.cibuildwheel.linux] archs = ["x86_64"]