build.jl: Update MIPLearn version

This commit is contained in:
2023-06-08 12:18:32 -05:00
parent d6025c5f4a
commit f5512a4aea
2 changed files with 2 additions and 2 deletions

View File

@@ -8,7 +8,7 @@
</a>
</p>
**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

2
deps/build.jl vendored
View File

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