Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support Julia 1.0 #10

Merged
merged 14 commits into from
Aug 21, 2018
Prev Previous commit
Next Next commit
Test against Julia 0.7 and 1.0
tkf committed Aug 20, 2018
commit 9bc62fa41e65b01771411763c9c4818f8bc4b5e7
2 changes: 2 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -5,6 +5,8 @@ os:
# - osx
julia:
- 0.6
- 0.7
- 1.0
# - nightly
env:
- CONDA_JL_VERSION="2"
14 changes: 11 additions & 3 deletions ci/before_script.jl
Original file line number Diff line number Diff line change
@@ -1,17 +1,25 @@
@static if VERSION >= v"0.7.0-"
using Pkg
else
macro info(x)
:(info($(esc(x))))
end
end

# Let PyCall.jl use Python interpreter from Conda.jl
# See: https://github.com/JuliaPy/PyCall.jl
ENV["PYTHON"] = ""

info("Pkg.clone(pwd())")
@info "Pkg.clone(pwd())"
Pkg.clone(pwd())

info("Pkg.build(IPython)")
@info "Pkg.build(IPython)"
Pkg.build("IPython")

using IPython
IPython.install_dependency("ipython"; force=true)
IPython.install_dependency("julia"; force=true)
IPython.install_dependency("pytest"; force=true)

info("show_versions.jl")
@info "show_versions.jl"
include("show_versions.jl")