Skip to content

Commit

Permalink
"python3" -> "python"
Browse files Browse the repository at this point in the history
  • Loading branch information
Kaiyu Yang committed Feb 3, 2024
1 parent 3a24f05 commit 59401e6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/lean_dojo/data_extraction/trace.py
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ def _trace_lean3(repo: LeanGitRepo) -> None:
}
try:
container.run(
f"python3 build_lean3_repo.py {repo.name}",
f"python build_lean3_repo.py {repo.name}",
create_mounts(mts),
{"NUM_PROCS": NUM_PROCS},
as_current_user=True,
Expand All @@ -114,7 +114,7 @@ def _trace_lean4(repo: LeanGitRepo, build_deps: bool) -> None:
LEAN4_BUILD_SCRIPT_PATH: f"/workspace/{LEAN4_BUILD_SCRIPT_PATH.name}",
LEAN4_DATA_EXTRACTOR_PATH: f"/workspace/{repo.name}/{LEAN4_DATA_EXTRACTOR_PATH.name}",
}
cmd = f"python3 build_lean4_repo.py {repo.name}"
cmd = f"python build_lean4_repo.py {repo.name}"
if not build_deps:
cmd += " --no-deps"

Expand Down

0 comments on commit 59401e6

Please sign in to comment.