Commit Graph

29 Commits

Author SHA256 Message Date
Dominique Leuenberger
4d7dcda123 Accepting request 1081759 from devel:languages:python
OBS-URL: https://build.opensuse.org/request/show/1081759
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-sortedcontainers?expand=0&rev=14
2023-04-22 19:58:38 +00:00
33358a81d9 Accepting request 1081630 from home:dirkmueller:acdc:as_python3_module
SR for python stack proposal

OBS-URL: https://build.opensuse.org/request/show/1081630
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-sortedcontainers?expand=0&rev=28
2023-04-21 13:34:00 +00:00
Dominique Leuenberger
c665892007 Accepting request 897833 from devel:languages:python
- update to 2.4.0:
  * Implement SortedDict methods: __or__, __ror__, and __ior__ per PEP 584.

OBS-URL: https://build.opensuse.org/request/show/897833
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-sortedcontainers?expand=0&rev=13
2021-06-11 20:30:12 +00:00
87a88b7341 - update to 2.4.0:
* Implement SortedDict methods: __or__, __ror__, and __ior__ per PEP 584.

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-sortedcontainers?expand=0&rev=26
2021-06-06 11:57:33 +00:00
Dominique Leuenberger
d0ee28a83a Accepting request 866285 from devel:languages:python
OBS-URL: https://build.opensuse.org/request/show/866285
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-sortedcontainers?expand=0&rev=12
2021-01-26 13:45:51 +00:00
214acfbc3f Accepting request 866242 from home:bnavigator:branches:devel:languages:python
- Remove NumPy, SciPy, and Matplotlib requirement. They are not 
  used in the regular test suite. 
- no multibuild needed anymore

OBS-URL: https://build.opensuse.org/request/show/866242
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-sortedcontainers?expand=0&rev=24
2021-01-23 22:25:55 +00:00
Dominique Leuenberger
7f2cce78c3 Accepting request 850919 from devel:languages:python
- update to 2.3.0:
  * Make sort order stable when updating with large iterables.

OBS-URL: https://build.opensuse.org/request/show/850919
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-sortedcontainers?expand=0&rev=11
2020-11-30 08:53:16 +00:00
c2199a2141 - update to 2.3.0:
* Make sort order stable when updating with large iterables.

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-sortedcontainers?expand=0&rev=22
2020-11-26 08:41:02 +00:00
Dominique Leuenberger
ced21cb709 Accepting request 825708 from devel:languages:python
- Switch to multibuild to avoid cycles with matplotib

OBS-URL: https://build.opensuse.org/request/show/825708
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-sortedcontainers?expand=0&rev=10
2020-08-13 08:12:56 +00:00
Tomáš Chvátal
9d9be3e2c0 - Switch to multibuild to avoid cycles with matplotib
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-sortedcontainers?expand=0&rev=20
2020-08-11 07:24:43 +00:00
Dominique Leuenberger
261dd3f8e5 Accepting request 814546 from devel:languages:python
- update to 2.2.2
  * Add "small slice" optimization to SortedList.__getitem__.
  * Silence warning when testing SortedList.iloc.
  * Fix a warning regarding classifiers in setup.py.
  * Change SortedDict to avoid cycles for CPython reference counting.

OBS-URL: https://build.opensuse.org/request/show/814546
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-sortedcontainers?expand=0&rev=9
2020-06-21 16:50:50 +00:00
cc11f9bb5a - update to 2.2.2
* Add "small slice" optimization to SortedList.__getitem__.
  * Silence warning when testing SortedList.iloc.
  * Fix a warning regarding classifiers in setup.py.
  * Change SortedDict to avoid cycles for CPython reference counting.

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-sortedcontainers?expand=0&rev=18
2020-06-14 09:09:03 +00:00
Dominique Leuenberger
49e357d8ab 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
2019-03-26 14:45:57 +00:00
Tomáš Chvátal
70b3010b2b - 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
2019-03-26 11:39:34 +00:00
Dominique Leuenberger
010737ceb4 Accepting request 659680 from devel:languages:python
Remove superfluous devel dependency for noarch package

