14
0

- 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/package/show/devel:languages:python/python-sortedcontainers?expand=0&rev=16
This commit is contained in:
Tomáš Chvátal
2019-03-26 11:39:34 +00:00
committed by Git OBS Bridge
parent f9f4ef180f
commit 70b3010b2b
4 changed files with 20 additions and 13 deletions

View File

@@ -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>