Skip to content

Commit

Permalink
Merge pull request #461 from INCATools/pip-issues
Browse files Browse the repository at this point in the history
Update pip install pipline
  • Loading branch information
matentzn authored Sep 9, 2021
2 parents 85b58d5 + 73b764c commit 0394e5d
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 5 deletions.
9 changes: 6 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -41,9 +41,12 @@ RUN apt-get update &&\
libfreetype6-dev \
libpng-dev \
pkg-config \
xlsx2csv \
&& python3 -m pip install --upgrade pip setuptools \
&& python3 -m pip install -r /tools/requirements.txt \
xlsx2csv

#https://github.com/pypa/pip/issues/9187#issuecomment-853091201
RUN python3 -m pip install --upgrade pip==20.3.4 \
&& python3 -m pip install --upgrade setuptools==52.0.0 \
&& python3 -m pip install --use-feature=fast-deps --use-deprecated=legacy-resolver -r /tools/requirements.txt \
&& if [ ! -e /usr/bin/pip ]; then ln -sf /usr/bin/pip3 /usr/bin/pip ; fi \
&& if [ ! -e /usr/bin/python ]; then ln -sf /usr/bin/python3 /usr/bin/python; fi \
&& rm -r /root/.cache
Expand Down
4 changes: 2 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@ ruamel.yaml >=0.0
seaborn>=0.0
upsetplot>=0.0
plotly>=0.0
networkx==2.5
networkx==2.3
sssom>=0.3.2
ontodev-cogs>=0.0
sssom==0.14.11.dev0
mkdocs >= 0.0
funowl >= 0.0
kgx >= 0.0
Expand Down

0 comments on commit 0394e5d

Please sign in to comment.