We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 36238e3 commit 29661ceCopy full SHA for 29661ce
pyproject.toml
@@ -10,10 +10,11 @@ requires = [
10
]
11
build-backend = "setuptools.build_meta"
12
13
-[project]
14
-requires-python = ">=3.7"
15
-
16
[tool.cibuildwheel]
17
-skip = "pp*"
+# Disable CPython 3.6 here; if project.requires-python gets defined,
+# cp36* can be removed
+skip = "pp* cp36*"
18
+# 64-bit builds only; 32-bit builds seem pretty niche these days, so
19
+# don't bother unless someone asks
20
archs = ["auto64"]
0 commit comments