diff --git a/docker/sofabuilder_fedora/Dockerfile b/docker/sofabuilder_fedora/Dockerfile index bf76e2d..0cf178b 100644 --- a/docker/sofabuilder_fedora/Dockerfile +++ b/docker/sofabuilder_fedora/Dockerfile @@ -61,7 +61,7 @@ RUN yum install -y -q \ ENV VM_BUILDS_IMGUI="false" # Install pip, numpy, scipy, pybind11 -ARG PYBIND11_VERSION=2.9.1 +ARG PYBIND11_VERSION=2.11.1 #RUN curl -L https://bootstrap.pypa.io/pip/2.7/get-pip.py --output /tmp/get-pip2.py \ # && python2.7 /tmp/get-pip2.py \ # && python2.7 -m pip install --upgrade "pip == 20.3.4" \ diff --git a/docker/sofabuilder_ubuntu/Dockerfile b/docker/sofabuilder_ubuntu/Dockerfile index 1017dd2..8268d7f 100644 --- a/docker/sofabuilder_ubuntu/Dockerfile +++ b/docker/sofabuilder_ubuntu/Dockerfile @@ -67,7 +67,7 @@ RUN apt-get install -y \ ENV VM_BUILDS_IMGUI="true" # Install pip, numpy, scipy, pybind11 -ARG PYBIND11_VERSION=2.9.1 +ARG PYBIND11_VERSION=2.11.1 RUN curl -L https://bootstrap.pypa.io/pip/2.7/get-pip.py --output /tmp/get-pip2.py \ && python2.7 /tmp/get-pip2.py \ && python2.7 -m pip install --upgrade "pip == 20.3.4" \ @@ -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==2.11.1 + && python3.11 -m pip install numpy scipy matplotlib pybind11==$PYBIND11_VERSION 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==2.11.1 + && python3.12 -m pip install numpy scipy matplotlib pybind11==$PYBIND11_VERSION ENV VM_HAS_ASSIMP="true" ENV VM_HAS_OPENCASCADE="true"