File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change 37
37
- name : Install Julia using jill
38
38
run : |
39
39
python -m pip install --upgrade jill
40
- python -c "from jill.install import install_julia; install_julia(version='1.10', confirm=True)"
40
+ python -c "from jill.install import install_julia; install_julia(confirm=True)"
41
41
- name : Run test
42
42
run : python -m tox -- --cov=diffeqpy -s
43
43
env :
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ def _find_julia():
12
12
def _ensure_julia_installed ():
13
13
if not _find_julia ():
14
14
print ("No Julia version found. Installing Julia." )
15
- install_julia (version = "1.10" )
15
+ install_julia ()
16
16
if not _find_julia ():
17
17
raise RuntimeError (
18
18
"Julia installed with jill but `julia` binary cannot be found in the path"
You can’t perform that action at this time.
0 commit comments