Skip to content

Commit a4c133f

Browse files
committed
Fix setuptools
1 parent d5e13ef commit a4c133f

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ ADD setup.py .
99

1010
RUN apt-get update
1111
RUN apt install -y git build-essential nodejs npm
12-
RUN pip install --upgrade pip
13-
RUN pip install . --no-cache-dir
12+
RUN pip install --upgrade pip setuptools wheel
13+
RUN pip install .
1414

1515
# Install wavpack
1616
ENV WAVPACK_VERSION=5.7.0
@@ -26,7 +26,7 @@ RUN pip install wavpack-numcodecs
2626
RUN git clone https://github.com/alejoe91/spikeinterface-gui.git && \
2727
cd spikeinterface-gui && \
2828
git checkout f8198db0ac04232f594dcb1bef80c446e41cd775 && \
29-
pip install . --no-cache-dir && cd ..
29+
pip install . && cd ..
3030

3131

3232
EXPOSE 8000

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[build-system]
2-
requires = ["setuptools>=61.0", "wheel"]
2+
requires = ["setuptools>=62.0", "wheel"]
33
build-backend = "setuptools.build_meta"
44

55
[project]

0 commit comments

Comments
 (0)