Metaflow 2.2.3 Release Notes
The Metaflow 2.2.3 release is a minor patch release.
- Bug Fixes
- Fix #305 : Default 'help' for parameters was not handled properly
- Pin the conda library versions for metaflow default dependencies based on the Python version
- Add conda bin path to the PATH environment variable during Metaflow step execution
- Fix a typo in metaflow/debug.py
Bug Fixes
Fix #305 : Default 'help' for parameters was not handled properly
Fix the issue where default help
for parameters was not handled properly. #305 Flow fails because IncludeFile
's default value for the help
argument is None. PR: #318
Pin the conda library versions for metaflow default dependencies based on the Python version.
The previously pinned library version does not work with python 3.8. Now we have two sets of different version combinations which should work for python 2.7, 3.5, 3.6, 3.7, and 3.8. PR: #308
Add conda bin path to the PATH environment variable during Metaflow step execution
Previously the executable installed in conda environment was not visible inside metaflow steps. Fixing this issue by appending conda bin path to the PATH environment variable PR: #307
Fix a typo in metaflow/debug.py
A typo fix. PR: #304