Skip to content

Commit 10f9001

Browse files
committed
tools/nwb-read-tests/Dockerfile: Don't install additional dependencies
This is another incarnation of [1] where is it unclear how this worked before. According to documentation not allowing any additional dependencies fixes the issue. [1]: pypa/pip#9644
1 parent c2f4182 commit 10f9001

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tools/nwb-read-tests/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ COPY requirements.txt .
3030
# https://stackoverflow.com/a/75696359
3131
RUN python -m venv --system-site-packages /home/ci/.venv && \
3232
. /home/ci/.venv/bin/activate && \
33-
pip3 install -r requirements.txt
33+
pip3 install --no-deps -r requirements.txt
3434

3535
# https://stackoverflow.com/a/56286534
3636
ENV PATH=/home/ci/.venv/bin:${PATH}

0 commit comments

Comments
 (0)