Skip to content

Commit 28449f7

Browse files
authored
Fix PyJulia on Julia 1.9 (#523)
* Correct CLI parsing for Julia 1.9 to fix #522 * Bump min Julia version to 1.4
1 parent 1e3de7b commit 28449f7

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/main.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
- '3.9'
2323
- '3.10'
2424
julia-version:
25-
- '1.0'
25+
- '1.4'
2626
- '1.6'
2727
- '1.7'
2828
- '1.8'

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ PyJulia
66
[![Main workflow](https://github.com/JuliaPy/pyjulia/workflows/Main%20workflow/badge.svg)](https://github.com/JuliaPy/pyjulia/actions?query=workflow%3A%22Main+workflow%22)
77
[![DOI](https://zenodo.org/badge/14576985.svg)](https://zenodo.org/badge/latestdoi/14576985)
88

9-
Experimenting with developing a better interface to [Julia language](https://julialang.org/) that works with [Python](https://www.python.org/) 2 & 3 and Julia v1.0+.
9+
Experimenting with developing a better interface to [Julia language](https://julialang.org/) that works with [Python](https://www.python.org/) 3 and Julia v1.4+.
1010

1111
Quick usage
1212
-----------

src/julia/tools.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -96,8 +96,8 @@ def install(julia="julia", color="auto", python=None, quiet=False):
9696

9797
OP = "build" if python else "install"
9898
install_cmd = julia_cmd + [
99-
os.path.join(os.path.dirname(os.path.realpath(__file__)), "install.jl"),
10099
"--",
100+
os.path.join(os.path.dirname(os.path.realpath(__file__)), "install.jl"),
101101
OP,
102102
python or sys.executable,
103103
libpython,

0 commit comments

Comments
 (0)