diff --git a/pyproject.toml b/pyproject.toml index 671229a..2f9ca70 100755 --- a/pyproject.toml +++ b/pyproject.toml @@ -33,6 +33,15 @@ exclude = "__init__.py" build = "cp39-* cp310-*" test-requires = "pytest" test-command = "pytest {project}/tests" +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" + [build-system] requires = ["poetry-core>=1.0.0", "setuptools"]