Skip to content

Commit

Permalink
Release 0.1.12
Browse files Browse the repository at this point in the history
  • Loading branch information
dilpath authored Feb 1, 2024
2 parents 2295a82 + 354c7d4 commit 6100728
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 1 deletion.
3 changes: 3 additions & 0 deletions changes.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Changes

## 0.1.12
- fixed bug in last version: non-FAMoS methods do not terminate

## 0.1.11
- fixed bug in stepwise moves when working with multiple subspaces (#65)
- fixed bug in FAMoS switching (#68)
Expand Down
5 changes: 5 additions & 0 deletions petab_select/ui.py
Original file line number Diff line number Diff line change
Expand Up @@ -193,9 +193,14 @@ def candidates(
newly_calibrated_models={},
criterion=criterion,
)
continue
except StopIteration:
break

# No models were found, and the method doesn't switch, so no further
# models can be found.
break

candidate_space.previous_predecessor_model = predecessor_model

return candidate_space
Expand Down
2 changes: 1 addition & 1 deletion petab_select/version.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
"""Version of the model selection extension for PEtab."""
__version__ = '0.1.11'
__version__ = '0.1.12'

0 comments on commit 6100728

Please sign in to comment.