Skip to content

Commit

Permalink
bump lz4 version & use version range for zstd & pkgconf
Browse files Browse the repository at this point in the history
  • Loading branch information
SpaceIm committed Sep 11, 2024
1 parent 1266024 commit 1c1104f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions recipes/librdkafka/all/conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,11 +66,11 @@ def layout(self):
cmake_layout(self, src_folder="src")

def requirements(self):
self.requires("lz4/1.9.4")
self.requires("lz4/1.10.0")
if self.options.zlib:
self.requires("zlib/[>=1.2.11 <2]")
if self.options.zstd:
self.requires("zstd/1.5.5")
self.requires("zstd/[>=1.5 <1.6]")
if self.options.ssl:
self.requires("openssl/[>=1.1 <4]")
if self._depends_on_cyrus_sasl:
Expand All @@ -80,7 +80,7 @@ def requirements(self):

def build_requirements(self):
if self._depends_on_cyrus_sasl:
self.tool_requires("pkgconf/2.1.0")
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 1c1104f

Please sign in to comment.