From fe8b123f85980a6bfd7aea00a333706d270ebe5f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kacper=20R=C4=85czy?= Date: Thu, 14 Mar 2024 13:17:25 -0700 Subject: [PATCH] Use release 4.9.0.80 --- Dockerfile | 3 +-- docker-build.sh | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 322ecb7..028f923 100644 --- a/Dockerfile +++ b/Dockerfile @@ -50,8 +50,7 @@ RUN curl -L https://github.com/pyenv/pyenv-installer/raw/master/bin/pyenv-instal pyenv global 3.11.4 && \ pyenv rehash -# Note: We can upgrade to the latest version of scikit-build after the next opencv-python release -RUN pip install --upgrade pip auditwheel==5.1.2 setuptools numpy scikit-build==0.13.1 +RUN pip install --upgrade pip auditwheel==5.1.2 setuptools numpy scikit-build==0.17.6 VOLUME [ "/input", "/output" ] WORKDIR /input diff --git a/docker-build.sh b/docker-build.sh index 6dbca9e..a541515 100755 --- a/docker-build.sh +++ b/docker-build.sh @@ -2,7 +2,7 @@ set -e if [ ! -d opencv-python ]; then - git clone https://github.com/opencv/opencv-python.git -b 64 --depth 1 --single-branch + git clone https://github.com/opencv/opencv-python.git -b 80 --depth 1 --single-branch (cd opencv-python && git submodule update --init --depth 1) fi