Skip to content

Commit

Permalink
Merge pull request #114 from Gunjan933/master
Browse files Browse the repository at this point in the history
Fixed travis issue on arm64, with numpy prev version
  • Loading branch information
srohit0 committed Dec 25, 2019
2 parents 9c6dd4b + af7dc3d commit 3e64cee
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,5 +42,7 @@ addons:
language: bash

script:
- pip3 install numpy onnx
# bug: numpy 1.18 fails
# - pip3 install numpy onnx
- pip3 install numpy==1.15.0 onnx==1.5.0
- make all
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ RUN apt-get update && apt-get install -y \
vim

# install numpy onnx with pip
RUN pip3 install numpy onnx
RUN pip3 install numpy==1.15.0 onnx==1.5.0

# copy everything from current directory to container directory
COPY . /dnnCompiler
Expand Down

0 comments on commit 3e64cee

Please sign in to comment.