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

Fix docs #528

Merged
merged 2 commits into from
Aug 26, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/source/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ conda install -c conda-forge optimagic
Alternatively, you can install optimagic via pip:

```
pip install estimagic
pip install optimagic
```

In both cases, you get optimagic and all of its mandatory dependencies.
Expand Down
6 changes: 3 additions & 3 deletions src/optimagic/deprecations.py
Original file line number Diff line number Diff line change
Expand Up @@ -410,7 +410,7 @@ def replace_and_warn_about_deprecated_multistart_options(options):
"The `convergence_relative_params_tolerance` option is deprecated and will "
"be removed in version 0.6.0. Use `convergence_xtol_rel` instead. For more "
"details see the documentation: "
"https://optimagic.readthedocs.io/en/latest/how_to/how_to_convergence.html"
"https://optimagic.readthedocs.io/en/latest/how_to/how_to_multistart.html"
)
warnings.warn(msg, FutureWarning)
if options.convergence_xtol_rel is None:
Expand All @@ -425,7 +425,7 @@ def replace_and_warn_about_deprecated_multistart_options(options):
"handling for exploration. Use the new `error_handling` option to set the "
"error handling for both optimization and exploration. For more details "
"see the documentation: "
"https://optimagic.readthedocs.io/en/latest/how_to/how_to_error_handling.html"
"https://optimagic.readthedocs.io/en/latest/how_to/how_to_multistart.html"
)
warnings.warn(msg, FutureWarning)
if options.error_handling is None:
Expand All @@ -438,7 +438,7 @@ def replace_and_warn_about_deprecated_multistart_options(options):
"handling for exploration. Use the new `error_handling` option to set the "
"error handling for both optimization and exploration. For more details "
"see the documentation: "
"https://optimagic.readthedocs.io/en/latest/how_to/how_to_error_handling.html"
"https://optimagic.readthedocs.io/en/latest/how_to/how_to_multistart.html"
)
warnings.warn(msg, FutureWarning)
if options.error_handling is None:
Expand Down