Hello community, here is the log from the commit of package python-tqdm for openSUSE:Factory checked in at 2020-01-07 23:51:04 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/python-tqdm (Old) and /work/SRC/openSUSE:Factory/.python-tqdm.new.6675 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-tqdm" Tue Jan 7 23:51:04 2020 rev:29 rq:761183 version:4.41.1 Changes: -------- --- /work/SRC/openSUSE:Factory/python-tqdm/python-tqdm.changes 2020-01-04 19:20:24.781112560 +0100 +++ /work/SRC/openSUSE:Factory/.python-tqdm.new.6675/python-tqdm.changes 2020-01-07 23:51:09.959963181 +0100 @@ -1,0 +2,17 @@ +Mon Jan 6 14:46:46 UTC 2020 - Todd R <[email protected]> + +- Remove unneeded python2 ipython-related testing dependencies. + These packages are no longer available for python2 and the test + suite will automatically skip them if they aren't available. + +------------------------------------------------------------------- +Sun Jan 5 02:47:11 UTC 2020 - Arun Persaud <[email protected]> + +- specfile: + * update copyright year + +- update to version 4.41.1: + * fix batch_size=None + * keras missing pop('size') + +------------------------------------------------------------------- Old: ---- tqdm-4.41.0.tar.gz New: ---- tqdm-4.41.1.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ python-tqdm.spec ++++++ --- /var/tmp/diff_new_pack.EVKWZs/_old 2020-01-07 23:51:10.479963451 +0100 +++ /var/tmp/diff_new_pack.EVKWZs/_new 2020-01-07 23:51:10.483963453 +0100 @@ -1,7 +1,7 @@ # # spec file for package python-tqdm # -# Copyright (c) 2019 SUSE LLC +# Copyright (c) 2020 SUSE LLC # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -28,7 +28,7 @@ %bcond_with test %endif Name: python-tqdm%{pkg_suffix} -Version: 4.41.0 +Version: 4.41.1 Release: 0 Summary: An extensible progress meter License: MPL-2.0 AND MIT @@ -42,12 +42,12 @@ BuildArch: noarch %if %{with test} # SECTION test requirements -BuildRequires: %{python_module ipython} -BuildRequires: %{python_module ipywidgets} BuildRequires: %{python_module nose} BuildRequires: %{python_module numpy} BuildRequires: %{python_module pandas} BuildRequires: %{python_module tqdm} +BuildRequires: python3-ipython +BuildRequires: python3-ipywidgets # /SECTION %endif %python_subpackages @@ -91,10 +91,8 @@ %doc README.rst logo.png %doc examples/ %license LICENCE -%dir %{python_sitelib}/tqdm -%dir %{python_sitelib}/tqdm-%{version}-py%{py_ver}.egg-info -%{python_sitelib}/tqdm/* -%{python_sitelib}/tqdm-%{version}-py%{py_ver}.egg-info/* +%{python_sitelib}/tqdm/ +%{python_sitelib}/tqdm-%{version}-py*.egg-info %python_alternative %{_bindir}/tqdm %endif ++++++ tqdm-4.41.0.tar.gz -> tqdm-4.41.1.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/tqdm-4.41.0/PKG-INFO new/tqdm-4.41.1/PKG-INFO --- old/tqdm-4.41.0/PKG-INFO 2019-12-20 19:57:14.000000000 +0100 +++ new/tqdm-4.41.1/PKG-INFO 2020-01-01 19:30:45.000000000 +0100 @@ -1,6 +1,6 @@ Metadata-Version: 2.1 Name: tqdm -Version: 4.41.0 +Version: 4.41.1 Summary: Fast, Extensible Progress Meter Home-page: https://github.com/tqdm/tqdm Maintainer: tqdm developers diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/tqdm-4.41.0/tqdm/_version.py new/tqdm-4.41.1/tqdm/_version.py --- old/tqdm-4.41.0/tqdm/_version.py 2019-12-20 19:56:58.000000000 +0100 +++ new/tqdm-4.41.1/tqdm/_version.py 2020-01-01 19:30:30.000000000 +0100 @@ -5,7 +5,7 @@ __all__ = ["__version__"] # major, minor, patch, -extra -version_info = 4, 41, 0 +version_info = 4, 41, 1 # Nice string for the version __version__ = '.'.join(map(str, version_info)) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/tqdm-4.41.0/tqdm/keras.py new/tqdm-4.41.1/tqdm/keras.py --- old/tqdm-4.41.0/tqdm/keras.py 2019-12-20 19:56:58.000000000 +0100 +++ new/tqdm-4.41.1/tqdm/keras.py 2020-01-01 19:30:30.000000000 +0100 @@ -1,4 +1,4 @@ -from __future__ import absolute_import +from __future__ import absolute_import, division from .auto import tqdm as tqdm_auto from copy import deepcopy from keras.callbacks import Callback @@ -49,7 +49,7 @@ leave=False) self.on_batch_end = self.bar2callback( self.batch_bar, - pop=['batch'], + pop=['batch', 'size'], delta=lambda logs: logs.get('size', 1)) def on_train_begin(self, *_, **__): @@ -68,13 +68,13 @@ self.batch_bar.close() self.batch_bar = self.tqdm_class( total=total, unit='batch', leave=True, - unit_scale=1.0 / params('batch_size', 1)) + unit_scale=1 / (params('batch_size', 1) or 1)) self.on_batch_end = self.bar2callback( self.batch_bar, pop=['batch', 'size'], delta=lambda logs: logs.get('size', 1)) elif self.verbose == 1: - self.batch_bar.unit_scale = 1.0 / params('batch_size', 1) + self.batch_bar.unit_scale = 1 / (params('batch_size', 1) or 1) self.batch_bar.reset(total=total) else: raise KeyError('Unknown verbosity') diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/tqdm-4.41.0/tqdm.egg-info/PKG-INFO new/tqdm-4.41.1/tqdm.egg-info/PKG-INFO --- old/tqdm-4.41.0/tqdm.egg-info/PKG-INFO 2019-12-20 19:57:14.000000000 +0100 +++ new/tqdm-4.41.1/tqdm.egg-info/PKG-INFO 2020-01-01 19:30:45.000000000 +0100 @@ -1,6 +1,6 @@ Metadata-Version: 2.1 Name: tqdm -Version: 4.41.0 +Version: 4.41.1 Summary: Fast, Extensible Progress Meter Home-page: https://github.com/tqdm/tqdm Maintainer: tqdm developers
