From 74eb16f2133be746d3b3f6c5bbf67a8bc27fdf68 Mon Sep 17 00:00:00 2001 From: Blake Blackshear Date: Tue, 19 Jan 2021 06:16:44 -0600 Subject: [PATCH] pin numpy --- docker/Dockerfile.wheels | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docker/Dockerfile.wheels b/docker/Dockerfile.wheels index a6fa222ec..bf545ec5b 100644 --- a/docker/Dockerfile.wheels +++ b/docker/Dockerfile.wheels @@ -24,7 +24,8 @@ RUN pip3 install scikit-build RUN pip3 wheel --wheel-dir=/wheels \ opencv-python-headless \ - numpy \ + # pinning due to issue in 1.19.5 https://github.com/numpy/numpy/issues/18131 + numpy==1.19.4 \ imutils \ scipy \ psutil \