diff --git a/docs/environment.yml b/docs/environment.yml index ba5a75aa..f585572a 100644 --- a/docs/environment.yml +++ b/docs/environment.yml @@ -10,19 +10,19 @@ dependencies: # install - astropy >=3.0.0 - gwdatafind >=1.1.1 - - gwdetchar >=2.0.0 - - gwpy >=3.0.0 + - gwdetchar >=2.3.2 + - gwpy >=3.0.9 - gwtrigfind - lalsuite - lscsoft-glue >=1.60.0 - lxml - markdown - MarkupPy - - matplotlib >=3.1 + - matplotlib >=3.5 - numpy >=1.16 - pygments >=2.7.0 - python-dateutil - - python-ligo-lw + - igwn-ligolw - scipy >=1.2.0 # docs - numpydoc diff --git a/gwsumm/tabs/etg.py b/gwsumm/tabs/etg.py index fab8c0e1..f7efd0ea 100644 --- a/gwsumm/tabs/etg.py +++ b/gwsumm/tabs/etg.py @@ -66,9 +66,9 @@ class EventTriggerTab(get_tab('default')): later (but before running :meth:`~DataTab.process`) via :meth:`~DataTab.add_state`. table : `type`, `str`, optional - LIGO_LW `~glue.ligolw.table.Table` class to use for this ETG, - e.g. use `~glue.ligolw.lsctables.SnglBurstTable` for Omicron, or - `~glue.ligolw.lsctables.SnglInspiralTable` for CBC + LIGO_LW `~igwn_ligolw.ligolw.Table` class to use for this ETG, + e.g. use `~igwn_ligolw.lsctables.SnglBurstTable` for Omicron, or + `~igwn_ligolw.lsctables.SnglInspiralTable` for CBC cache : `~glue.lal.Cache`, `str`, optional `Cache` object, or path to a LAL-format cache file on disk, from which to read the event triggers. If no cache is given, diff --git a/gwsumm/triggers.py b/gwsumm/triggers.py index 20f5ec7d..53686d41 100644 --- a/gwsumm/triggers.py +++ b/gwsumm/triggers.py @@ -26,7 +26,7 @@ from lal.utils import CacheEntry -from ligo.lw import lsctables +from igwn_ligolw import lsctables from glue.lal import Cache @@ -116,7 +116,7 @@ def get_etg_table(etg): Returns ------- - table : `type`, subclass of `~ligo.lw.table.Table` + table : `type`, subclass of `~igwn_ligolw.ligolw.Table` LIGO_LW table registered to the given ETG Raises diff --git a/pyproject.toml b/pyproject.toml index 8aea06a9..cd294137 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -50,7 +50,7 @@ dependencies = [ "numpy >=1.16", "pygments >=2.7.0", "python-dateutil", - "python-ligo-lw", + "igwn-ligolw", "scipy >=1.2.0", ]