From 92d0c5e6d6ee72fdca131d9d5a58632b847bab82 Mon Sep 17 00:00:00 2001 From: yuvipanda Date: Sun, 30 Jul 2017 11:22:28 -0700 Subject: [PATCH] Make julia verify check for libpython path PyCall.python just seems to say 'python' --- tests/julia/pyplot/verify | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/julia/pyplot/verify b/tests/julia/pyplot/verify index ac8e5c0a..d906c20c 100755 --- a/tests/julia/pyplot/verify +++ b/tests/julia/pyplot/verify @@ -2,7 +2,8 @@ using PyPlot # Make sure we are re-using the same conda python -if PyCall.python != "/srv/conda/bin/python" +if PyCall.libpython != "/srv/conda/lib/libpython3.6m" + println("Not re-using conda python! Using " * PyCall.libpython * " instead") exit(1) end