Releases: intiocean/pyinter
Releases · intiocean/pyinter
v0.2.0
v0.1.9
- Fix empty interval types so that empty intervals could be compared with other intervals
- Add method
copy()
to create newInterval
instances with the same bounds and values as theInterval
being copied - Fix method
overlaps
onInterval
and add tests for it!
v0.1.8
v0.1.7
v0.1.6
v0.1.5
- Fix the
__all__
list so that you canfrom pyinter import *
. - Change classes to new style classes (inheriting from object)
- Added an
add()
function to theIntervalSet
class. This will add (union) an Interval inplace. (similarly toset().add()
) - The optional iterable of Interval objects passed when initialising an
IntervalSet
is now added Interval by Interval so that initialising with overlapping intervals works as expected.
v0.1.4
v0.1.3
Fixed the rendering of the README on pypi
Fixed the rendering of the README on pypi (hopefully!) by converting it from a .md file to a .rst file.
Fix source distribution to include the README.md file
This was broken because the README.md was not being included in the source distribution but setup.py had a reference to this file and therefore failed to run.