-
Notifications
You must be signed in to change notification settings - Fork 49
Rename n_iter to stopping_maxiter #660
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
Rename n_iter to stopping_maxiter #660
Conversation
Codecov Report✅ All modified and coverable lines are covered by tests.
🚀 New features to boost your workflow:
|
timmens
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Changes look good, thank you!
Are the failing tests and/or the failing mypy run related to your changes?
|
@timmens the failing ci seems unrelated to my changes. I looked into the mypy issue and it appears a recent update to pandas-stubs (PR #1550) fixed setitem to accept sequences containing None. This makes the type: ignore at no longer needed and cause an "Unused type ignore" error in CI. Should I remove the |
|
Great, thanks! Just do it here! |
|
@timmens the Should we skip |
|
This test has been quite annoying for some time. Can you
Thank you! |
|
Actually, you don't have to open a new issue, you can simply append it here #657 |
This PR renames the
bayes_optiteration parameter fromn_itertostopping_maxiter.All other parameter names were reviewed and did not require any changes.
Closes #630