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

Try forcing installing list pypmc branch #4863

Merged
merged 3 commits into from
Sep 4, 2024
Merged
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
10 changes: 9 additions & 1 deletion companion.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,11 @@ healpy

# Needed for GraceDB uploads and skymap generation
ligo-gracedb>=2.10.0
ligo.skymap!=1.1.0
#ligo.skymap!=1.1.0
# Temporarily use fork that doesn't force numpy<2.0 incompatibilities
# Remove when PR merged, or numpy > 2.0 is a hard requirement
# https://github.com/lpsinger/ligo.skymap/pull/28
git+https://github.com/ahnitz/ligo.skymap@lreq

# auxiliary samplers
epsie>=1.0
Expand All @@ -18,6 +22,10 @@ https://github.com/willvousden/ptemcee/archive/master.tar.gz
--extra-index-url https://download.pytorch.org/whl/cpu
torch
nessai>=0.11.0

# Needed to make sure numpy2 build works, remove when PR merged
# https://github.com/pypmc/pypmc/pull/105/files
git+https://github.com/ahnitz/pypmc@n2
snowline

# useful to look at PyCBC Live with htop
Expand Down
2 changes: 1 addition & 1 deletion tools/docker_build_dist.sh
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ if [ "x${PYCBC_CONTAINER}" == "xpycbc_rhel_virtualenv" ]; then
yum makecache
yum -y install openssl-devel
yum -y install python3-virtualenv
yum -y install hdf5-static libxml2-static zlib-static libstdc++-static cfitsio-static glibc-static swig fftw-static gsl-static --skip-broken
yum -y install hdf5-static libxml2-static zlib-static libstdc++-static cfitsio-static glibc-static swig fftw-static gsl-static gsl gsl-devel --skip-broken

CVMFS_PATH=/cvmfs/software.igwn.org/pycbc/${ENV_OS}/virtualenv
mkdir -p ${CVMFS_PATH}
Expand Down
Loading