From 159744a7f0a92d330b2720bedcb94ff9497873bb Mon Sep 17 00:00:00 2001 From: ifilot Date: Thu, 7 Dec 2023 08:39:42 +0100 Subject: [PATCH] Skipping 32 bit builds --- pyproject.toml | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 08b01af..52240da 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -11,8 +11,5 @@ build-backend = "setuptools.build_meta" test-requires = "pytest" test-command = "pytest {project}/tests" -# Skip 32-bit builds -skip = ["*-win32", "*-manylinux_i686"] - -# skip PyPy wheels -skip = ["pp*"] \ No newline at end of file +# skip PyPy wheels and 32 bit builds +skip = ["pp*", "*-win32", "*-manylinux_i686"] \ No newline at end of file