Commit 7699353c authored by Mark Meredith's avatar Mark Meredith
Browse files

update versions

parent c03d03bd
Loading
Loading
Loading
Loading
Loading
+5 −5
Original line number Diff line number Diff line
@@ -9,16 +9,16 @@ ENV DEBIAN_FRONTEND noninteractive
RUN apt-get -qq update \
  && apt-get -qq -y install --no-install-recommends \
  build-essential=12.8ubuntu1.1 \
  git=1:2.25.1-1ubuntu3 \
  git=1:2.25.1-1ubuntu3.1 \
  ninja-build=1.10.0-1build1 \
  openscad=2019.05-3ubuntu5 \
  pkg-config=0.29.1-0ubuntu4 \
  python3-pip=20.0.2-5ubuntu1.1 \
  python3-venv=3.8.2-0ubuntu2 \
  && apt-get clean && rm -rf /var/lib/apt/lists/*
  && apt-get clean && rm -rf /var/lib/apt/lists/* \

RUN pip3 install --no-cache-dir \
  && pip3 install --no-cache-dir \
  cmake==3.18.4.post1 \
    conan==1.34.0
  conan==1.35.2

CMD [ "/bin/bash" ]
+2 −2
Original line number Diff line number Diff line
@@ -16,8 +16,8 @@ class CsgEbConan(ConanFile):
    options = {"shared": [True, False]}
    default_options = {"shared": False}
    generators = "pkg_config"
    requires = ("catch2/2.13.4", "cgal/5.2", "taocpp-pegtl/3.1.0")
    build_requires = ("meson/0.57.1",)
    requires = ("catch2/2.13.6", "cgal/5.2.1", "taocpp-pegtl/3.2.0")
    build_requires = ("meson/0.57.2",)
    exports_sources = "meson.build", "include/*", "src/*"

    def build(self):