- Dropped support for Python 3.4, added Python 3.8
- Add
__slots__optimization in Node class, should give performance improvement - Fixed:
- Restore universal wheels
- Bytes/str type incompatibility in setup.py
- New version of distutils rejects version suffixes of
.postNN, useaNNinstead
- Fixed:
- On some systems, setup.py opened README.md with a non-unicode encoding. My fault for leaving the encoding flapping in the breeze. It's been fixed.
- Added:
- Travis testing for 3.7 and 3.8-dev. These needed OpenSSL, sudo and Xenial. 3.8-dev is allowed to fail.
- Fixed:
- PyPI wasn't rendering markdown because I didn't tell it what format to use.
- Python 2 wasn't installing via pip because of a new utils package. It has been zapped.
- Maintainers:
- TestPyPI version strings use
.postNas the suffix instead ofbN, andNcounts from the latest tagged commit, which should be the last release - Install from TestPyPI works via
make install-testpypi
- TestPyPI version strings use
- Breaking:
search(begin, end, strict)has been replaced withat(point),overlap(begin, end), andenvelop(begin, end)extend(items)has been deleted, useupdate(items)instead- Methods that take a
strict=True/Falseargument now consistently default tostrict=True - Dropped support for Python 2.6, 3.2, and 3.3
- Add support for Python 3.5, 3.6, and 3.7
- Faster
Intervaloverlap checking (@tuxzz, #56) - Updated README:
- new restructuring methods from 2.1.0
- example of
from_tuples()added - more info about
chop(),split_overlaps(),merge_overlaps()andmerge_equals().
- Fixes:
Node.from_tuples()will now raise an error if given an empty iterable. This should never happen, and it should error if it does.Interval.distance_to()gave an incorrect distance when passed theInterval's upper boundaryNode.pop_greatest_child()sometimes forgot torotate()when creating new child nodes. (@escalonn, #41, #42)IntervalTree.begin()andend()are O(1), not O(n). (@ProgVal, #40)intersection_update()andsymmetric_difference()andsymmetric_difference_update()didn't actually work. Now they do.collections.abcdeprecation warning no longer happens
- Maintainers:
- PyPi accepts Markdown! Woohoo!
- reorganize tests
- more tests added to improve code coverage (We're at 96%! Yay!)
- test for issue #4 had a broken import reference
- Added:
merge_overlaps()method and testsmerge_equals()method and testsrange()methodspan()method, for returning the difference betweenend()andbegin()
- Fixes:
- Development version numbering is changing to be compliant with PEP440. Version numbering now contains major, minor and micro release numbers, plus the number of builds following the stable release version, e.g. 2.0.4b34
- Speed improvement:
begin()andend()methods used iterativemin()andmax()builtins instead of the more efficientilocmember available toSortedDict overlaps()method used to returnTrueeven if provided null test interval
- Maintainers:
- Added coverage test (
make coverage) with html report (htmlcov/index.html) - Tests run slightly faster
- Added coverage test (
- Fix: Issue #27: README incorrectly showed using a comma instead of a colon when querying the
IntervalTree: it showedtree[begin, end]instead oftree[begin:end]
- Fix: README showed using + operator for setlike union instead of the correct | operator
- Removed tests from release package to speed up installation; to get the tests, download from GitHub
- Fix: Issue #20: performance enhancement for large trees.
IntervalTree.search()made a copy of the entireboundary_tableresulting in linear search time. Thesortedcollectionspackage is now the sole install dependency
- Fix: Issue #26: failed to prune empty
Nodeafter a rotation promoted contents ofs_center
IntervalTreenow supports the fullcollections.MutableSetAPI- Added:
__delitem__toIntervalTreeIntervalcomparison methodslt(),gt(),le()andge()toInterval, as an alternative to the comparison operators, which are designed for sortingIntervalTree.from_tuples(iterable)IntervalTree.clear()IntervalTree.difference(iterable)IntervalTree.difference_update(iterable)IntervalTree.union(iterable)IntervalTree.intersection(iterable)IntervalTree.intersection_update(iterable)IntervalTree.symmetric_difference(iterable)IntervalTree.symmetric_difference_update(iterable)IntervalTree.chop(a, b)IntervalTree.slice(point)
- Deprecated
IntervalTree.extend()-- useupdate()instead - Internal improvements:
- More verbose tests with progress bars
- More tests for comparison and sorting behavior
- Code in the README is included in the unit tests
- Fixes
- BACKWARD INCOMPATIBLE: On ranged queries where
begin >= end, the query operated on the overlaps ofbegin. This behavior was documented as expected in 1.x; it is now changed to be more consistent with the definition ofIntervals, which are half-open. - Issue #25: pruning empty Nodes with staggered descendants could result in invalid trees
- Sorting
Intervals and numbers in the same list gathered all the numbers at the beginning and theIntervals at the end IntervalTree.overlaps()and friends returnedNoneinstead ofFalse- Maintainers:
make install-testpypifailed because thepipwas missing a--preflag
- BACKWARD INCOMPATIBLE: On ranged queries where
- Removed requirement for pyandoc in order to run functionality tests.
- Added ability to use
Interval.distance_to()with points, not justIntervals - Added documentation on return types to
IntervalTreeandInterval Interval.__cmp__()works with points too- Fix:
IntervalTree.score()returned maximum score of 0.5 instead of 1.0. Now returns max of subscores instead of avg - Internal improvements:
- Development version numbering scheme, based on
git describethe "building towards" release is appended after a hyphen, eg. 1.0.2-37-g2da2ef0-1.10. The previous tagged release is 1.0.2, and there have been 37 commits since then, current tag is g2da2ef0, and we are getting ready for a 1.1.0 release - Optimality tests added
Intervaloverlap tests for ranges,Intervals and points added
- Development version numbering scheme, based on
-Bug fixes:
- Node.depth_score_helper() raised AttributeError
- README formatting
- Fix: pip install failure because of failure to generate README.rst
- Renamed from PyIntervalTree to intervaltree
- Speed improvements for adding and removing Intervals (~70% faster than 0.4)
- Bug fixes:
- BACKWARD INCOMPATIBLE:
len()of anIntervalis always 3, reverting to default behavior fornamedtuples. In Python 3,lenreturning a non-integer raises an exception. Instead, useInterval.length(), which returns 0 for null intervals andend - beginotherwise. Also, if thelen() === 0, thennot ivisTrue. - When inserting an
Intervalvia__setitem__and improper parameters given, all errors were transformed toIndexError split_overlapsdid not update theboundary_tablecounts
- BACKWARD INCOMPATIBLE:
- Internal improvements:
- More robust local testing tools
- Long series of interdependent tests have been separated into sections
- Faster balancing (~80% faster)
- Bug fixes:
- Double rotations were performed in place of a single rotation when presented an unbalanced Node with a balanced child.
- During single rotation, kept referencing an unrotated Node instead of the new, rotated one
- Made IntervalTree crash if inited with a null Interval (end <= begin)
- IntervalTree raises ValueError instead of AssertionError when a null Interval is inserted
- Support for Python 3.2+ and 2.6+
- Changed license from LGPL to more permissive Apache license
- Merged changes from https://github.com/konstantint/PyIntervalTree to
https://github.com/chaimleib/PyIntervalTree
- Interval now inherits from a namedtuple. Benefits: should be faster. Drawbacks: slight behavioural change (Intervals not mutable anymore).
- Added float tests
- Use setup.py for tests
- Automatic testing via travis-ci
- Removed dependency on six
- Interval improvements:
- Intervals without data have a cleaner string representation
- Intervals without data are pickled more compactly
- Better hashing
- Intervals are ordered by begin, then end, then by data. If data is not orderable, sorts by type(data)
- Bug fixes:
- Fixed crash when querying empty tree
- Fixed missing close parenthesis in examples
- Made IntervalTree crash earlier if a null Interval is added
- Internals:
- New test directory
- Nicer display of data structures for debugging, using custom test/pprint.py (Python 2.6, 2.7)
- More sensitive exception handling
- Local script to test in all supported versions of Python
- Added IntervalTree.score() to measure how optimally a tree is structured
- Slight changes for inclusion in PyPI.
- Some documentation changes
- Added tests
- Bug fix: interval addition via [] was broken in Python 2.7 (see http://bugs.python.org/issue21785)
- Added intervaltree.bio subpackage, adding some utilities for use in bioinformatics