From 7bc68def1a0b6563b0ee602048d2a9bb0e047010 Mon Sep 17 00:00:00 2001 From: Oliver Kuckertz Date: Sat, 27 Apr 2024 13:07:27 +0200 Subject: [PATCH] pybind11_json: relax version requirements --- recipes/pybind11_json/all/conanfile.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/recipes/pybind11_json/all/conanfile.py b/recipes/pybind11_json/all/conanfile.py index 829dedced7271..f8dd2461a9ee5 100644 --- a/recipes/pybind11_json/all/conanfile.py +++ b/recipes/pybind11_json/all/conanfile.py @@ -23,8 +23,8 @@ def layout(self): basic_layout(self, src_folder="src") def requirements(self): - self.requires("nlohmann_json/3.11.2") - self.requires("pybind11/2.10.4") + self.requires("nlohmann_json/[>=3.9 <4]") + self.requires("pybind11/[>=2.6 <3]") def package_id(self): self.info.clear()