Skip to content

Commit 354c7d4

Browse files
committed
init
1 parent 2295a82 commit 354c7d4

3 files changed

Lines changed: 9 additions & 1 deletion

File tree

changes.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# Changes
22

3+
## 0.1.12
4+
- fixed bug in last version: non-FAMoS methods do not terminate
5+
36
## 0.1.11
47
- fixed bug in stepwise moves when working with multiple subspaces (#65)
58
- fixed bug in FAMoS switching (#68)

petab_select/ui.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -193,9 +193,14 @@ def candidates(
193193
newly_calibrated_models={},
194194
criterion=criterion,
195195
)
196+
continue
196197
except StopIteration:
197198
break
198199

200+
# No models were found, and the method doesn't switch, so no further
201+
# models can be found.
202+
break
203+
199204
candidate_space.previous_predecessor_model = predecessor_model
200205

201206
return candidate_space

petab_select/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
"""Version of the model selection extension for PEtab."""
2-
__version__ = '0.1.11'
2+
__version__ = '0.1.12'

0 commit comments

Comments
 (0)