Skip to content

Commit 0723bde

Browse files
Merge pull request #156 from himoto/dev
Remove version restriction
2 parents f8a9590 + 17cc183 commit 0723bde

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/CI.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
- name: Install Julia using jill
3838
run: |
3939
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)"
4141
- name: Run test
4242
run: python -m tox -- --cov=diffeqpy -s
4343
env:

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(version="1.10")
15+
install_julia()
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)