Skip to content
This repository has been archived by the owner on May 2, 2022. It is now read-only.

Latest commit

 

History

History
118 lines (89 loc) · 4.94 KB

CHANGELOG.md

File metadata and controls

118 lines (89 loc) · 4.94 KB

Changelog

[Unreleased]

Changes from the previous release: (diff)

[0.21.0] - 2019-02-10

PyPI: https://pypi.org/project/alphatwirl/0.21.0/

Changes from the previous release: (diff)

  • added progress bars for Jupyter Notebook
  • replaced multiprocessing with threading for progress bars as Jupyter Notebook doesn't let a fork to display progress bars
  • added function atpbar, which initializes Atpbar
    • used in EventLoop and ReaderComposite
  • added iterable Atpbar, which wraps another iterable and reports progress during iterations, inspired by tqdm
  • added a link to a quick start tutorial on Jupyter Notebook mybinder.org in README.md

[0.20.3] - 2019-01-25

PyPI: https://pypi.org/project/alphatwirl/0.20.3/

Changes from the previous release: (diff)

  • made the default format for float in the output data frame the same in python 2 and 3.
  • updated the test for pytest 4
  • updated the tag line, replacing "multi-dimensional" with "multivariate"
  • stopped sleeping needlessly in TaskPackageDropbox #54

[0.20.2] - 2018-10-12

PyPI: https://pypi.org/project/alphatwirl/0.20.2/

Changes from the previous release: (diff)

  • stopped letting receive_one() in TaskPackageDropbox unnecessarily unpickle all available results, which was needlessly consuming memory #51
  • fixed a bug in _deprecated(msg). didn't work correctly when msg was not given.

[0.20.1] - 2018-08-15

PyPI: https://pypi.org/project/alphatwirl/0.20.1/

Changes from the previous release: (diff)

  • allowed duplicate dataset names in EventDatasetReader #50

[0.20.0] - 2018-08-12

PyPI: https://pypi.org/project/alphatwirl/0.20.0/

Changes from the previous release: (diff)

  • added collect() to AllwCount, AnywCount, NotwCount #33
  • mkdir_p() checks if path is empty
  • added unittest for mkdir_p()
  • avoided mutable default of ReaderComposite, AllwCount, AnywCount.
  • removed the implementation of build_progressMonitor_communicationChannel(), atdeprecated(), atdeprecated_func_option(), atdeprecated_class_method_option(), atrenamed_func_option(), atrenamed_class_method_option()
    • were deprecated
    • now, raise RuntimeError if called
  • added a decorator _removed()
  • reimplemented TableFileNameComposer
  • fixed ProgressPrint, avoiding changing dict during iteration

[0.19.0] - 2018-08-08

PyPI: https://pypi.org/project/alphatwirl/0.19.0/

Changes from the previous release: (diff)

[0.18.8] - 2018-08-08

PyPI: https://pypi.org/project/alphatwirl/0.18.8/

Changes from the previous release: (diff)

  • fixed an import error at rtd

[0.18.7] - 2018-08-07

PyPI: https://pypi.org/project/alphatwirl/0.18.7/

Changes from the previous release: (diff)

  • changed behavior of RoundLog
    • returns the underflow bin for 0 and negative values if min is given. (previously, returns 0 for 0 and None for a negative number even when min is given)
    • returns the overflow bin for inf if max is given. (previously, returns None for inf even when max is given)
  • optimized RoundLog and Round for speed, e.g., replacing linear search with binary search
  • updated zenodo badge, using all-versions badge
  • organized requirements #35
    • requirements/doc.txt for sphinx doc, used at Read the Docs
    • requirements/test.txt for test, used at travis-ci
  • added CHANGELOG.md

[0.18.6] - 2018-08-05

PyPI: https://pypi.org/project/alphatwirl/0.18.6/

Changes from the previous release: (diff)

  • fixed Read The Docs. #47
  • updated README.md
  • updated travis-ci config
  • updated unittests