From b5f538d446b085f8672a0d8d1126435080681815 Mon Sep 17 00:00:00 2001 From: Gregory Ashton <gregory.ashton@ligo.org> Date: Wed, 16 Jan 2019 08:16:14 +1100 Subject: [PATCH] Added PTMCMC to the docker containers for testing --- containers/Dockerfile-test-suite-python27 | 4 ++++ containers/Dockerfile-test-suite-python37 | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/containers/Dockerfile-test-suite-python27 b/containers/Dockerfile-test-suite-python27 index fc8d72841..e1e08687a 100644 --- a/containers/Dockerfile-test-suite-python27 +++ b/containers/Dockerfile-test-suite-python27 @@ -56,3 +56,7 @@ ENV LD_LIBRARY_PATH $HOME/MultiNest/lib: # Install Polychord RUN git clone https://github.com/PolyChord/PolyChordLite.git \ && (cd PolyChordLite && make pypolychord MPI= && python setup.py install) + +# Install PTMCMCSampler +RUN git clone https://github.com/jellis18/PTMCMCSampler.git \ +&& (cd PTMCMCSampler && python setup.py install) diff --git a/containers/Dockerfile-test-suite-python37 b/containers/Dockerfile-test-suite-python37 index beecf97ae..25ae9dd2e 100644 --- a/containers/Dockerfile-test-suite-python37 +++ b/containers/Dockerfile-test-suite-python37 @@ -60,3 +60,7 @@ ENV LD_LIBRARY_PATH $HOME/MultiNest/lib: # Install Polychord RUN git clone https://github.com/PolyChord/PolyChordLite.git \ && (cd PolyChordLite && make pypolychord MPI= && python setup.py install) + +# Install PTMCMCSampler +RUN git clone https://github.com/jellis18/PTMCMCSampler.git \ +&& (cd PTMCMCSampler && python setup.py install) -- GitLab