From 6a8477ecd562132904f45a38c674e5aeebf280ef Mon Sep 17 00:00:00 2001 From: Alessio Buccino Date: Tue, 30 Jul 2024 13:03:02 +0200 Subject: [PATCH] numpy<2 and correct HS version --- herdingspikes/Dockerfile | 4 ++-- herdingspikes/build.sh | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/herdingspikes/Dockerfile b/herdingspikes/Dockerfile index 12187d5..dc93559 100644 --- a/herdingspikes/Dockerfile +++ b/herdingspikes/Dockerfile @@ -1,6 +1,6 @@ FROM python:3.12 -RUN pip install numpy +RUN pip install "numpy<2.0" RUN pip install cython -RUN pip install herdingspikes==0.4.1 +RUN pip install herdingspikes==0.4.3 diff --git a/herdingspikes/build.sh b/herdingspikes/build.sh index 3e12305..b0855ac 100755 --- a/herdingspikes/build.sh +++ b/herdingspikes/build.sh @@ -1,3 +1,3 @@ #!/bin/bash -docker build -t spikeinterface/herdingspikes-base:latest -t spikeinterface/herdingspikes-base:0.4.1 . +docker build -t spikeinterface/herdingspikes-base:latest -t spikeinterface/herdingspikes-base:0.4.3 .