From 23dbefc8edc72c5740b6671deca506be39fe53b5 Mon Sep 17 00:00:00 2001 From: Alinson S Xavier Date: Fri, 9 Apr 2021 09:07:36 -0500 Subject: [PATCH] build.jl: Use 0.2.0.dev3 --- deps/build.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deps/build.jl b/deps/build.jl index 4c6b942..d016e80 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.dev2`) + run(`$pip install miplearn==0.2.0.dev3`) end install_miplearn()