Hello community, here is the log from the commit of package python-zict for openSUSE:Leap:15.2 checked in at 2020-03-02 13:25:18 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Leap:15.2/python-zict (Old) and /work/SRC/openSUSE:Leap:15.2/.python-zict.new.26092 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-zict" Mon Mar 2 13:25:18 2020 rev:12 rq:777312 version:1.0.0 Changes: -------- --- /work/SRC/openSUSE:Leap:15.2/python-zict/python-zict.changes 2020-01-15 15:54:42.759641556 +0100 +++ /work/SRC/openSUSE:Leap:15.2/.python-zict.new.26092/python-zict.changes 2020-03-02 13:25:18.758631621 +0100 @@ -1,0 +2,23 @@ +Mon Jul 22 11:31:12 UTC 2019 - Tomáš Chvátal <[email protected]> + +- Update to 1.0.0: + * no upstream changelog + +------------------------------------------------------------------- +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. + +------------------------------------------------------------------- +Tue Dec 4 12:56:25 UTC 2018 - Matej Cepl <[email protected]> + +- Remove superfluous devel dependency for noarch package + +------------------------------------------------------------------- +Tue Dec 4 12:39:05 UTC 2018 - Matej Cepl <[email protected]> + +- Remove superfluous devel dependency for noarch package + +------------------------------------------------------------------- Old: ---- zict-0.1.3.tar.gz New: ---- zict-1.0.0.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ python-zict.spec ++++++ --- /var/tmp/diff_new_pack.TTXhwJ/_old 2020-03-02 13:25:19.062632225 +0100 +++ /var/tmp/diff_new_pack.TTXhwJ/_new 2020-03-02 13:25:19.062632225 +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 @@ -12,32 +12,29 @@ # license that conforms to the Open Source Definition (Version 1.9) # published by the Open Source Initiative. -# Please submit bugfixes or comments via http://bugs.opensuse.org/ +# Please submit bugfixes or comments via https://bugs.opensuse.org/ # %{?!python_module:%define python_module() python-%{**} python3-%{**}} -%bcond_without test Name: python-zict -Version: 0.1.3 +Version: 1.0.0 Release: 0 Summary: Mutable mapping tools License: BSD-3-Clause Group: Development/Languages/Python -Url: http://github.com/dask/zict/ +URL: https://github.com/dask/zict/ Source: https://files.pythonhosted.org/packages/source/z/zict/zict-%{version}.tar.gz -BuildRequires: %{python_module devel} BuildRequires: %{python_module setuptools} BuildRequires: fdupes BuildRequires: python-rpm-macros -%if %{with test} -BuildRequires: %{python_module HeapDict} -BuildRequires: %{python_module pytest} -%endif Requires: python-HeapDict -BuildRoot: %{_tmppath}/%{name}-%{version}-build BuildArch: noarch - +# SECTION test requirements +BuildRequires: %{python_module HeapDict} +BuildRequires: %{python_module lmdb} +BuildRequires: %{python_module pytest} +# /SECTION %python_subpackages %description @@ -45,6 +42,8 @@ %prep %setup -q -n zict-%{version} +# needs more memory than what we have on generic hosts +rm zict/tests/test_lmdb.py %build %python_build @@ -53,14 +52,12 @@ %python_install %python_expand %fdupes %{buildroot}%{$python_sitelib} -%if %{with test} %check -%python_exec setup.py test -%endif +%pytest %files %{python_files} -%defattr(-,root,root,-) -%doc LICENSE.txt README.rst +%license LICENSE.txt +%doc README.rst %{python_sitelib}/* %changelog ++++++ zict-0.1.3.tar.gz -> zict-1.0.0.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/zict-0.1.3/PKG-INFO new/zict-1.0.0/PKG-INFO --- old/zict-0.1.3/PKG-INFO 2017-09-20 15:28:59.000000000 +0200 +++ new/zict-1.0.0/PKG-INFO 2019-06-25 08:58:10.000000000 +0200 @@ -1,10 +1,10 @@ -Metadata-Version: 1.0 +Metadata-Version: 1.2 Name: zict -Version: 0.1.3 +Version: 1.0.0 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-1.0.0/setup.cfg --- old/zict-0.1.3/setup.cfg 2017-09-20 15:28:59.000000000 +0200 +++ new/zict-1.0.0/setup.cfg 2019-06-25 08:58:10.000000000 +0200 @@ -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-1.0.0/setup.py --- old/zict-0.1.3/setup.py 2017-09-20 15:27:57.000000000 +0200 +++ new/zict-1.0.0/setup.py 2019-06-25 08:56:50.000000000 +0200 @@ -4,7 +4,7 @@ from setuptools import setup setup(name='zict', - version='0.1.3', + version='1.0.0', 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-1.0.0/zict/__init__.py --- old/zict-0.1.3/zict/__init__.py 2017-09-20 15:28:10.000000000 +0200 +++ new/zict-1.0.0/zict/__init__.py 2019-06-25 08:56:58.000000000 +0200 @@ -6,4 +6,4 @@ from .sieve import Sieve from .lmdb import LMDB -__version__ = '0.1.3' +__version__ = '1.0.0' diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/zict-0.1.3/zict/common.py new/zict-1.0.0/zict/common.py --- old/zict-0.1.3/zict/common.py 2016-12-01 20:07:46.000000000 +0100 +++ new/zict-1.0.0/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-1.0.0/zict/zip.py --- old/zict-0.1.3/zict/zip.py 2016-12-01 20:07:46.000000000 +0100 +++ new/zict-1.0.0/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-1.0.0/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-1.0.0/zict.egg-info/PKG-INFO 2019-06-25 08:58:10.000000000 +0200 @@ -1,10 +1,10 @@ -Metadata-Version: 1.0 +Metadata-Version: 1.2 Name: zict -Version: 0.1.3 +Version: 1.0.0 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 ====
