Hello community,
here is the log from the commit of package python-metaextract for
openSUSE:Leap:15.2 checked in at 2020-04-02 16:48:31
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Leap:15.2/python-metaextract (Old)
and /work/SRC/openSUSE:Leap:15.2/.python-metaextract.new.3248 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-metaextract"
Thu Apr 2 16:48:31 2020 rev:12 rq:790206 version:1.0.7
Changes:
--------
--- /work/SRC/openSUSE:Leap:15.2/python-metaextract/python-metaextract.changes
2020-03-09 18:08:49.176977626 +0100
+++
/work/SRC/openSUSE:Leap:15.2/.python-metaextract.new.3248/python-metaextract.changes
2020-04-02 16:48:31.393968235 +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.AfGRSu/_old 2020-04-02 16:48:31.785969258 +0200
+++ /var/tmp/diff_new_pack.AfGRSu/_new 2020-04-02 16:48:31.785969258 +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))