From 2393fd62b4fafe8676de1d657e841fe43ae5c518 Mon Sep 17 00:00:00 2001 From: Christopher Rackauckas Date: Thu, 10 Oct 2024 07:13:01 -0400 Subject: [PATCH] Fix automatic installation by forcing the use of LTS version --- diffeqpy/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/diffeqpy/__init__.py b/diffeqpy/__init__.py index 34dd0ee..17f67f3 100644 --- a/diffeqpy/__init__.py +++ b/diffeqpy/__init__.py @@ -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"