Revision ff2182fc60344a1abf6ec9a6fe189c086cbb663c authored by Alex Nitz on 21 May 2021, 14:27:33 UTC, committed by GitHub on 21 May 2021, 14:27:33 UTC
1 parent 0489f33
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,!=4.2.1,!=4.0.5; 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.16.0,!=1.19.0; python_version >= '3.5'
numpy>=1.16.0,<1.17.0; python_version <= '3.4'
pillow
h5py>=2.5,<=3.1.0; python_version <= '3.6'
h5py>=2.5; python_version > '3.6'
jinja2
mpld3>=0.3
requests>=1.2.1
beautifulsoup4>=4.6.0
six>1.10.0
cython
lalsuite
lscsoft-glue>=1.59.3
ligo-segments
tqdm
gwdatafind

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

# Needed for Parameter Estimation Tasks
emcee==2.2.1
dynesty
epsie>=0.6

# For LDG service access
dqsegdb
dqsegdb2>=1.0.1
https://github.com/ahnitz/pegasus-wms-python3/archive/master.tar.gz
amqplib
htchirp >= 2.0

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

# required due to ecosystem incompatibility with 2.7
# and several samplers which do depend on it
# REMOVE when we drop 2.7 support or corner has a new release
# and 2.2.0 is taken removed or samplers exclude its version
corner < 2.2.0; python_version < '3.6'
back to top