summaryrefslogtreecommitdiff
path: root/pyproject.toml
blob: 13cbddfe0d0cd3e0135551846f2a6d4d0e1b112a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
[tool.cibuildwheel]
test-requires = "pytest"
test-command = "pytest {project}/xattr/tests"

[tool.cibuildwheel.linux]
before-all = "yum install -y libffi-devel"

[[tool.cibuildwheel.overrides]]
select = "*-manylinux2_*"
before-all = "apt-get -y install libffi-dev"

[[tool.cibuildwheel.overrides]]
select = "*-musllinux*"
before-all = "apk add libffi-dev"