Revisions of python-sortedcontainers

buildservice-autocommit accepted request 1081759 from Dirk Mueller's avatar Dirk Mueller (dirkmueller) (revision 29)
baserev update by copy to link target
Dirk Mueller's avatar Dirk Mueller (dirkmueller) accepted request 1081630 from Dirk Mueller's avatar Dirk Mueller (dirkmueller) (revision 28)
SR for python stack proposal
buildservice-autocommit accepted request 897833 from Dirk Mueller's avatar Dirk Mueller (dirkmueller) (revision 27)
baserev update by copy to link target
Dirk Mueller's avatar Dirk Mueller (dirkmueller) committed (revision 26)
- update to 2.4.0:
  * Implement SortedDict methods: __or__, __ror__, and __ior__ per PEP 584.
buildservice-autocommit accepted request 866285 from Matej Cepl's avatar Matej Cepl (mcepl) (revision 25)
baserev update by copy to link target
Matej Cepl's avatar Matej Cepl (mcepl) accepted request 866242 from Benjamin Greiner's avatar Benjamin Greiner (bnavigator) (revision 24)
- Remove NumPy, SciPy, and Matplotlib requirement. They are not 
  used in the regular test suite. 
- no multibuild needed anymore
buildservice-autocommit accepted request 850919 from Dirk Mueller's avatar Dirk Mueller (dirkmueller) (revision 23)
baserev update by copy to link target
Dirk Mueller's avatar Dirk Mueller (dirkmueller) committed (revision 22)
- update to 2.3.0:
  * Make sort order stable when updating with large iterables.
buildservice-autocommit accepted request 825708 from Tomáš Chvátal's avatar Tomáš Chvátal (scarabeus_iv) (revision 21)
baserev update by copy to link target
Tomáš Chvátal's avatar Tomáš Chvátal (scarabeus_iv) committed (revision 20)
- Switch to multibuild to avoid cycles with matplotib
buildservice-autocommit accepted request 814546 from Dirk Mueller's avatar Dirk Mueller (dirkmueller) (revision 19)
baserev update by copy to link target
Dirk Mueller's avatar Dirk Mueller (dirkmueller) committed (revision 18)
- 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.
buildservice-autocommit accepted request 688684 from Tomáš Chvátal's avatar Tomáš Chvátal (scarabeus_iv) (revision 17)
baserev update by copy to link target
Tomáš Chvátal's avatar Tomáš Chvátal (scarabeus_iv) committed (revision 16)
- 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
buildservice-autocommit accepted request 659680 from Matej Cepl's avatar Matej Cepl (mcepl) (revision 15)
baserev update by copy to link target
Matej Cepl's avatar Matej Cepl (mcepl) committed (revision 14)
Remove superfluous devel dependency for noarch package
buildservice-autocommit accepted request 613142 from Todd R's avatar Todd R (TheBlackCat) (revision 13)
baserev update by copy to link target
Todd R's avatar Todd R (TheBlackCat) accepted request 613141 from Todd R's avatar Todd R (TheBlackCat) (revision 12)
- 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.
buildservice-autocommit accepted request 606565 from Tomáš Chvátal's avatar Tomáš Chvátal (scarabeus_iv) (revision 11)
baserev update by copy to link target
Tomáš Chvátal's avatar Tomáš Chvátal (scarabeus_iv) accepted request 606243 from Arun Persaud's avatar Arun Persaud (apersaud) (revision 10)
update to latest version
Displaying revisions 1 - 20 of 29
openSUSE Build Service is sponsored by