From f5512a4aead45539f2ec66abdbe1ff58b08295f3 Mon Sep 17 00:00:00 2001 From: "Alinson S. Xavier" Date: Thu, 8 Jun 2023 12:18:32 -0500 Subject: [PATCH] build.jl: Update MIPLearn version --- README.md | 2 +- deps/build.jl | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index cfd5291..6b39f1c 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@

-**MIPLearn** is an extensible open-source framework for solving discrete optimization problems using a combination of Mixed-Integer Linear Programming (MIP) and Machine Learning (ML). See the [main repository](https://github.com/ANL-CEEESA/MIPLearn) for more information. This repository holds an experimental Julia interface for the package. +**MIPLearn** is an extensible open-source framework for solving discrete optimization problems using a combination of Mixed-Integer Linear Programming (MIP) and Machine Learning (ML). See the [main repository](https://github.com/ANL-CEEESA/MIPLearn) for more information. This repository holds the Julia interface for the package. [miplearn]: https://github.com/ANL-CEEESA/MIPLearn diff --git a/deps/build.jl b/deps/build.jl index cdc304c..3be992f 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.3.0.dev1`) + run(`$pip install miplearn==0.3.0`) end install_miplearn()