Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Migrate from ligo-segments to igwn-segments #419

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ dependencies:
- gwdetchar >=2.0.0
- gwpy >=3.0.0
- gwtrigfind
- igwn-segments
- lalsuite
- ligo-segments
- lscsoft-glue >=1.60.0
- lxml
- markdown
Expand Down
4 changes: 2 additions & 2 deletions gwsumm/data/timeseries.py
Original file line number Diff line number Diff line change
Expand Up @@ -656,8 +656,8 @@ def _get_timeseries_dict(channels, segments, config=None,
verbose=vstr.format(segment), **ioargs)
else: # read
# NOTE: this sieve explicitly casts our segment to
# ligo.segments.segment to prevent `TypeError` from
# a mismatch with ligo.segments.segment
# igwn_segments.segment to prevent `TypeError` from
# a mismatch with igwn_segments.segment
segcache = sieve_cache(fcache, segment=segment)
segstart, segend = map(float, segment)
tsd = DictClass.read(segcache, qchannels, start=segstart,
Expand Down
2 changes: 1 addition & 1 deletion gwsumm/data/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
from collections import OrderedDict
from functools import wraps

from ligo.segments import segmentlist as LigoSegmentList
from igwn_segments import segmentlist as LigoSegmentList

from gwpy.segments import (DataQualityFlag, SegmentList, Segment)

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,8 @@ dependencies = [
"gwdetchar >=2.2.7",
"gwpy >=2.0.0, <=3.0.8",
"gwtrigfind",
"igwn-segments",
"lalsuite",
"ligo-segments",
"lscsoft-glue >=1.60.0",
"lxml",
"markdown",
Expand Down
Loading