From a00a64c08d482f6ac18437f3222c6664cddbf5e0 Mon Sep 17 00:00:00 2001 From: Moritz Maxeiner <mm@ucw.sh> Date: Thu, 29 Nov 2018 18:27:04 +0100 Subject: [PATCH] [ubuntu 18.04] Update pybind11 to 2.2.4 --- ubuntu-18.04/Dockerfile | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/ubuntu-18.04/Dockerfile b/ubuntu-18.04/Dockerfile index 735a844..b00b1d0 100644 --- a/ubuntu-18.04/Dockerfile +++ b/ubuntu-18.04/Dockerfile @@ -106,14 +106,14 @@ RUN cd /tmp && \ rm -rf hdf5-1.10.2* RUN cd /tmp && \ - curl -sSLO https://github.com/pybind/pybind11/archive/v2.2.3.tar.gz && \ - tar -xf v2.2.3.tar.gz && \ - cd pybind11-2.2.3 && \ + curl -sSLO https://github.com/pybind/pybind11/archive/v2.2.4.tar.gz && \ + tar -xf v2.2.4.tar.gz && \ + cd pybind11-2.2.4 && \ cmake -Bbuild -H. -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/usr/local -DPYBIND11_TEST=off -G Ninja && \ ninja -C build install && \ cd .. && \ - rm -f v2.2.3.tar.gz && \ - rm -rf pybind11-2.2.3 + rm -f v2.2.4.tar.gz && \ + rm -rf pybind11-2.2.4 RUN apt-get install -y \ qt5-default \ -- GitLab