Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions pyperformance/_pip.py
Original file line number Diff line number Diff line change
Expand Up @@ -153,6 +153,11 @@ def install_requirements(reqs, *extra,
if os.path.exists(reqs):
args.append('-r') # --requirement
args.append(reqs)

if "USE_BINARY_PACKAGES" not in os.environ:
# Force recompilation:
args.extend(["--no-binary", ":all:"])

return run_pip('install', *args, **kwargs)


Expand Down