Skip to content

Releases: alphatwirl/atpbar

v1.0.0

03 Mar 12:16
Compare
Choose a tag to compare

PyPI: https://pypi.org/project/atpbar/1.0.0/

Changes from the previous release: (diff)

  • changed "Development Status" to "Production/Stable" in setup.py
  • updated .travis.yml, not allowing failure in Python 3.7

v0.9.9

03 Mar 11:29
Compare
Choose a tag to compare

PyPI: https://pypi.org/project/atpbar/0.9.9/

Changes from the previous release: (diff)

  • confirmed atpbar works on Jupyter Notebook in Python 2.7 (#3)
  • updated README.md, .travis.yml
  • added files in requirements

v0.9.8

03 Mar 04:01
Compare
Choose a tag to compare

PyPI: https://pypi.org/project/atpbar/0.9.8/

Changes from the previous release: (diff)

  • updated tests, README.md
  • added disable()

v0.9.7

24 Feb 18:07
Compare
Choose a tag to compare

PyPI: https://pypi.org/project/atpbar/0.9.7/

Changes from the previous release: (diff)

  • fixed the problem of progress bars stopping in multiprocessing.
    • atpbar in sub-processes will not send the end order to the pickup.
  • fixed the problem of duplicate progress bar for complete tasks.
    • The last report will be sent only once for each task regardless of whether the loop completes all iterations.
  • updated .travis.yml, using 3.7-dev for python 3.7
  • updated tests
  • cleaned code

v0.9.6

22 Feb 11:59
Compare
Choose a tag to compare

PyPI: https://pypi.org/project/atpbar/0.9.6/

Changes from the previous release: (diff)

  • updated the feature
    • The progress bars will be updated with the last complete iteration even if the loop ends with break or an exception
  • fixed the problem of a pickup not running after flush().
  • stopped atpbar waiting for all progress bars to finish updating if another atpbar starts in a sub-thread or sub-process.
  • updated .travis.yml, adding a test without jupyter
  • removed ProgressReport, replaced with dict()
  • updated docstrings
  • updated tests
  • cleaned code

v0.9.5

19 Feb 05:24
Compare
Choose a tag to compare

PyPI: https://pypi.org/project/atpbar/0.9.5/

Changes from the previous release: (diff)

  • made the long description in setup.py load from README.md
  • updated tests

v0.9.4

18 Feb 22:09
Compare
Choose a tag to compare

PyPI: https://pypi.org/project/atpbar/0.9.4/

Changes from the previous release: (diff)

  • fixed the problem whereby the pickup doesn't end if the loop ends with break.
  • made a presentation every time a pickup is created.
  • updated tests

v0.9.3

18 Feb 12:33
Compare
Choose a tag to compare

PyPI: https://pypi.org/project/atpbar/0.9.3/

Changes from the previous release: (diff)

  • fixed the problem of returning from the outermost atpbar in the single thread. This problem was causing, for example, the command prompt to already have appeared while the progress bars were still growing in the interactive mode.
  • added a new function flush(), which returns after the progress bars finished updating -- useful for threading and multiprocessing

v.0.9.2

17 Feb 16:57
Compare
Choose a tag to compare

PyPI: https://pypi.org/project/atpbar/0.9.2/

Changes from the previous release: (diff)

  • updated README.md
  • updated the long description in setup.py for pypi

v0.9.1

17 Feb 13:53
Compare
Choose a tag to compare

PyPI: https://pypi.org/project/atpbar/0.9.1/

Changes from the previous release: (diff)

  • fixed a bug in ProgressBarJupyter
    • preventing scroll bars from being added to the output of a previous cell
  • updated README.md