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()