We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
pyproject.toml
1 parent 2fe7bf8 commit 01b1961Copy full SHA for 01b1961
.github/workflows/ci.yml
@@ -76,9 +76,6 @@ jobs:
76
77
- name: Build wheels
78
uses: pypa/cibuildwheel@v3.1.4
79
- env:
80
- CIBW_SKIP: "*_i686 cp39-win_arm64 cp310-win_arm64"
81
- CIBW_ENABLE: cpython-freethreading
82
83
- name: Store wheel artifacts
84
uses: actions/upload-artifact@v4
pyproject.toml
@@ -20,3 +20,14 @@ build-backend = "setuptools.build_meta"
20
[tool.pytest.ini_options]
21
addopts = "-l"
22
filterwarnings = ["error"]
23
+
24
+[tool.cibuildwheel]
25
+skip = [
26
+ "*_i686",
27
+ "cp310-win_arm64", # no numpy wheels for this target
28
+]
29
+enable = [
30
+ # enable cp313t wheels
31
+ # note that cp314t and later are already enabled by default
32
+ "cpython-freethreading",
33
0 commit comments