Releases: AnswerDotAI/fastcore
Releases · AnswerDotAI/fastcore
1.0.15
1.0.15
New Features
- add
L.map_filter
and L.map_first
(#97)
- These support some nice refactorings, like changing from this:
d = []
for c in cs:
m = f(c)
if not m:
continue
d.append(m.group(1))
to this:
d = cs.map_filter(f).map(Self.group(1))
1.0.14
1.0.14
Bugs Squashed
- Reapply fix for #86 which was unintentionally reverted by the next commit (#91)
1.0.13
1.0.13
New Features
dict2obj
: Convert (possibly nested) dicts (or lists of dicts) to SimpleNamespace
(#90)
1.0.12
1.0.12
New Features
- add function support to
store_attr
(#85)
Bugs Squashed
- 'mp_context' keyword for initialising concurrent.futures.ProcessPoolExecutor only supported in python 3.7+ (#86)