Skip to content

Commit

Permalink
Fix numpy requirements (#399)
Browse files Browse the repository at this point in the history
  • Loading branch information
YukioOobuchi authored and YasunariZHashimoto committed Apr 15, 2019
1 parent c619272 commit 165933f
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 2 deletions.
2 changes: 2 additions & 0 deletions docker/development/Dockerfile.build
Expand Up @@ -12,6 +12,8 @@
# See the License for the specific language governing permissions and
# limitations under the License.

# for nnabla>=1.0.16

FROM centos:6

ENV LC_ALL C
Expand Down
2 changes: 2 additions & 0 deletions docker/development/Dockerfile.build-armhf
Expand Up @@ -12,6 +12,8 @@
# See the License for the specific language governing permissions and
# limitations under the License.

# for nnabla>=1.0.16

FROM multiarch/ubuntu-core:armhf-xenial

ENV LC_ALL C
Expand Down
2 changes: 1 addition & 1 deletion python/requirements.txt
Expand Up @@ -2,7 +2,7 @@ Cython
boto3
requests
h5py
numpy<1.16
numpy>1.13
onnx==1.3.0
protobuf
pyyaml
Expand Down
2 changes: 1 addition & 1 deletion python/setup.py
Expand Up @@ -24,7 +24,7 @@

setup_requires = [
'setuptools',
'numpy<1.16',
'numpy>1.13',
'Cython', # Requires python-dev.
]

Expand Down

0 comments on commit 165933f

Please sign in to comment.