Skip to content

Commit

Permalink
Merge pull request #120 from tonyxty/main
Browse files Browse the repository at this point in the history
fix #118
  • Loading branch information
Kaiyu Yang authored Jan 2, 2024
2 parents 241cca7 + 2feb385 commit bec56c4
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/lean_dojo/data_extraction/build_lean4_repo.py
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,9 @@ def is_new_version(v) -> bool:
assert major == 4 and minor == 3 and patch == 0
if "4.3.0-rc" in v:
rc = int(v.split("-")[1][2:])
return rc >= 2
return rc >= 2
else:
return True


def main() -> None:
Expand Down

0 comments on commit bec56c4

Please sign in to comment.