From 52a4f1243866ff3b1b2eb6b0e00ec9eb022a5720 Mon Sep 17 00:00:00 2001 From: Kevin Jacobson Date: Mon, 23 Feb 2026 12:03:31 -0500 Subject: [PATCH] - Mark a version of OpenMDAO with a parallel bug in the setup.py - Update recommended solver versions in the readme --- README.md | 12 ++++++------ setup.py | 2 +- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index aee7cc6b..74a6cddb 100644 --- a/README.md +++ b/README.md @@ -40,13 +40,13 @@ Open-source codes with builders and components compatible with mphys: | Code | Recommended Version* | Analysis Type | Notes | |------------------------------------------------------------|----------------------|--------------------------------|-------------------------------------------------------------------------| -| [ADflow](https://github.com/mdolab/adflow) | 2.12.0 | Aerodynamics | Structured multi-block and overset CFD. | +| [ADflow](https://github.com/mdolab/adflow) | 2.12.2 | Aerodynamics | Structured multi-block and overset CFD. | | [DAfoam](https://github.com/mdolab/dafoam) | 3.2.0 | Aerodynamics | Discrete Adjoint with OpenFOAM. | -| [OpenAeroStruct](https://github.com/mdolab/openaerostruct) | 2.9.1 | Aerodynamics | Vortex lattice aerodynamics written using OpenMDAO. | -| [FunToFEM](https://github.com/smdogroup/funtofem) | 0.3.8 | Load and Displacement Transfer | Point cloud based transfer scheme. Part of the FUNtoFEM package. | -| [pyCycle](https://github.com/OpenMDAO/pyCycle) | 4.3.0 | Propulsion | Thermodynamic cycle modeling library for engines. | -| [pyGeo](https://github.com/mdolab/pygeo) | 1.15.0 | Geometric Parameterization | Wrapper for ESP, OpenVSP, and a free-form deformation parameterization. | -| [TACS](https://github.com/smdogroup/tacs) | 3.8.0 | Structures | Parallel Finite Element Analysis. | +| [OpenAeroStruct](https://github.com/mdolab/openaerostruct) | 2.12.0 | Aerodynamics | Vortex lattice aerodynamics written using OpenMDAO. | +| [FunToFEM](https://github.com/smdogroup/funtofem) | 0.3.10 | Load and Displacement Transfer | Point cloud based transfer scheme. Part of the FUNtoFEM package. | +| [pyCycle](https://github.com/OpenMDAO/pyCycle) | 4.4.0 | Propulsion | Thermodynamic cycle modeling library for engines. | +| [pyGeo](https://github.com/mdolab/pygeo) | 1.17.0 | Geometric Parameterization | Wrapper for ESP, OpenVSP, and a free-form deformation parameterization. | +| [TACS](https://github.com/smdogroup/tacs) | 3.10.0 | Structures | Parallel Finite Element Analysis. | \* Recommended version to run mphys examples. Older versions may still be supported. diff --git a/setup.py b/setup.py index 40a0d40d..bce08138 100644 --- a/setup.py +++ b/setup.py @@ -36,6 +36,6 @@ author_email="", zip_safe=False, packages=find_packages(), - install_requires=["numpy", "openmdao >= 3.25, != 3.27.0"], + install_requires=["numpy", "openmdao >= 3.25, != 3.27.0, != 3.42.0"], extras_require=optional_dependencies, )