From fae775515e0b2f3f1d811d52b5732023482d0a02 Mon Sep 17 00:00:00 2001 From: Daniel Weindl Date: Tue, 26 Nov 2024 09:54:01 +0100 Subject: [PATCH] Exclude nlopt==2.9.0 (#1519) We want to avoid nlopt-python 2.9.0 because it does not match nlopt v2.9.0 and is affected by https://github.com/stevengj/nlopt/issues/575. Closes #1511. --- setup.cfg | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/setup.cfg b/setup.cfg index bc28ae610..d9eb70919 100644 --- a/setup.cfg +++ b/setup.cfg @@ -105,7 +105,8 @@ ipopt = dlib = dlib >= 19.19.0 nlopt = - nlopt >= 2.6.2 + # != 2.9.0: https://github.com/stevengj/nlopt/issues/575 + nlopt >= 2.6.2, != 2.9.0 pyswarm = pyswarm >= 0.6 cma =