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 22d4f1d commit 160fc93Copy full SHA for 160fc93
misc/build_wheel.py
@@ -75,9 +75,12 @@ def create_environ(python_version: str) -> Dict[str, str]:
75
76
# lxml doesn't have a wheel for Python 3.10 on the manylinux image we use.
77
# lxml has historically been slow to support new Pythons as well.
78
- env['CIBW_BEFORE_TEST'] = (
79
- 'pip install -r <(grep -v lxml {project}/mypy/test-requirements.txt)'
80
- )
+ env['CIBW_BEFORE_TEST'] = """
+ (
+ grep -v lxml {project}/mypy/test-requirements.txt > /tmp/requirements.txt
81
+ && pip install -r /tmp/requirements.txt
82
+ )
83
+ """
84
85
# pytest looks for configuration files in the parent directories of where the tests live.
86
# since we are trying to run the tests from their installed location, we copy those into
0 commit comments