Skip to content

Commit

Permalink
Merge pull request #156 from himoto/dev
Browse files Browse the repository at this point in the history
Remove version restriction
  • Loading branch information
ChrisRackauckas authored Jan 11, 2025
2 parents f8a9590 + 17cc183 commit 0723bde
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
- name: Install Julia using jill
run: |
python -m pip install --upgrade jill
python -c "from jill.install import install_julia; install_julia(version='1.10', confirm=True)"
python -c "from jill.install import install_julia; install_julia(confirm=True)"
- name: Run test
run: python -m tox -- --cov=diffeqpy -s
env:
Expand Down
2 changes: 1 addition & 1 deletion diffeqpy/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ def _find_julia():
def _ensure_julia_installed():
if not _find_julia():
print("No Julia version found. Installing Julia.")
install_julia(version="1.10")
install_julia()
if not _find_julia():
raise RuntimeError(
"Julia installed with jill but `julia` binary cannot be found in the path"
Expand Down

0 comments on commit 0723bde

Please sign in to comment.