forked from pool/python-sortedcontainers
Accepting request 688684 from devel:languages:python
- 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 OBS-URL: https://build.opensuse.org/request/show/688684 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-sortedcontainers?expand=0&rev=8
This commit is contained in:
@@ -1,3 +1,15 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Mar 26 11:36:07 UTC 2019 - Tomáš Chvátal <tchvatal@suse.com>
|
||||||
|
|
||||||
|
- 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
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Dec 4 12:54:28 UTC 2018 - Matej Cepl <mcepl@suse.com>
|
Tue Dec 4 12:54:28 UTC 2018 - Matej Cepl <mcepl@suse.com>
|
||||||
|
|
||||||
|
@@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package python-sortedcontainers
|
# 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
|
# All modifications and additions to the file contributed by third parties
|
||||||
# remain the property of their copyright owners, unless otherwise agreed
|
# remain the property of their copyright owners, unless otherwise agreed
|
||||||
@@ -18,13 +18,13 @@
|
|||||||
|
|
||||||
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
|
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
|
||||||
Name: python-sortedcontainers
|
Name: python-sortedcontainers
|
||||||
Version: 2.0.2
|
Version: 2.1.0
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: Sorted container data types
|
Summary: Sorted container data types
|
||||||
License: Apache-2.0
|
License: Apache-2.0
|
||||||
Group: Development/Languages/Python
|
Group: Development/Languages/Python
|
||||||
URL: https://github.com/grantjenks/python-sortedcontainers
|
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: %{python_module setuptools}
|
||||||
BuildRequires: fdupes
|
BuildRequires: fdupes
|
||||||
BuildRequires: python-rpm-macros
|
BuildRequires: python-rpm-macros
|
||||||
@@ -53,7 +53,7 @@ pre-build and distribute custom extensions. Performance is a feature and testing
|
|||||||
has 100% coverage with unit tests and hours of stress.
|
has 100% coverage with unit tests and hours of stress.
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q -n sortedcontainers-%{version}
|
%setup -q -n python-sortedcontainers-%{version}
|
||||||
rm -rf sortedcontainers.egg-info
|
rm -rf sortedcontainers.egg-info
|
||||||
|
|
||||||
%build
|
%build
|
||||||
@@ -64,13 +64,8 @@ rm -rf sortedcontainers.egg-info
|
|||||||
%python_expand %fdupes %{buildroot}%{$python_sitelib}
|
%python_expand %fdupes %{buildroot}%{$python_sitelib}
|
||||||
|
|
||||||
%check
|
%check
|
||||||
%{python_expand export PYTHONPATH=%{buildroot}%{$python_sitelib}
|
|
||||||
export PYTHONDONTWRITEBYTECODE=1
|
export PYTHONDONTWRITEBYTECODE=1
|
||||||
rm -rf _build.* build tests/__pycache__ tests/*.pyc tests/*.pyo
|
%pytest tests
|
||||||
pushd tests
|
|
||||||
py.test-%{$python_bin_suffix}
|
|
||||||
popd
|
|
||||||
}
|
|
||||||
|
|
||||||
%files %{python_files}
|
%files %{python_files}
|
||||||
%license LICENSE
|
%license LICENSE
|
||||||
|
@@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:2c9db81119d0285a26119554e1ce7332b846ff7f0d05c9a46e9490423685808a
|
|
||||||
size 9232110
|
|
3
v2.1.0.tar.gz
Normal file
3
v2.1.0.tar.gz
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:ecd1ed41968d61d49e2ee2d1a852b452535c2edadaac78147fee815610bc845d
|
||||||
|
size 9220860
|
Reference in New Issue
Block a user