10000 Pass --isolated to pip wheel invocation · keith/rules_python@e58b3e3 · GitHub
[go: up one dir, main page]

Skip to content

Commit e58b3e3

Browse files
committed
Pass --isolated to pip wheel invocation
This fixes the same issue as bazel-contrib#232 but in another place.
1 parent aa27a3f commit e58b3e3

File tree

3 files changed

+1
-1
lines changed

3 files changed

+1
-1
lines changed

python/pip_install/extract_wheels/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ def main() -> None:
7979
)
8080
args = parser.parse_args()
8181

82-
pip_args = [sys.executable, "-m", "pip", "wheel", "-r", args.requirements]
82+
pip_args = [sys.executable, "-m", "pip", "--isolated", "wheel", "-r", args.requirements]
8383
if args.extra_pip_args:
8484
pip_args += json.loads(args.extra_pip_args)["args"]
8585

tools/piptool.par

2.05 KB
Binary file not shown.

tools/whltool.par

2.05 KB
Binary file not shown.

0 commit comments

Comments
 (0)
0