Hello community,

here is the log from the commit of package python-metaextract for 
openSUSE:Factory checked in at 2020-03-29 14:28:16
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-metaextract (Old)
 and      /work/SRC/openSUSE:Factory/.python-metaextract.new.3160 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "python-metaextract"

Sun Mar 29 14:28:16 2020 rev:15 rq:789408 version:1.0.7

Changes:
--------
--- /work/SRC/openSUSE:Factory/python-metaextract/python-metaextract.changes    
2019-08-27 12:01:34.551649453 +0200
+++ 
/work/SRC/openSUSE:Factory/.python-metaextract.new.3160/python-metaextract.changes
  2020-03-29 14:28:21.582179241 +0200
@@ -1,0 +2,6 @@
+Sun Mar 29 05:33:31 UTC 2020 - Thomas Bechtold <[email protected]>
+
+- update to 1.0.7:
+  * Use default json encoder 'str'
+
+-------------------------------------------------------------------

Old:
----
  1.0.6.tar.gz

New:
----
  1.0.7.tar.gz

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ python-metaextract.spec ++++++
--- /var/tmp/diff_new_pack.JATDzs/_old  2020-03-29 14:28:22.754179839 +0200
+++ /var/tmp/diff_new_pack.JATDzs/_new  2020-03-29 14:28:22.758179842 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package python-metaextract
 #
-# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
+# 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
@@ -18,12 +18,12 @@
 
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 Name:           python-metaextract
-Version:        1.0.6
+Version:        1.0.7
 Release:        0
 Summary:        Module to collect metadata for Python modules
 License:        Apache-2.0
 Group:          Development/Languages/Python
-Url:            http://github.com/toabctl/metaextract
+URL:            http://github.com/toabctl/metaextract
 Source:         
https://github.com/toabctl/metaextract/archive/%{version}.tar.gz
 BuildRequires:  %{python_module setuptools}
 BuildRequires:  fdupes

++++++ 1.0.6.tar.gz -> 1.0.7.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/metaextract-1.0.6/metaextract/__init__.py 
new/metaextract-1.0.7/metaextract/__init__.py
--- old/metaextract-1.0.6/metaextract/__init__.py       2019-08-08 
10:30:46.000000000 +0200
+++ new/metaextract-1.0.7/metaextract/__init__.py       2020-03-29 
07:21:37.000000000 +0200
@@ -15,4 +15,4 @@
 # See the License for the specific language governing permissions and
 # limitations under the License.
 
-__version__ = "1.0.6"
+__version__ = "1.0.7"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/metaextract-1.0.6/metaextract/metaextract.py 
new/metaextract-1.0.7/metaextract/metaextract.py
--- old/metaextract-1.0.6/metaextract/metaextract.py    2019-08-08 
10:30:46.000000000 +0200
+++ new/metaextract-1.0.7/metaextract/metaextract.py    2020-03-29 
07:21:37.000000000 +0200
@@ -78,6 +78,7 @@
         if self.output:
             with open(self.output, "w+") as f:
                 f.write(json.dumps(data_with_version, indent=2,
-                                   sort_keys=True))
+                                   sort_keys=True, default=str))
         else:
-            print(json.dumps(data_with_version, indent=2, sort_keys=True))
+            print(json.dumps(data_with_version, indent=2,
+                             sort_keys=True, default=str))


Reply via email to