Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package python-girder-client for openSUSE:Factory checked in at 2023-06-01 17:19:21 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/python-girder-client (Old) and /work/SRC/openSUSE:Factory/.python-girder-client.new.2531 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-girder-client" Thu Jun 1 17:19:21 2023 rev:7 rq:1090067 version:3.1.20 Changes: -------- --- /work/SRC/openSUSE:Factory/python-girder-client/python-girder-client.changes 2020-11-17 21:26:32.689452763 +0100 +++ /work/SRC/openSUSE:Factory/.python-girder-client.new.2531/python-girder-client.changes 2023-06-01 17:19:28.422143779 +0200 @@ -1,0 +2,6 @@ +Wed May 31 19:20:41 UTC 2023 - Dirk Müller <dmuel...@suse.com> + +- update to 3.1.20: + * long list of fixes, see https://github.com/girder/girder/compare/v3.1.3...v3.1.20 + +------------------------------------------------------------------- Old: ---- girder-client-3.1.3.tar.gz New: ---- girder-client-3.1.20.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ python-girder-client.spec ++++++ --- /var/tmp/diff_new_pack.NpHw8j/_old 2023-06-01 17:19:28.874146458 +0200 +++ /var/tmp/diff_new_pack.NpHw8j/_new 2023-06-01 17:19:28.878146482 +0200 @@ -1,7 +1,7 @@ # # spec file for package python-girder-client # -# Copyright (c) 2020 SUSE LLC +# Copyright (c) 2023 SUSE LLC # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -16,9 +16,9 @@ # -%{?!python_module:%define python_module() python-%{**} python3-%{**}} +%{?sle15_python_module_pythons} Name: python-girder-client -Version: 3.1.3 +Version: 3.1.20 Release: 0 Summary: Python Girder client License: Apache-2.0 @@ -34,7 +34,7 @@ Requires: python-requests-toolbelt Requires: python-six Requires(post): update-alternatives -Requires(postun): update-alternatives +Requires(postun):update-alternatives BuildArch: noarch %python_subpackages ++++++ girder-client-3.1.3.tar.gz -> girder-client-3.1.20.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/girder-client-3.1.3/PKG-INFO new/girder-client-3.1.20/PKG-INFO --- old/girder-client-3.1.3/PKG-INFO 2020-10-09 15:20:37.000000000 +0200 +++ new/girder-client-3.1.20/PKG-INFO 2023-05-22 22:23:40.000000000 +0200 @@ -1,22 +1,24 @@ -Metadata-Version: 1.1 +Metadata-Version: 2.1 Name: girder-client -Version: 3.1.3 +Version: 3.1.20 Summary: Python client for interacting with Girder servers Home-page: http://girder.readthedocs.org/en/latest/python-client.html Author: Kitware, Inc. Author-email: kitw...@kitware.com License: Apache 2.0 -Description: Girder Python Client - ==================== - - This is a set of python libraries and a command-line tool that can be used to - interact with the REST API of a `Girder <http://girder.readthedocs.org>`_ server. - - Documentation for the client can be found at http://girder.readthedocs.org/en/latest/python-client.html. - Platform: UNKNOWN Classifier: Development Status :: 3 - Alpha Classifier: Environment :: Console Classifier: License :: OSI Approved :: Apache Software License Classifier: Operating System :: OS Independent Classifier: Programming Language :: Python :: 3 + +Girder Python Client +==================== + +This is a set of python libraries and a command-line tool that can be used to +interact with the REST API of a `Girder <http://girder.readthedocs.org>`_ server. + +Documentation for the client can be found at http://girder.readthedocs.org/en/latest/python-client.html. + + diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/girder-client-3.1.3/girder_client/__init__.py new/girder-client-3.1.20/girder_client/__init__.py --- old/girder-client-3.1.3/girder_client/__init__.py 2020-10-09 15:19:38.000000000 +0200 +++ new/girder-client-3.1.20/girder_client/__init__.py 2023-05-22 22:22:31.000000000 +0200 @@ -454,7 +454,7 @@ **kwargs) # If success, return the json object. Otherwise throw an exception. - if result.status_code in (200, 201): + if result.ok: if jsonResp: return result.json() else: @@ -1320,7 +1320,8 @@ for item in items: _id = item['_id'] self.incomingMetadata[_id] = item - if sync and _id in self.localMetadata and item == self.localMetadata[_id]: + if (sync and _id in self.localMetadata + and item['updated'] == self.localMetadata[_id]['updated']): continue self.downloadItem(item['_id'], dest, name=item['name']) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/girder-client-3.1.3/girder_client/cli.py new/girder-client-3.1.20/girder_client/cli.py --- old/girder-client-3.1.3/girder_client/cli.py 2020-10-09 15:19:38.000000000 +0200 +++ new/girder-client-3.1.20/girder_client/cli.py 2023-05-22 22:22:31.000000000 +0200 @@ -55,7 +55,7 @@ def formatPos(_self): pos = formatSize(_self.pos) - if _self.length_known: + if _self.length is not None: pos += '/%s' % formatSize(_self.length) return pos diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/girder-client-3.1.3/girder_client.egg-info/PKG-INFO new/girder-client-3.1.20/girder_client.egg-info/PKG-INFO --- old/girder-client-3.1.3/girder_client.egg-info/PKG-INFO 2020-10-09 15:20:37.000000000 +0200 +++ new/girder-client-3.1.20/girder_client.egg-info/PKG-INFO 2023-05-22 22:23:39.000000000 +0200 @@ -1,22 +1,24 @@ -Metadata-Version: 1.1 +Metadata-Version: 2.1 Name: girder-client -Version: 3.1.3 +Version: 3.1.20 Summary: Python client for interacting with Girder servers Home-page: http://girder.readthedocs.org/en/latest/python-client.html Author: Kitware, Inc. Author-email: kitw...@kitware.com License: Apache 2.0 -Description: Girder Python Client - ==================== - - This is a set of python libraries and a command-line tool that can be used to - interact with the REST API of a `Girder <http://girder.readthedocs.org>`_ server. - - Documentation for the client can be found at http://girder.readthedocs.org/en/latest/python-client.html. - Platform: UNKNOWN Classifier: Development Status :: 3 - Alpha Classifier: Environment :: Console Classifier: License :: OSI Approved :: Apache Software License Classifier: Operating System :: OS Independent Classifier: Programming Language :: Python :: 3 + +Girder Python Client +==================== + +This is a set of python libraries and a command-line tool that can be used to +interact with the REST API of a `Girder <http://girder.readthedocs.org>`_ server. + +Documentation for the client can be found at http://girder.readthedocs.org/en/latest/python-client.html. + + diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/girder-client-3.1.3/setup.py new/girder-client-3.1.20/setup.py --- old/girder-client-3.1.3/setup.py 2020-10-09 15:19:38.000000000 +0200 +++ new/girder-client-3.1.20/setup.py 2023-05-22 22:22:31.000000000 +0200 @@ -32,7 +32,10 @@ setup( name='girder-client', use_scm_version={'root': '../..', 'local_scheme': prerelease_local_scheme}, - setup_requires=['setuptools-scm'], + setup_requires=[ + 'setuptools-scm<7 ; python_version < "3.7"', + 'setuptools-scm ; python_version >= "3.7"', + ], description='Python client for interacting with Girder servers', long_description=readme, author='Kitware, Inc.',