Skip to content

Commit 436699d

Browse files
author
himoto
committed
Force the use of LTS version in yml
1 parent d4b8d6c commit 436699d

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

.github/workflows/CI.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,10 @@ jobs:
3434
run: |
3535
python -m pip install --upgrade pip
3636
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)"
3741
- name: Run test
3842
run: python -m tox -- --cov=diffeqpy -s
3943
env:

diffeqpy/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ def install(*, confirm=False):
6161
julia = _find_julia()
6262
if not julia:
6363
print("No Julia version found. Installing Julia.")
64-
install_julia(version="1.10", confirm=confirm)
64+
install_julia(confirm=confirm)
6565
julia = _find_julia()
6666
if not julia:
6767
raise RuntimeError(

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ deps =
33
pytest
44
pytest-cov
55
commands =
6-
python -c 'import diffeqpy; diffeqpy.install(confirm=True)'
6+
python -c 'import diffeqpy; diffeqpy.install()'
77
py.test \
88
--pyargs diffeqpy \
99
{posargs}

0 commit comments

Comments
 (0)