Hello community, here is the log from the commit of package python-zict for openSUSE:Factory checked in at 2019-03-27 16:22:52 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/python-zict (Old) and /work/SRC/openSUSE:Factory/.python-zict.new.25356 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-zict" Wed Mar 27 16:22:52 2019 rev:4 rq:689074 version:0.1.4 Changes: -------- --- /work/SRC/openSUSE:Factory/python-zict/python-zict.changes 2018-12-05 09:45:49.300546036 +0100 +++ /work/SRC/openSUSE:Factory/.python-zict.new.25356/python-zict.changes 2019-03-27 16:23:04.983508764 +0100 @@ -1,0 +2,7 @@ +Wed Mar 27 10:00:43 UTC 2019 - [email protected] + +- version update to 0.1.4 + * Use collections.abc to avoid DeprecationWarning + * DOC: Add classes missing from API documentation. + +------------------------------------------------------------------- Old: ---- zict-0.1.3.tar.gz New: ---- zict-0.1.4.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ python-zict.spec ++++++ --- /var/tmp/diff_new_pack.N8C0Uy/_old 2019-03-27 16:23:05.815508590 +0100 +++ /var/tmp/diff_new_pack.N8C0Uy/_new 2019-03-27 16:23:05.815508590 +0100 @@ -1,7 +1,7 @@ # # spec file for package python-zict # -# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany. +# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany. # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -17,9 +17,8 @@ %{?!python_module:%define python_module() python-%{**} python3-%{**}} -%bcond_without test Name: python-zict -Version: 0.1.3 +Version: 0.1.4 Release: 0 Summary: Mutable mapping tools License: BSD-3-Clause @@ -31,10 +30,10 @@ BuildRequires: python-rpm-macros Requires: python-HeapDict BuildArch: noarch -%if %{with test} +# SECTION test requirements BuildRequires: %{python_module HeapDict} BuildRequires: %{python_module pytest} -%endif +# /SECTION %python_subpackages %description @@ -50,10 +49,8 @@ %python_install %python_expand %fdupes %{buildroot}%{$python_sitelib} -%if %{with test} %check %python_exec setup.py test -%endif %files %{python_files} %license LICENSE.txt ++++++ zict-0.1.3.tar.gz -> zict-0.1.4.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/zict-0.1.3/PKG-INFO new/zict-0.1.4/PKG-INFO --- old/zict-0.1.3/PKG-INFO 2017-09-20 15:28:59.000000000 +0200 +++ new/zict-0.1.4/PKG-INFO 2019-03-09 17:36:01.000000000 +0100 @@ -1,10 +1,10 @@ -Metadata-Version: 1.0 +Metadata-Version: 1.2 Name: zict -Version: 0.1.3 +Version: 0.1.4 Summary: Mutable mapping tools Home-page: http://zict.readthedocs.io/en/latest/ -Author: Matthew Rocklin -Author-email: [email protected] +Maintainer: Matthew Rocklin +Maintainer-email: [email protected] License: BSD Description: Zict ==== diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/zict-0.1.3/setup.cfg new/zict-0.1.4/setup.cfg --- old/zict-0.1.3/setup.cfg 2017-09-20 15:28:59.000000000 +0200 +++ new/zict-0.1.4/setup.cfg 2019-03-09 17:36:01.000000000 +0100 @@ -1,5 +1,4 @@ [egg_info] tag_build = tag_date = 0 -tag_svn_revision = 0 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/zict-0.1.3/setup.py new/zict-0.1.4/setup.py --- old/zict-0.1.3/setup.py 2017-09-20 15:27:57.000000000 +0200 +++ new/zict-0.1.4/setup.py 2019-03-09 17:35:21.000000000 +0100 @@ -4,7 +4,7 @@ from setuptools import setup setup(name='zict', - version='0.1.3', + version='0.1.4', description='Mutable mapping tools', url='http://zict.readthedocs.io/en/latest/', maintainer='Matthew Rocklin', @@ -12,7 +12,7 @@ license='BSD', keywords='mutable mapping,dict,dask', packages=['zict'], - install_requires=[open('requirements.txt').read().strip().split('\n')], + install_requires=open('requirements.txt').read().strip().split('\n'), long_description=(open('README.rst').read() if os.path.exists('README.rst') else ''), zip_safe=False) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/zict-0.1.3/zict/__init__.py new/zict-0.1.4/zict/__init__.py --- old/zict-0.1.3/zict/__init__.py 2017-09-20 15:28:10.000000000 +0200 +++ new/zict-0.1.4/zict/__init__.py 2019-03-09 17:35:24.000000000 +0100 @@ -6,4 +6,4 @@ from .sieve import Sieve from .lmdb import LMDB -__version__ = '0.1.3' +__version__ = '0.1.4' diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/zict-0.1.3/zict/common.py new/zict-0.1.4/zict/common.py --- old/zict-0.1.3/zict/common.py 2016-12-01 20:07:46.000000000 +0100 +++ new/zict-0.1.4/zict/common.py 2019-03-09 17:34:21.000000000 +0100 @@ -1,6 +1,9 @@ from __future__ import absolute_import, division, print_function -from collections import Mapping, MutableMapping +try: + from collections.abc import Mapping, MutableMapping +except ImportError: + from collections import Mapping, MutableMapping class ZictBase(MutableMapping): diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/zict-0.1.3/zict/zip.py new/zict-0.1.4/zict/zip.py --- old/zict-0.1.3/zict/zip.py 2016-12-01 20:07:46.000000000 +0100 +++ new/zict-0.1.4/zict/zip.py 2019-03-09 17:34:21.000000000 +0100 @@ -1,6 +1,9 @@ from __future__ import absolute_import, division, print_function -from collections import MutableMapping +try: + from collections.abc import MutableMapping +except ImportError: + from collections import MutableMapping import sys import zipfile diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/zict-0.1.3/zict.egg-info/PKG-INFO new/zict-0.1.4/zict.egg-info/PKG-INFO --- old/zict-0.1.3/zict.egg-info/PKG-INFO 2017-09-20 15:28:59.000000000 +0200 +++ new/zict-0.1.4/zict.egg-info/PKG-INFO 2019-03-09 17:36:00.000000000 +0100 @@ -1,10 +1,10 @@ -Metadata-Version: 1.0 +Metadata-Version: 1.2 Name: zict -Version: 0.1.3 +Version: 0.1.4 Summary: Mutable mapping tools Home-page: http://zict.readthedocs.io/en/latest/ -Author: Matthew Rocklin -Author-email: [email protected] +Maintainer: Matthew Rocklin +Maintainer-email: [email protected] License: BSD Description: Zict ====
