bump version, Merge branch 'devel'

This commit is contained in:
Casper da Costa-Luis 2019-05-13 22:34:21 +00:00
commit a73e5569dc
No known key found for this signature in database
GPG Key ID: 986B408043AE090D
2 changed files with 3 additions and 2 deletions

View File

@ -209,8 +209,9 @@ class tqdm_notebook(tqdm):
# Replace with IPython progress bar display (with correct total)
unit_scale = 1 if self.unit_scale is True else self.unit_scale or 1
total = self.total * unit_scale if self.total else self.total
self.sp = self.status_printer(
self.fp, self.total * unit_scale, self.desc, self.ncols)
self.fp, total, self.desc, self.ncols)
self.desc = None # trick to place description before the bar
# Print initial bar state

View File

@ -5,7 +5,7 @@ from io import open as io_open
__all__ = ["__version__"]
# major, minor, patch, -extra
version_info = 4, 32, 0
version_info = 4, 32, 1
# Nice string for the version
__version__ = '.'.join(map(str, version_info))