Releases: mdolab/pyhyp
Releases · mdolab/pyhyp
v2.6.2
What's Changed
- Update setup.py with allowed numpy version by @eirikurj in #73
- Updated testing docs by @eytanadler in #75
- Add config file for building docs on RTD by @eirikurj in #74
- Updated Intel config file to work with HPE MPI by @sseraj in #76
- Updated Intel config to work with stable and latest Intel versions by @sseraj in #87
- Make Intel config compiler check more robust by @A-CGray in #88
- Fix icc check by @A-CGray in #89
- Update install instructions by @eirikurj in #93
- Mesh check error printout by @hajdik in #81
- Updating MExt to support python 3.12 syntax by @eirikurj in #95
- Custom GrowthRatios and more Schedule variables by @DavidAnderegg in #94
- version update by @ArshSaja in #99
- Update link for input files by @eirikurj in #100
- Add tabulate to doc mock imports by @A-CGray in #101
- Ignore ruff and pre-commit config files by @wkupiec in #102
New Contributors
- @eytanadler made their first contribution in #75
- @DavidAnderegg made their first contribution in #94
- @ArshSaja made their first contribution in #99
- @wkupiec made their first contribution in #102
Full Changelog: v2.6.1...v2.6.2
v2.6.1
v2.6.0
New features
Bugfixes
- Fixed tests hanging under Intel/Centos image by @nwu63 in #56
Maintenance and documentation
- Added some details to options documentation by @sseraj in #55
- Changed branch name by @sseraj in #57
- Update make rules with proper format by @eirikurj in #59
- Clarifying error message by @hajdik in #58
Full Changelog: v2.5.0...v2.6.0
v2.5.0
v2.4.0
v2.3.2
After some discussion, we have decided to have certain option values use capitalization for readability. This affects the following options:
fileTypeoutputType
Both now take in eitherCGNSorPLOT3D, as opposed tocgnsandplot3dthat were previously accepted.
v2.3.1
v2.3.0
This release refactors the code to:
- Automatically generate the options documentation
- Make the pyHyp class inherit from BaseSolver in baseclasses
The option type and value checking in BaseSolver may break backward compatibility for some pyHyp runscripts, most commonly in two ways:
- String-type values are now case sensitive. This mainly comes up for
fileTypeandouterFaceBC. - The distinction between
floatandinttypes is now enforced. This is commonly an issue formarchDist,ps0,pGridRatio, andcmax.
See #36 for the full changes.