From f504bbb5a37bc5417cdfb0ade8948ccca82cb066 Mon Sep 17 00:00:00 2001 From: Philipp Basler Date: Sun, 2 Jun 2024 07:33:04 +0200 Subject: [PATCH] Update boost version --- .github/workflows/windows_unit_tests.yml | 2 +- conanfile.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/windows_unit_tests.yml b/.github/workflows/windows_unit_tests.yml index 6a663d31..1ff61d60 100644 --- a/.github/workflows/windows_unit_tests.yml +++ b/.github/workflows/windows_unit_tests.yml @@ -30,7 +30,7 @@ jobs: uses: SimenB/github-actions-cpu-cores@v1 id: cpu-cores - - run: conan install . --options enable_tests=True --build=boost/1.74.0 + - run: conan install . --options enable_tests=True --build=missing - run: cmake --list-presets - run: cmake --preset conan-release - run: cmake --build --list-presets diff --git a/conanfile.py b/conanfile.py index c218b13a..e8a61751 100644 --- a/conanfile.py +++ b/conanfile.py @@ -49,7 +49,7 @@ class CmaesConan(ConanFile): def build_requirements(self): if self.options.enable_tests: self.test_requires("gflags/2.2.2") - self.test_requires("boost/1.74.0") + self.test_requires("boost/1.85.0") def requirements(self): self.requires("eigen/3.4.0", transitive_headers=True)