From a5a3690bb6089bddb1ae57ae8b3e3b1f8ce8f98a Mon Sep 17 00:00:00 2001 From: "Alinson S. Xavier" Date: Tue, 10 Dec 2024 11:47:26 -0600 Subject: [PATCH] Bump to MIPLearn 0.4.2 --- Project.toml | 2 +- deps/build.jl | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Project.toml b/Project.toml index b8414a8..f566acf 100644 --- a/Project.toml +++ b/Project.toml @@ -1,7 +1,7 @@ name = "MIPLearn" uuid = "2b1277c3-b477-4c49-a15e-7ba350325c68" authors = ["Alinson S Xavier "] -version = "0.4.0" +version = "0.4.2" [deps] Conda = "8f4d0f93-b110-5947-807f-2305c1781a2d" diff --git a/deps/build.jl b/deps/build.jl index 4593363..10aa0a3 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.4.1`) + run(`$pip install miplearn==0.4.2`) end install_miplearn()