OBS-URL: https://build.opensuse.org/request/show/659680
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-sortedcontainers?expand=0&rev=7
2018-12-24 10:44:08 +00:00
f9f4ef180f Remove superfluous devel dependency for noarch package
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-sortedcontainers?expand=0&rev=14
2018-12-04 14:04:52 +00:00
Dominique Leuenberger
d934502d2c Accepting request 613142 from devel:languages:python
OBS-URL: https://build.opensuse.org/request/show/613142
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-sortedcontainers?expand=0&rev=6
2018-06-02 10:11:29 +00:00
Todd R
497da09f61 Accepting request 613141 from home:TheBlackCat:branches:devel:languages:python
- Update to 2.0.2
  + API Changes
    * SortedListWithKey is deprecated. Use SortedKeyList instead.
      The name SortedListWithKey remains as an alias for SortedKeyList. The
      alias will be removed in Version 3.
    * sortedcontainers.sortedlist.LOAD has moved to
      SortedList.DEFAULT_LOAD_FACTOR so that derived classes can customize the
      value.
    * SortedList._half and SortedList._dual have been removed. Use
      SortedList._load instead.
    * SortedList.add parameter val renamed to value.
    * SortedList.__contains__ parameter val renamed to value.
    * SortedList.discard parameter val renamed to value.
    * SortedList.remove parameter val renamed to value.
    * SortedList.__delitem__ parameter idx renamed to index.
    * SortedList.__getitem__ parameter idx renamed to index.
    * SortedList.__setitem__ now raises :exc:NotImplementedError. Use
      SortedList.__delitem__ and SortedList.add instead.
    * SortedList.bisect_left parameter val renamed to value.
    * SortedList.bisect_right parameter val renamed to value.
    * SortedList.bisect parameter val renamed to value.
    * SortedList.count parameter val renamed to value.
    * SortedList.append now raises :exc:NotImplementedError. Use
      SortedList.add instead.
    * SortedList.extend now raises :exc:NotImplementedError. Use
      SortedList.update instead.
    * SortedList.insert now raises :exc:NotImplementedError. Use
      SortedList.add instead.
    * SortedList.pop parameter idx renamed to index.
    * SortedList.index parameter val renamed to value.
    * SortedList.__add__ parameter that renamed to other.
    * SortedList.__iadd__ parameter that renamed to other.
    * SortedList.__mul__ parameter that renamed to num.
    * SortedList.__imul__ parameter that renamed to num.
    * SortedList._make_cmp renamed to SortedList.__make_cmp.
    * SortedKeyList.add parameter val renamed to value.
    * SortedKeyList.__contains__ parameter val renamed to value.
    * SortedKeyList.discard parameter val renamed to value.
    * SortedKeyList.remove parameter val renamed to value.
    * SortedKeyList.bisect_left parameter val renamed to value.
    * SortedKeyList.bisect_right parameter val renamed to value.
    * SortedKeyList.bisect parameter val renamed to value.
    * SortedKeyList.count parameter val renamed to value.
    * SortedKeyList.append now raises :exc:NotImplementedError. Use
      SortedKeyList.add instead.
    * SortedKeyList.extend now raises :exc:NotImplementedError. Use
      SortedKeyList.update instead.
    * SortedKeyList.insert now raises :exc:NotImplementedError. Use
      SortedKeyList.add instead.
    * SortedKeyList.index parameter val renamed to value.
    * SortedKeyList.__add__ parameter that renamed to other.
    * SortedKeyList.__radd__ added.
    * SortedKeyList.__iadd__ parameter that renamed to other.
    * SortedKeyList.__mul__ parameter that renamed to num.
    * SortedKeyList.__rmul__ added.
    * SortedKeyList.__imul__ parameter that renamed to num.
    * Removed SortedDict.iloc. Use SortedDict.keys and
      SortedKeysView instead.
    * SortedDict.fromkeys parameter seq renamed to iterable.
    * SortedDict.keys now returns SortedKeysView.
    * SortedDict.items now returns SortedItemsView.
    * SortedDict.values now returns SortedValuesView.
    * Removed SortedDict.viewkeys. Use SortedDict.keys instead.
    * Removed SortedDict.viewitems. Use SortedDict.items instead.
    * Removed SortedDict.viewvalues. Use SortedDict.values instead.
    * SortedDict.iterkeys removed. Use SortedDict.keys instead.
    * SortedDict.iteritems removed. Use SortedDict.items instead.
    * SortedDict.itervalues removed. Use SortedDict.values instead.
    * SortedDict.popitem now accepts an optional index argument. Default
      `-1`.
    * sorteddict.KeysView renamed to SortedKeysView.
    * sorteddict.ItemsView renamed to SortedItemsView.
    * sorteddict.ValuesView renamed to SortedValuesView.
    * Sorted dict views rely on collections abstract base classes: dict views and
      sequence. The SortedKeysView.__getitem__,
      SortedItemsView.__getitem__, and SortedValuesView.__getitem__
      methods are implemented and optimized. All other mixin methods use the
      default implementation provided by the base class. Prefer SortedDict
      methods to view methods when possible.
    * SortedSet._make_cmp renamed to SortedSet.__make_cmp.
    * SortedSet.symmetric_difference parameter that renamed to other.
    * SortedSet.symmetric_difference_update parameter that renamed to
      other.
  + Miscellaneous
    * Sphinx autodoc now used for API documentation.
    * All benchmarks now run on CPython 3.6 unless otherwise noted.
    * Testing now uses pytest rather than nose.
    * AppVeyor CI testing added.
    * Updated versions of alternative implementations.
    * Rename Github repo from grantjenks/sorted_containers to
      grantjenks/python-sortedcontainers.
    * Fix broken links in documentation.

