Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"],
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is for another PR, but we should probably run tests with with both the minimum and maximum OpenMDAO versions listed here

extras_require=optional_dependencies,
)