From 10bf40085ba090e12089aff1b45bbf1dc000f29d Mon Sep 17 00:00:00 2001 From: Matthias Koefferlein Date: Fri, 25 Oct 2024 08:04:31 +0200 Subject: [PATCH] Skipping Python 3.6 and 3.7 in PyPI builds to avoid disk overflow on GitHub runners --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 78ac75733..eafccb77f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -9,7 +9,7 @@ test-command = [ "TESTSRC={package} python {package}/testdata/pymod/pya_tests.py" ] # Disable building PyPy wheels on all platforms -skip = "pp*" +skip = "pp* cp36-* cp37-*" [tool.cibuildwheel.linux] # beware: the before-all script does not persist environment variables!