Skip to content

Commit

Permalink
Merge pull request #146 from SciML/ChrisRackauckas-patch-1
Browse files Browse the repository at this point in the history
Fix automatic installation by forcing the use of LTS version
  • Loading branch information
ChrisRackauckas authored Oct 10, 2024
2 parents 3f44b1a + 2393fd6 commit 34fa501
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion diffeqpy/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ def _find_julia():
def _ensure_julia_installed():
if not _find_julia():
print("No Julia version found. Installing Julia.")
install_julia()
install_julia(version="1.10")
if not _find_julia():
raise RuntimeError(
"Julia installed with jill but `julia` binary cannot be found in the path"
Expand Down

0 comments on commit 34fa501

Please sign in to comment.