Hello community,
here is the log from the commit of package python-sortedcontainers for
openSUSE:Factory checked in at 2019-03-26 15:45:57
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-sortedcontainers (Old)
and /work/SRC/openSUSE:Factory/.python-sortedcontainers.new.25356 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-sortedcontainers"
Tue Mar 26 15:45:57 2019 rev:8 rq:688684 version:2.1.0
Changes:
--------
---
/work/SRC/openSUSE:Factory/python-sortedcontainers/python-sortedcontainers.changes
2018-12-24 11:44:09.433305039 +0100
+++
/work/SRC/openSUSE:Factory/.python-sortedcontainers.new.25356/python-sortedcontainers.changes
2019-03-26 15:46:01.608064275 +0100
@@ -1,0 +2,12 @@
+Tue Mar 26 11:36:07 UTC 2019 - Tomáš Chvátal <[email protected]>
+
+- Update to 2.1.0:
+ * Small updates to docs and tests for Python 3.7.
+ * Change imports for Abstract Base Classes to collections.abc to avoid
warnings in Python 3.7.
+ * SortedDict methods iterkeys, iteritems, itervalues, viewkeys, viewitems,
and viewvalues are not implemented for Python 2. Attribute lookup now raises
:exc:`AttributeError`.
+ * Accessing SortedDict.iloc will emit DeprecationWarning.
+ * SortedSet.__rsub__ erroneously reversed its arguments. The method has been
removed in favor of the inherited Set.__rsub__ which has a correct
implementation.
+ * :class:`SortedKeysView` and :class:`SortedValuesView` set-operations now
return :class:`SortedSet` objects to better match the semantics of version 1.
+- use github tarball for tests
+
+-------------------------------------------------------------------
Old:
----
sortedcontainers-2.0.2.tar.gz
New:
----
v2.1.0.tar.gz
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ python-sortedcontainers.spec ++++++
--- /var/tmp/diff_new_pack.x5SheZ/_old 2019-03-26 15:46:02.812063665 +0100
+++ /var/tmp/diff_new_pack.x5SheZ/_new 2019-03-26 15:46:02.812063665 +0100
@@ -1,7 +1,7 @@
#
# spec file for package python-sortedcontainers
#
-# 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
@@ -18,13 +18,13 @@
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
Name: python-sortedcontainers
-Version: 2.0.2
+Version: 2.1.0
Release: 0
Summary: Sorted container data types
License: Apache-2.0
Group: Development/Languages/Python
URL: https://github.com/grantjenks/python-sortedcontainers
-Source:
https://files.pythonhosted.org/packages/source/s/sortedcontainers/sortedcontainers-%{version}.tar.gz
+Source:
https://github.com/grantjenks/python-sortedcontainers/archive/v%{version}.tar.gz
BuildRequires: %{python_module setuptools}
BuildRequires: fdupes
BuildRequires: python-rpm-macros
@@ -53,7 +53,7 @@
has 100% coverage with unit tests and hours of stress.
%prep
-%setup -q -n sortedcontainers-%{version}
+%setup -q -n python-sortedcontainers-%{version}
rm -rf sortedcontainers.egg-info
%build
@@ -64,13 +64,8 @@
%python_expand %fdupes %{buildroot}%{$python_sitelib}
%check
-%{python_expand export PYTHONPATH=%{buildroot}%{$python_sitelib}
export PYTHONDONTWRITEBYTECODE=1
-rm -rf _build.* build tests/__pycache__ tests/*.pyc tests/*.pyo
-pushd tests
-py.test-%{$python_bin_suffix}
-popd
-}
+%pytest tests
%files %{python_files}
%license LICENSE