From 6e6328911a20bf975d0cb0a847e2686bf169e353 Mon Sep 17 00:00:00 2001 From: Dominik Drexler Date: Tue, 27 Feb 2024 15:22:19 +0100 Subject: [PATCH] lowered boost min version --- cmake/configure_boost.cmake | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/cmake/configure_boost.cmake b/cmake/configure_boost.cmake index 0eec8d18..ac1a8849 100644 --- a/cmake/configure_boost.cmake +++ b/cmake/configure_boost.cmake @@ -3,7 +3,7 @@ macro(configure_boost) set(Boost_USE_STATIC_LIBS ON) set(Boost_USE_MULTITHREADED ON) set(Boost_USE_STATIC_RUNTIME OFF) - set(BOOST_MIN_VERSION "1.80.0") + set(BOOST_MIN_VERSION "1.74.0") if (DEFINED ENV{BOOST_ROOT}) set(Boost_NO_SYSTEM_PATHS ON) diff --git a/setup.py b/setup.py index d69e0d98..f153998a 100644 --- a/setup.py +++ b/setup.py @@ -9,7 +9,7 @@ from setuptools import setup, find_packages, Extension from setuptools.command.build_ext import build_ext -__version__ = "0.3.10" +__version__ = "0.3.11" HERE = Path(__file__).resolve().parent