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 ef9ff93 commit caa6bfeCopy full SHA for caa6bfe
1 file changed
ci/scripts/requirements.py
@@ -9,8 +9,12 @@ def deps():
9
return requires + develop
10
11
def main():
12
- os.system("python -m pip install toml")
13
- os.system("python -m pip install " + " ".join(f'"{_}"' for _ in deps()))
+ ret = os.system("python -m pip install --prefer-binary toml")
+ if ret != 0:
14
+ raise ValueError("Python requirement install failed: see output for error")
15
+ ret = os.system("python -m pip install --prefer-binary " + " ".join(f'"{_}"' for _ in deps()))
16
17
18
19
20
if __name__ == "__main__":
0 commit comments