Skip to content

Commit

Permalink
fix requirements
Browse files Browse the repository at this point in the history
  • Loading branch information
bjfultn committed Sep 14, 2023
1 parent 8b1665e commit 777eb54
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 15 deletions.
14 changes: 8 additions & 6 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,14 @@ RUN mkdir /code && \
mkdir /code/radvel && \
apt-get --yes update && \
apt-get install --yes gcc git pkg-config libhdf5-hl-100 libhdf5-dev && \
apt-get clean && \
conda config --add channels conda-forge && \
conda config --set channel_priority strict && \
conda update -n base -c defaults conda && \
conda install --yes nomkl numpy pybind11 coveralls nose && \
conda install --yes -c conda-forge celerite && \
apt-get clean

# RUN conda config --add channels conda-forge && \
# conda config --set channel_priority strict && \
# conda update -n base -c defaults conda

RUN conda install --yes nomkl numpy pybind11 coveralls nose
RUN conda install --yes -c conda-forge celerite && \
conda clean -afy

WORKDIR /code/radvel
Expand Down
9 changes: 6 additions & 3 deletions docs/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,14 +1,17 @@
numpy>=1.11
scipy>=0.17
numpy==1.24.3
scipy==1.10.1
matplotlib>=1.5.3
corner>=2.0
cython>=0.23
astropy>=1.1.2
emcee>=3.0.0
pandas>=0.20.0
nbsphinx
nbsphinx==0.9.3
nbconvert==7.8.0
mistune==3.0.1
jupyter_client
ipykernel
pybind11
sphinx_rtd_theme
mock
docutils==0.16
4 changes: 2 additions & 2 deletions radvel/tests/test_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -321,9 +321,9 @@ def test_model_comp(setupfn='example_planets/HD164922.py'):
#test_k2()
#test_hd()
#test_model_comp()
#test_k2131()
test_k2131()
#test_celerite()
test_basis()
# test_basis()
#test_kernels()
#test_kepler()
#test_priors()
9 changes: 5 additions & 4 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,15 +1,16 @@
cython>=0.23
numpy>=1.16
scipy>=0.17
numpy==1.24.3
scipy==1.10.1
matplotlib>=1.5.3
corner>=2.0
astropy>=1.1.2
emcee>=3.0.2
pandas>=0.20.0
nbsphinx>=0.3.3
nbsphinx==0.9.3
jupyter_client>=5.2.4
ipykernel>=4.10.0
jinja2>=2.9
python-dateutil>=2.5.0
h5py>=2.10.0
h5py>=3.9.0
dill
ipython

0 comments on commit 777eb54

Please sign in to comment.