From 8115397718e30576e8a256adf93d808692bf6b35 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mihai=20Capot=C4=83?= Date: Thu, 2 Apr 2026 18:51:49 -0700 Subject: [PATCH] Fix cibuildwheel Skipping PyPy when not explicitly selecting it became an error at some point. > Warning: cibuildwheel: Invalid skip selector: 'pp*'. This selector matches a group that wasn't enabled. Enable it using the `enable` option or remove this selector. This selector will have no effect. https://github.com/brainiak/brainiak/actions/runs/23929798220/job/69794342107?pr=546 --- pyproject.toml | 1 - 1 file changed, 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index e61b4082..c32bcbab 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -153,7 +153,6 @@ test-extras = ["matnormal", "dev"] test-command = "python -m pytest {project}/tests" archs = ["auto64"] skip = [ - "pp*", "cp313*", "cp314*", # Tensorflow wheels are not available for Python 3.13 and 3.14 "*musllinux*", # Tensorflow wheels are not available for musllinux ]