diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 8abbe999..86a527e3 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -22,7 +22,7 @@ jobs: - '3.9' - '3.10' julia-version: - - '1.0' + - '1.4' - '1.6' - '1.7' - '1.8' diff --git a/README.md b/README.md index 5eb77142..2df8ee4c 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,7 @@ PyJulia [![Main workflow](https://github.com/JuliaPy/pyjulia/workflows/Main%20workflow/badge.svg)](https://github.com/JuliaPy/pyjulia/actions?query=workflow%3A%22Main+workflow%22) [![DOI](https://zenodo.org/badge/14576985.svg)](https://zenodo.org/badge/latestdoi/14576985) -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+. +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+. Quick usage ----------- diff --git a/src/julia/tools.py b/src/julia/tools.py index b1b86b82..13bf2f4a 100644 --- a/src/julia/tools.py +++ b/src/julia/tools.py @@ -96,8 +96,8 @@ def install(julia="julia", color="auto", python=None, quiet=False): OP = "build" if python else "install" install_cmd = julia_cmd + [ - os.path.join(os.path.dirname(os.path.realpath(__file__)), "install.jl"), "--", + os.path.join(os.path.dirname(os.path.realpath(__file__)), "install.jl"), OP, python or sys.executable, libpython,