Skip to content

Commit

Permalink
release 24.1a3
Browse files Browse the repository at this point in the history
  • Loading branch information
shapiromatron committed Aug 3, 2024
1 parent 0b559df commit d2e44d6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/pybmds/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = "24.1.a2"
__version__ = "24.1a3"

from .batch import BatchResponse, BatchSession # noqa: F401
from .constants import DistType as ContinuousDistType # noqa: F401
Expand Down
1 change: 1 addition & 0 deletions src/pybmds/models/nested_dichotomous.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,7 @@ def to_cpp(self) -> NestedDichotomousAnalysis:

def execute(self) -> NestedDichotomousResult:
self.structs = self.to_cpp()
raise NotImplementedError("TODO - fix pybmds nested dichotomous binding")
self.structs.execute()
self.results = NestedDichotomousResult.from_model(self)
return self.results
Expand Down

0 comments on commit d2e44d6

Please sign in to comment.