- FEATURE - steel toes now allows you to specify ignore_types
Some datasets have a _filepath
attribute that is not meant for saving
datasets to and is not needed to be "branched", and should be ignored from
steel_toes, for example SQLQueryDataSet
.
# settings.py
from kedro.extras.datasets.pandas.sql_dataset import SQLQueryDataSet, SQLTableDataSet
HOOKS = (SteelToes(ignore_types=[SQLQueryDataSet, SQLTableDataSet]),)
- FEATURE - steel toes will now prefer
STEEL_TOES_BRANCH
environment variable if it exists - moved
.flake8
tosetup.cfg
bump2version
now used for versioning
- FIX -
colorama
was not reset on announce and caused terminal color to remain red or green.
Now works with all filesystems
- FIX - use underlying _exists method from datasts so that it works with non local files
🎉 Initial release