Skip to content

Commit ccc55ef

Browse files
committed
Specify exactly which python version to be used for building wheels
1 parent bb6db86 commit ccc55ef

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

pyproject.toml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,10 +47,17 @@ known_third_party = ['lxml', 'pytest', '_pytest', 'hypothesis']
4747
requires = ['setuptools>=42', 'wheel', 'setuptools_scm[toml]>=3.4', "pkgconfig>=1.5.1", "lxml>=3.8, !=4.7.0"]
4848

4949
[tool.cibuildwheel]
50+
build = [
51+
"cp39-*",
52+
"cp310-*",
53+
"cp311-*",
54+
"cp312-*",
55+
"cp313-*"
56+
]
5057
build-verbosity = 1
5158
build-frontend = "build"
5259
skip = [
53-
"pp*",
60+
"pp*", # Skips PyPy builds (pp38-*, pp39-*, etc.)
5461
]
5562
test-command = "pytest -v --color=yes {package}/tests"
5663
before-test = "pip install -r requirements-test.txt"

0 commit comments

Comments
 (0)