We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 74d61a3 commit 6b4b799Copy full SHA for 6b4b799
ci/before_script.jl
@@ -6,10 +6,6 @@ else
6
end
7
8
9
-# Let PyCall.jl use Python interpreter from Conda.jl
10
-# See: https://github.com/JuliaPy/PyCall.jl
11
-ENV["PYTHON"] = ""
12
-
13
@info "Pkg.clone(pwd())"
14
Pkg.clone(pwd())
15
test/install_dependencies.jl
@@ -1,3 +1,14 @@
1
+if VERSION >= v"0.7.0-"
2
+ # Adding Pkg in test/REQUIRE would be an error in 0.6. Using
3
+ # Project.toml still has some gotchas. So:
4
+ Pkg = Base.require(Base.PkgId(Base.UUID(0x44cfe95a1eb252eab672e2afdf69b78f), "Pkg"))
5
+end
+
+# Let PyCall.jl use Python interpreter from Conda.jl
+# See: https://github.com/JuliaPy/PyCall.jl
+ENV["PYTHON"] = ""
+Pkg.build("PyCall")
using Compat: @info
using IPython
0 commit comments