Skip to content

Releases: FAST-HEP/fast-flow

v0.6.1

06 Aug 14:23
f3483dd
Compare
Choose a tag to compare

Fixed

  • Fix regression for handling of backend being a module rather than a string to module, PR #17

v0.6.0

01 Aug 02:45
d9842c6
Compare
Choose a tag to compare

Added

  • Option to return the expanded config (expanding out IMPORTs) PR #15

v0.5.0

25 Jul 22:49
4599c21
Compare
Choose a tag to compare

Added

  • Transfer in help module previously in carpenter, issue #2, PR #14

v0.4.1

21 Mar 15:07
8828252
Compare
Choose a tag to compare

Added

  • Zenodo DOI to README

Changed

  • Fixed issue where default backend wasn't propagated to imported files, issue #11 @benkrikler
  • Fixed issue when stage description is a clone of another, issue #12 @benkrikler

v0.4.0

28 Nov 22:21
5cd59b7
Compare
Choose a tag to compare

Added

  • travis CI autodeployment to pypi

Changed

  • Default backend can be provided as a module / object instead of a string, issue #6 @benkrikler

v0.4.0-rc1

28 Nov 22:10
00932c5
Compare
Choose a tag to compare
v0.4.0-rc1 Pre-release
Pre-release

Added

  • travis CI autodeployment to pypi

Changed

  • Default backend can be provided as a module / object instead of a string, issue #6 @benkrikler

Future instantiation for stages

29 Jul 08:18
c14f007
Compare
Choose a tag to compare

Add methods so that the actual stages can be instantiated later. We process the config but instead of actually constructing the instances of each stage, return a callable which does the final instantiation. This is useful for potentially distributed workflows to do the instantiation on the distributed tasks.

Also fixed the included example code.