Skip to content

Commit

Permalink
Merge pull request #8485 from kmaehashi/fix-dockerfile
Browse files Browse the repository at this point in the history
Fix broken version specification in FlexCI dockerfile
  • Loading branch information
mergify[bot] committed Nov 29, 2019
2 parents b839926 + e18a855 commit 9293436
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .pfnci/py27and35.Dockerfile
Expand Up @@ -18,12 +18,12 @@ RUN python2.7 -m pip install --upgrade pip setuptools
RUN python3.5 -m pip install \
'cython>=0.28.0' 'ideep4py<2.1' 'pytest==4.1.1' 'pytest-xdist==1.26.1' \
mock setuptools typing \
typing_extensions filelock numpy>=1.9.0 protobuf>=3.0.0 six>=1.9.0
typing_extensions filelock 'numpy>=1.9.0' 'protobuf>=3.0.0' 'six>=1.9.0'

RUN python2.7 -m pip install \
'cython>=0.28.0' 'ideep4py<2.1' 'pytest==4.1.1' 'pytest-xdist==1.26.1' \
mock setuptools typing \
typing_extensions filelock protobuf>=3.0.0 six>=1.9.0
typing_extensions filelock 'protobuf>=3.0.0' 'six>=1.9.0'

# Newer versions of numpy and more-itertools no longer support python2.
RUN python2.7 -m pip install 'numpy<=1.16.5' 'more-itertools<=5.0.0'
Expand Down

0 comments on commit 9293436

Please sign in to comment.