Skip to content

Commit 920bc8f

Browse files
authored
Update nlopt to v2.9.1 (pyodide#5305)
1 parent 3f99530 commit 920bc8f

File tree

3 files changed

+9
-4
lines changed

3 files changed

+9
-4
lines changed

docs/project/changelog.md

+1
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ myst:
2121
- Upgraded `protobuf` to 5.29.2 {pr}`5298`
2222
- Added `apsw` 3.47.2.0 {pr}`5251`
2323
- Added `css_inline` 0.14.6 {pr}`5304`
24+
- Upgraded `nlopt` 2.9.1 {pr}`5305`
2425

2526
## Version 0.27.0
2627

packages/nlopt/meta.yaml

+7-3
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
package:
22
name: nlopt
3-
version: 2.7.0
3+
version: 2.9.1
44
top-level:
55
- nlopt
66

77
source:
8-
url: https://github.com/stevengj/nlopt/archive/v2.7.0.tar.gz
9-
sha256: b881cc2a5face5139f1c5a30caf26b7d3cb43d69d5e423c9d78392f99844499f
8+
url: https://github.com/stevengj/nlopt/archive/v2.9.1.tar.gz
9+
sha256: 1e6c33f8cbdc4138d525f3326c231f14ed50d99345561e85285638c49b64ee93
1010

1111
extras:
1212
- - extras/setup.py
@@ -25,3 +25,7 @@ build:
2525
about:
2626
home: https://github.com/stevengj/nlopt
2727
license: LGPL-2.1+
28+
extra:
29+
recipe-maintainers:
30+
- mgreminger
31+
- tom-dudley

packages/nlopt/test_nlopt.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ def h(x, grad):
5353

5454
opt.add_inequality_constraint(h)
5555

56-
opt.set_ftol_rel(1.0e-6)
56+
opt.set_ftol_rel(1.0e-2)
5757

5858
x0 = np.array([5, 11])
5959

0 commit comments

Comments
 (0)