2 parents de328ee + 8cba809 commit fa61636Copy full SHA for fa61636
1 file changed
packaging/runtime_builder.py
@@ -19,8 +19,8 @@ def main() -> int:
19
parser.add_argument("--gpu", action="store_true", help="Install the CUDA runtime selected by runtime_setup.py.")
20
args = parser.parse_args()
21
runtime = args.output.resolve()
22
- # Force a real interpreter copy. Some CI Python installations expose a
23
- # launcher that points at the runner's temporary hostedtoolcache path.
+ # Keep macOS/Linux defaults, but force a real Windows interpreter copy:
+ # hosted runners may otherwise create a launcher tied to hostedtoolcache.
24
venv_command = [sys.executable, "-m", "venv"]
25
if sys.platform == "win32":
26
venv_command.append("--copies")
0 commit comments