Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

New release #384

Open
JoOkuma opened this issue Jun 26, 2024 · 3 comments
Open

New release #384

JoOkuma opened this issue Jun 26, 2024 · 3 comments

Comments

@JoOkuma
Copy link

JoOkuma commented Jun 26, 2024

Hi @sebheger and other maintainers

Any thoughts on doing a new release? Since 1.15.0 python-mip got python 3.12 and MacOS Mx support.

Thanks in advance,

termoshtt added a commit to Jij-Inc/ommx that referenced this issue Jun 27, 2024
Constraint without any decision variable like following causes
segmentation fault in CBC solver with Python-MIP 1.15.
https://github.com/Jij-Inc/ommx/actions/runs/9698846012/job/26766373894

```python
    x = DecisionVariable.continuous(0)
    instance = Instance.from_components(
        decision_variables=[x],
        objective=x,
        constraints=[
            # 1 >= 0 is always true
            Linear(terms={}, constant=1) >= 0,
            x <= 1,
        ],
        sense=Instance.MAXIMIZE,
    )
```

This has been reported in
coin-or/python-mip#213 and some linked issues,
and fixed in coin-or/python-mip#237.

We use latest commit of Python-MIP
coin-or/python-mip@0ccb811
until the next version is released
coin-or/python-mip#384
@mvernacc
Copy link

mvernacc commented Jul 1, 2024

A new release, including #377, is needed to work with the latest version of HiGHS (1.7.1)

@JoOkuma
Copy link
Author

JoOkuma commented Jul 5, 2024

Oi @tuliotoffolo, I saw you merged the latest PRs of this repo.
Could you help us with this?

Thanks in advance.

@DavidWalz
Copy link

mip==1.15 still requires cffi==1.15 which does not have wheels for python > 3.10 (later version do).
Therefore, a new release would be highly welcome. Thanks in advance!

Until then pip install git+https://github.com/coin-or/python-mip.git

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants