File tree Expand file tree Collapse file tree 3 files changed +6
-2
lines changed Expand file tree Collapse file tree 3 files changed +6
-2
lines changed Original file line number Diff line number Diff line change 34
34
run : |
35
35
python -m pip install --upgrade pip
36
36
python -m pip install --upgrade tox
37
+ - name : Install Julia using jill
38
+ run : |
39
+ python -m pip install --upgrade jill
40
+ python -c "from jill.install import install_julia; install_julia(version='1.10', confirm=True)"
37
41
- name : Run test
38
42
run : python -m tox -- --cov=diffeqpy -s
39
43
env :
Original file line number Diff line number Diff line change @@ -61,7 +61,7 @@ def install(*, confirm=False):
61
61
julia = _find_julia ()
62
62
if not julia :
63
63
print ("No Julia version found. Installing Julia." )
64
- install_julia (version = "1.10" , confirm = confirm )
64
+ install_julia (confirm = confirm )
65
65
julia = _find_julia ()
66
66
if not julia :
67
67
raise RuntimeError (
Original file line number Diff line number Diff line change 3
3
pytest
4
4
pytest-cov
5
5
commands =
6
- python -c ' import diffeqpy; diffeqpy.install(confirm=True )'
6
+ python -c ' import diffeqpy; diffeqpy.install()'
7
7
py.test \
8
8
--pyargs diffeqpy \
9
9
{posargs}
You can’t perform that action at this time.
0 commit comments