From 8db6da19a8a924f6d6dddc535d41a001eea20c0f Mon Sep 17 00:00:00 2001 From: Alinson S Xavier Date: Fri, 9 Apr 2021 08:21:35 -0500 Subject: [PATCH] build.jl: Use 0.2.0.dev1 --- deps/build.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deps/build.jl b/deps/build.jl index 487f21f..cc3be58 100644 --- a/deps/build.jl +++ b/deps/build.jl @@ -5,7 +5,7 @@ function install_miplearn() Conda.update() pip = joinpath(dirname(pyimport("sys").executable), "pip") isfile(pip) || error("$pip: invalid path") - run(`$pip install miplearn==0.2.0`) + run(`$pip install miplearn==0.2.0.dev1`) end install_miplearn()