Skip to content

Commit

Permalink
Merge pull request #94 from FAST-HEP/BK_tidy_end_print
Browse files Browse the repository at this point in the history
Tidy up final print after job
  • Loading branch information
benkrikler authored Oct 27, 2019
2 parents 692378f + 6d31b98 commit 80259fb
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 4 deletions.
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,15 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]
## [0.15.0] - 2019-10-27
### Added
- Existing collectors may now return their results within python, in addition to writing them to disk PR #90 [@lgray](https://github.com/lgray).
- This behavior can, at present, only be controlled within python, and is meant for exposing certain aspects of FAST-carpenter plumbing to [coffea](https://github.com/CoffeaTeam/coffea).

### Changed
- Fix bug in BinnedDataframe stage, issue #89, PR #93 [@benkrikler](httsp://github.com/benkrikler)
- Pin atuproot to v0.1.13, PR #91
- Tidy the print out at the end of processing, PR #94.

## [0.14.3] - 2019-10-07
### Added
Expand Down
3 changes: 2 additions & 1 deletion fast_carpenter/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,8 @@ def main(args=None):
mkdir_p(args.outdir)

_, ret_val = run_carpenter(sequence, datasets, args)
print(ret_val)
dfs = [df for df in ret_val[0] if df is not None]
print(len(dfs), "dataframes have been written to director '%s'" % args.outdir)
return 0


Expand Down
2 changes: 1 addition & 1 deletion fast_carpenter/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,5 @@ def split_version(version):
return tuple(result)


__version__ = '0.14.4'
__version__ = '0.15.0'
version_info = split_version(__version__) # noqa
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.14.4
current_version = 0.15.0
commit = True
tag = False

Expand Down

0 comments on commit 80259fb

Please sign in to comment.