From c5179c878c4551748843d92d1e76c30284bd4e1b Mon Sep 17 00:00:00 2001 From: bakpaul Date: Tue, 18 Jun 2024 13:59:01 +0200 Subject: [PATCH] Update pybind11 version for recent python version --- docker/sofabuilder_ubuntu/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docker/sofabuilder_ubuntu/Dockerfile b/docker/sofabuilder_ubuntu/Dockerfile index 690f663..1017dd2 100644 --- a/docker/sofabuilder_ubuntu/Dockerfile +++ b/docker/sofabuilder_ubuntu/Dockerfile @@ -79,11 +79,11 @@ RUN curl -L https://bootstrap.pypa.io/pip/get-pip.py --output /tmp/get-pip3.py \ RUN curl -L https://bootstrap.pypa.io/pip/get-pip.py --output /tmp/get-pip3.py \ && python3.11 /tmp/get-pip3.py \ && python3.11 -m pip install --upgrade pip \ - && python3.11 -m pip install numpy scipy matplotlib pybind11==$PYBIND11_VERSION + && python3.11 -m pip install numpy scipy matplotlib pybind11==2.11.1 RUN curl -L https://bootstrap.pypa.io/pip/get-pip.py --output /tmp/get-pip3.py \ && python3.12 /tmp/get-pip3.py \ && python3.12 -m pip install --upgrade pip \ - && python3.12 -m pip install numpy scipy matplotlib pybind11==$PYBIND11_VERSION + && python3.12 -m pip install numpy scipy matplotlib pybind11==2.11.1 ENV VM_HAS_ASSIMP="true" ENV VM_HAS_OPENCASCADE="true"