Skip to content

Commit dfd3f92

Browse files
committed
fix: try double quotes for windows
1 parent e233c12 commit dfd3f92

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

pyproject.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ build-backend = "setuptools.build_meta"
99
[tool.cibuildwheel]
1010
build = "cp39-*"
1111
before-all = [
12-
"pipx install -f --pip-args='-c {project}/constraints-ci.txt' cmake",
12+
"pipx install -f --pip-args=\"-c {project}/constraints-ci.txt\" cmake",
1313
"cmake --version",
14-
"pipx install -f --pip-args='-c {project}/constraints-ci.txt' ninja",
14+
"pipx install -f --pip-args=\"-c {project}/constraints-ci.txt\" ninja",
1515
"ninja --version",
1616
]
1717
before-build = "pip install -r requirements-repair.txt"
@@ -21,9 +21,9 @@ test-command = "pytest {project}/tests"
2121

2222
[tool.cibuildwheel.linux]
2323
before-all = [
24-
"pipx install -f --pip-args='-c {project}/constraints-ci.txt' cmake",
24+
"pipx install -f --pip-args=\"-c {project}/constraints-ci.txt\" cmake",
2525
"cmake --version",
26-
"pipx install -f --pip-args='-c {project}/constraints-ci.txt' ninja",
26+
"pipx install -f --pip-args=\"-c {project}/constraints-ci.txt\" ninja",
2727
"ninja --version",
2828
"./scripts/manylinux-build-and-install-openssl.sh",
2929
]

0 commit comments

Comments
 (0)