Hello community,
here is the log from the commit of package python-metaextract for
openSUSE:Factory checked in at 2017-09-20 17:09:13
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-metaextract (Old)
and /work/SRC/openSUSE:Factory/.python-metaextract.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-metaextract"
Wed Sep 20 17:09:13 2017 rev:7 rq:527030 version:1.0.3
Changes:
--------
--- /work/SRC/openSUSE:Factory/python-metaextract/python-metaextract.changes
2017-05-08 19:02:54.109095472 +0200
+++
/work/SRC/openSUSE:Factory/.python-metaextract.new/python-metaextract.changes
2017-09-20 17:09:18.222164548 +0200
@@ -1,0 +2,8 @@
+Mon Sep 18 13:22:31 UTC 2017 - [email protected]
+
+- update to 1.0.3:
+ * Release 1.0.3
+ * Test python 3.6 instead of 3.5
+ * Fix json serialization for dict_items on py3 (#4)
+
+-------------------------------------------------------------------
Old:
----
metaextract-1.0.2.tar.gz
New:
----
metaextract-1.0.3.tar.gz
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ python-metaextract.spec ++++++
--- /var/tmp/diff_new_pack.fK40I8/_old 2017-09-20 17:09:18.766087979 +0200
+++ /var/tmp/diff_new_pack.fK40I8/_new 2017-09-20 17:09:18.766087979 +0200
@@ -18,17 +18,17 @@
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
Name: python-metaextract
-Version: 1.0.2
+Version: 1.0.3
Release: 0
Summary: get metadata for python modules
License: Apache-2.0
Group: Development/Languages/Python
Url: http://github.com/toabctl/metaextract
Source:
https://files.pythonhosted.org/packages/source/m/metaextract/metaextract-%{version}.tar.gz
-BuildRequires: fdupes
-BuildRequires: python-rpm-macros
BuildRequires: %{python_module devel}
BuildRequires: %{python_module setuptools}
+BuildRequires: fdupes
+BuildRequires: python-rpm-macros
# Needed even though no tests are present
BuildRequires: %{python_module pytest-runner}
Requires: python-setuptools
++++++ metaextract-1.0.2.tar.gz -> metaextract-1.0.3.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/metaextract-1.0.2/PKG-INFO
new/metaextract-1.0.3/PKG-INFO
--- old/metaextract-1.0.2/PKG-INFO 2017-04-24 14:56:18.000000000 +0200
+++ new/metaextract-1.0.3/PKG-INFO 2017-09-18 14:57:29.000000000 +0200
@@ -1,6 +1,6 @@
Metadata-Version: 1.1
Name: metaextract
-Version: 1.0.2
+Version: 1.0.3
Summary: get metadata for python modules
Home-page: http://github.com/toabctl/metaextract
Author: Thomas Bechtold
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/metaextract-1.0.2/metaextract/__init__.py
new/metaextract-1.0.3/metaextract/__init__.py
--- old/metaextract-1.0.2/metaextract/__init__.py 2017-04-24
14:55:44.000000000 +0200
+++ new/metaextract-1.0.3/metaextract/__init__.py 2017-09-18
14:56:28.000000000 +0200
@@ -15,4 +15,4 @@
# See the License for the specific language governing permissions and
# limitations under the License.
-__version__ = "1.0.2"
+__version__ = "1.0.3"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/metaextract-1.0.2/metaextract/metaextract.py
new/metaextract-1.0.3/metaextract/metaextract.py
--- old/metaextract-1.0.2/metaextract/metaextract.py 2017-04-24
14:55:44.000000000 +0200
+++ new/metaextract-1.0.3/metaextract/metaextract.py 2017-09-18
14:56:28.000000000 +0200
@@ -50,6 +50,9 @@
'scripts', 'tests_require', 'tests_suite']:
if hasattr(self.distribution, key):
data[key] = getattr(self.distribution, key)
+ # dict_items objects can not be serialized with json
+ if data[key].__class__.__name__ == 'dict_items':
+ data[key] = list(data[key])
# keep list ordered!
for func in ['has_ext_modules']:
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/metaextract-1.0.2/metaextract.egg-info/PKG-INFO
new/metaextract-1.0.3/metaextract.egg-info/PKG-INFO
--- old/metaextract-1.0.2/metaextract.egg-info/PKG-INFO 2017-04-24
14:56:17.000000000 +0200
+++ new/metaextract-1.0.3/metaextract.egg-info/PKG-INFO 2017-09-18
14:57:29.000000000 +0200
@@ -1,6 +1,6 @@
Metadata-Version: 1.1
Name: metaextract
-Version: 1.0.2
+Version: 1.0.3
Summary: get metadata for python modules
Home-page: http://github.com/toabctl/metaextract
Author: Thomas Bechtold
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/metaextract-1.0.2/tox.ini
new/metaextract-1.0.3/tox.ini
--- old/metaextract-1.0.2/tox.ini 2017-04-24 14:55:44.000000000 +0200
+++ new/metaextract-1.0.3/tox.ini 2017-09-18 14:56:28.000000000 +0200
@@ -1,5 +1,5 @@
[tox]
-envlist = py27,py35,pep8
+envlist = py27,py36,pep8
minversion = 1.6
skipsdist = True