Skip to content

Commit 34fa501

Browse files
Merge pull request #146 from SciML/ChrisRackauckas-patch-1
Fix automatic installation by forcing the use of LTS version
2 parents 3f44b1a + 2393fd6 commit 34fa501

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

diffeqpy/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ def _find_julia():
1212
def _ensure_julia_installed():
1313
if not _find_julia():
1414
print("No Julia version found. Installing Julia.")
15-
install_julia()
15+
install_julia(version="1.10")
1616
if not _find_julia():
1717
raise RuntimeError(
1818
"Julia installed with jill but `julia` binary cannot be found in the path"

0 commit comments

Comments
 (0)