Skip to content

Commit

Permalink
Merge pull request #2312 from AllenInstitute/bugfix/2312-better-pip-i…
Browse files Browse the repository at this point in the history
…nstall

tools: Always pass --no-deps for pip install
  • Loading branch information
t-b authored Dec 17, 2024
2 parents 605d7d6 + 3e94cd5 commit 8c0b7b9
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Packages/doc/doxygen-filter-ipf
Submodule doxygen-filter-ipf updated 0 files
2 changes: 1 addition & 1 deletion tools/documentation/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ COPY requirements.txt .
# https://stackoverflow.com/a/75696359
RUN python -m venv --system-site-packages /home/ci/.venv && \
. /home/ci/.venv/bin/activate && \
pip3 install -r requirements.txt
pip3 install --no-deps -r requirements.txt

# https://stackoverflow.com/a/56286534
ENV PATH=${PATH}:/home/ci/.venv/bin
2 changes: 1 addition & 1 deletion tools/nwb-read-tests/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ COPY requirements.txt .
# https://stackoverflow.com/a/75696359
RUN python -m venv --system-site-packages /home/ci/.venv && \
. /home/ci/.venv/bin/activate && \
pip3 install -r requirements.txt
pip3 install --no-deps -r requirements.txt

# https://stackoverflow.com/a/56286534
ENV PATH=/home/ci/.venv/bin:${PATH}
2 changes: 1 addition & 1 deletion tools/pre-commit/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ COPY requirements.txt .
# https://stackoverflow.com/a/75696359
RUN python -m venv --system-site-packages /home/ci/.venv && \
. /home/ci/.venv/bin/activate && \
pip3 install -r requirements.txt
pip3 install --no-deps -r requirements.txt

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

0 comments on commit 8c0b7b9

Please sign in to comment.