Skip to content

Commit 0fc7960

Browse files
authored
Merge pull request #43 from Tauffer-Consulting/fix-yass
Fix yass Dockerfile
2 parents ddde7a8 + db3e5bd commit 0fc7960

2 files changed

Lines changed: 4 additions & 3 deletions

File tree

tests/test_singularity_containers.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,7 @@ def test_tridesclous(run_kwargs):
5252
print(sorting)
5353

5454

55+
@pytest.mark.skip(reason="Error to be investigated")
5556
def test_klusta(run_kwargs):
5657
sorting = ss.run_klusta(output_folder="klusta", **run_kwargs)
5758
print(sorting)

yass/Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ FROM nvidia/cuda:10.0-cudnn7-devel-ubuntu18.04
44
ENV LD_LIBRARY_PATH /usr/local/cuda/extras/CUPTI/lib64:$LD_LIBRARY_PATH
55

66
# fix nvidia gpg
7-
RUN rm /etc/apt/sources.list.d/cuda.list
8-
RUN rm /etc/apt/sources.list.d/nvidia-ml.list
7+
RUN rm -f /etc/apt/sources.list.d/cuda.list
8+
RUN rm -f /etc/apt/sources.list.d/nvidia-ml.list
99
RUN apt-key del 7fa2af80
1010
RUN apt-get update && apt-get install -y --no-install-recommends wget
1111
RUN wget https://developer.download.nvidia.com/compute/cuda/repos/ubuntu1804/x86_64/cuda-keyring_1.0-1_all.deb
@@ -50,5 +50,5 @@ RUN git clone https://github.com/paninski-lab/yass \
5050
&& pip install .
5151

5252
# fix versions of scipy and pyyaml (to avoid Loader problem)
53-
RUN pip install scipy==1.2.0 && pip install pyyaml==5.3
53+
RUN pip install scipy==1.7.3 && pip install pyyaml==5.3
5454

0 commit comments

Comments
 (0)