Skip to content

Commit 1e89cac

Browse files
author
hauntsaninja
committed
Fix shell syntax in build_wheel
Follow up to python#11872 The cross repo split makes this a bit of a pain to test.
1 parent 22d4f1d commit 1e89cac

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

misc/build_wheel.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ def create_environ(python_version: str) -> Dict[str, str]:
7676
# lxml doesn't have a wheel for Python 3.10 on the manylinux image we use.
7777
# lxml has historically been slow to support new Pythons as well.
7878
env['CIBW_BEFORE_TEST'] = (
79-
'pip install -r <(grep -v lxml {project}/mypy/test-requirements.txt)'
79+
'bash -c "pip install -r <(grep -v lxml {project}/mypy/test-requirements.txt)"'
8080
)
8181

8282
# pytest looks for configuration files in the parent directories of where the tests live.

0 commit comments

Comments
 (0)