Revision 962f61f5d7a7068556216e2c593c3b94c7301a7a authored by Tito Dal Canton on 05 September 2019, 12:26:31 UTC, committed by Alex Nitz on 05 September 2019, 12:26:31 UTC
* PyCBC Live: fix issue in how the detector state is reported

When (some of) the worker nodes think a detector is unusable,
but the master node thinks the opposite, the detector is still
reported as being active despite no triggers are produced from it.
This patch ensures that the detector is reported as inactive when
there are no (or partial) results from it.

* Remove log info that shows up too often on stderr
1 parent 4c0e4d1
Raw File
requirements.txt
# requirements for most basic library use
astropy>=2.0.3,<3.0.0; python_version <= '2.7'
astropy>=2.0.3; python_version >= '3.0'
Mako>=1.0.1
decorator>=3.4.2
scipy>=0.16.0; python_version >= '3.5'
scipy>=0.16.0,<1.3.0; python_version <= '3.4'
matplotlib>=2.0.0
numpy>=1.13.0,<1.15.3; python_version <= '2.7'
numpy>=1.13.0; python_version >= '3.0'
pillow
h5py>=2.5
jinja2
mpld3>=0.3
weave>=0.16.0; python_version <= '2.7'
requests>=1.2.1
beautifulsoup4>=4.6.0
six>1.10.0
cython
lalsuite
lscsoft-glue>=1.59.3
ligo-segments
tqdm

# Requirements for ligoxml access needed by some workflows
python-ligo-lw

# Needed for Parameter Estimation Tasks
emcee==2.2.1
dynesty

# For LDG service access
dqsegdb
dqsegdb2>=1.0.1
http://download.pegasus.isi.edu/pegasus/4.9.0/pegasus-python-source-4.9.0.tar.gz; python_version <= '2.7'
https://github.com/ahnitz/pegasus-wms-python3/archive/master.tar.gz; python_version >= '3'
amqplib

# For building documentation
Sphinx>=1.5.0,<2.0.0
sphinx-rtd-theme
sphinxcontrib-programoutput>=0.11
back to top