OBS-URL: https://build.opensuse.org/request/show/613141
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-sortedcontainers?expand=0&rev=12
2018-05-31 02:10:24 +00:00
Dominique Leuenberger
da2bf9b4d7 Accepting request 606565 from devel:languages:python
OBS-URL: https://build.opensuse.org/request/show/606565
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-sortedcontainers?expand=0&rev=5
2018-05-15 08:13:45 +00:00
Tomáš Chvátal
b2865d4bd4 Accepting request 606243 from home:apersaud:branches:devel:languages:python
update to latest version

OBS-URL: https://build.opensuse.org/request/show/606243
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-sortedcontainers?expand=0&rev=10
2018-05-12 05:49:17 +00:00
Dominique Leuenberger
22025c0c85 Accepting request 555886 from devel:languages:python
OBS-URL: https://build.opensuse.org/request/show/555886
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-sortedcontainers?expand=0&rev=4
2017-12-14 09:56:46 +00:00
Tomáš Chvátal
b7456b713f Accepting request 555560 from home:apersaud:branches:devel:languages:python
update to latest version

OBS-URL: https://build.opensuse.org/request/show/555560
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-sortedcontainers?expand=0&rev=8
2017-12-11 09:45:07 +00:00
Dominique Leuenberger
95c29dd753 Accepting request 510810 from devel:languages:python
1

OBS-URL: https://build.opensuse.org/request/show/510810
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-sortedcontainers?expand=0&rev=3
2017-08-16 14:10:43 +00:00
Thomas Bechtold
f080965db1 Accepting request 510501 from home:alois:branches:devel:languages:python
OBS-URL: https://build.opensuse.org/request/show/510501
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-sortedcontainers?expand=0&rev=6
2017-07-17 05:03:01 +00:00
Dominique Leuenberger
df7b15f8a3 Accepting request 433977 from devel:languages:python
Automatic submission by obs-autosubmit

OBS-URL: https://build.opensuse.org/request/show/433977
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-sortedcontainers?expand=0&rev=2
2016-10-13 09:30:26 +00:00
Todd R
40f96a0263 - Update to 1.5.3
* No upstream changelog

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-sortedcontainers?expand=0&rev=4
2016-10-02 07:51:53 +00:00
Todd R
7e3b72171c OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-sortedcontainers?expand=0&rev=3 2016-10-02 07:50:56 +00:00
Dominique Leuenberger
edf3656604 Accepting request 424400 from devel:languages:python
OBS-URL: https://build.opensuse.org/request/show/424400
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-sortedcontainers?expand=0&rev=1
2016-09-23 09:31:14 +00:00
Todd R
b46deda963 - Initial version
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-sortedcontainers?expand=0&rev=1
2014-12-09 15:25:27 +00:00