You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
OpenMDAO v3.31 changes the om.Group_setup_procs method function signature from _setup_procs(pathname, comm, mode, prob_meta) to _setup_procs(pathname, comm, prob_meta) . This breaks the four instances of _setup_procs in openconcept/mission/mission_groups.py. I'm not sure the best way to handle it because fixing it will break OpenConcept's backward compatibility with all versions of OpenMDAO before v3.31. The best solution would be to find a workaround that doesn't need to use the hidden methods.
For now, I'm adding an upper bound of v3.30 on the OpenMDAO version.
The text was updated successfully, but these errors were encountered:
Description
OpenMDAO v3.31 changes the
om.Group
_setup_procs
method function signature from_setup_procs(pathname, comm, mode, prob_meta)
to_setup_procs(pathname, comm, prob_meta)
. This breaks the four instances of_setup_procs
in openconcept/mission/mission_groups.py. I'm not sure the best way to handle it because fixing it will break OpenConcept's backward compatibility with all versions of OpenMDAO before v3.31. The best solution would be to find a workaround that doesn't need to use the hidden methods.For now, I'm adding an upper bound of v3.30 on the OpenMDAO version.
The text was updated successfully, but these errors were encountered: