Skip to content

Commit

Permalink
bump deps & use version range for zstd & pkgconf
Browse files Browse the repository at this point in the history
  • Loading branch information
SpaceIm committed Sep 10, 2024
1 parent 02291f8 commit 718a97c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions recipes/libmysqlclient/all/conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,10 +67,10 @@ def requirements(self):
else:
self.requires("openssl/[>=1.1 <4]")
self.requires("zlib/[>=1.2.11 <2]")
self.requires("zstd/1.5.5")
self.requires("lz4/1.9.4")
self.requires("zstd/[>=1.5 <1.6]")
self.requires("lz4/1.10.0")
if self.settings.os == "FreeBSD":
self.requires("libunwind/1.7.2")
self.requires("libunwind/1.8.1")

def validate_build(self):
if self.settings.compiler.get_safe("cppstd"):
Expand Down Expand Up @@ -99,7 +99,7 @@ def build_requirements(self):
if is_apple_os(self):
self.tool_requires("cmake/[>=3.18 <4]")
if self.settings.os == "FreeBSD" and not self.conf.get("tools.gnu:pkg_config", check_type=str):
self.tool_requires("pkgconf/2.0.3")
self.tool_requires("pkgconf/[>=2.2 <3]")

def source(self):
get(self, **self.conan_data["sources"][self.version], strip_root=True)
Expand Down

0 comments on commit 718a97c

Please sign in to comment.