From 346df8b43b60d221b617c462aa2a784531d0c090 Mon Sep 17 00:00:00 2001 From: Mark Meredith Date: Tue, 20 Jul 2021 16:03:30 +0000 Subject: [PATCH] Update Dockerfile --- Dockerfile | 6 +++--- conanfile.py | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index 2515ce0..f215c14 100644 --- a/Dockerfile +++ b/Dockerfile @@ -13,12 +13,12 @@ RUN apt-get -qq update \ ninja-build=1.10.0-1build1 \ openscad=2019.05-3ubuntu5 \ pkg-config=0.29.1-0ubuntu4 \ - python3-pip=20.0.2-5ubuntu1.1 \ + python3-pip=20.0.2-5ubuntu1.5 \ python3-venv=3.8.2-0ubuntu2 \ && apt-get clean && rm -rf /var/lib/apt/lists/* \ && pip3 install --no-cache-dir \ - cmake==3.18.4.post1 \ - conan==1.35.2 + cmake==3.21.0 \ + conan==1.38 CMD [ "/bin/bash" ] diff --git a/conanfile.py b/conanfile.py index e110b07..c9c7f46 100644 --- a/conanfile.py +++ b/conanfile.py @@ -17,7 +17,7 @@ class CsgEbConan(ConanFile): default_options = {"shared": False} generators = "pkg_config" requires = ("catch2/2.13.6", "cgal/5.2.1", "taocpp-pegtl/3.2.0") - build_requires = ("meson/0.57.2",) + build_requires = ("meson/0.59.0",) exports_sources = "meson.build", "include/*", "src/*" def build(self): -- GitLab