Skip to content

Commit

Permalink
Pin cyipopt in dev environment.
Browse files Browse the repository at this point in the history
  • Loading branch information
janosg committed Dec 28, 2023
1 parent 0db0e16 commit c2b78b8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ channels:
- nodefaults
dependencies:
- python=3.10 # dev
- cyipopt # dev
- cyipopt<=1.2.0 # dev
- jupyterlab # dev, docs
- nb_black # dev, docs
- nlopt # dev, tests
Expand Down
4 changes: 2 additions & 2 deletions src/estimagic/optimization/tranquilo.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
from functools import partial
from estimagic.decorators import mark_minimizer

tranquilo_scalar = mark_minimizer(
tranquilo = mark_minimizer(
func=partial(_tranquilo, functype="scalar"),
name="tranquilo",
primary_criterion_entry="value",
Expand All @@ -24,6 +24,6 @@
is_global=False,
)

__all__ = ["tranquilo_scalar", "tranquilo_ls"]
__all__ = ["tranquilo", "tranquilo_ls"]
else:
__all__ = []

0 comments on commit c2b78b8

Please sign in to comment.