Skip to content

Commit

Permalink
[build] do not install dependencies with pip
Browse files Browse the repository at this point in the history
  • Loading branch information
the-hampel committed Jun 24, 2024
1 parent 8112865 commit 45a47c2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Docker/github_ci_dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ RUN cd /source && git clone -b unstable --depth 1 https://github.com/TRIQS/maxen
&& make -j$NCORES && ctest -j$NCORES && make install

# install sparse-ir into triqs pythonpath
RUN pip install --target /triqs/lib/python3.10/site-packages sparse-ir[xprec]
RUN pip install --no-deps --target /triqs/lib/python3.10/site-packages sparse-ir[xprec]

# remove source
RUN cd / && rm -rf source
Expand Down
2 changes: 1 addition & 1 deletion Docker/openmpi_dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ RUN mkdir -p /src && cd /src \
# && rm -rf openmpi-4.1.5.tar.gz openmpi-4.1.5

# install sparse-ir into triqs pythonpath
RUN pip install --target /triqs/lib/python3.10/site-packages sparse-ir[xprec]
RUN pip install --no-deps --target /triqs/lib/python3.10/site-packages sparse-ir[xprec]

ENV PYTHON_VERSION=3.10 \
CC=clang-${LLVM} CXX=clang++-${LLVM} CXXFLAGS="-stdlib=libc++"
Expand Down

0 comments on commit 45a47c2

Please sign in to comment.