Skip to content

Commit

Permalink
aws-c-cal: fix dependency version conflict
Browse files Browse the repository at this point in the history
  • Loading branch information
st9007a committed Mar 25, 2024
1 parent 3f569fe commit 6dc4260
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion recipes/aws-c-cal/all/conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,11 @@ def layout(self):
def requirements(self):
if Version(self.version) <= "0.5.20":
self.requires("aws-c-common/0.8.2", transitive_headers=True, transitive_libs=True)
else:
elif Version(self.version) <= "0.6.1":
self.requires("aws-c-common/0.9.6", transitive_headers=True, transitive_libs=True)
else:
# [>=0.9.7]
self.requires("aws-c-common/0.9.12", transitive_headers=True, transitive_libs=True)
if self._needs_openssl:
self.requires("openssl/[>=1.1 <4]")

Expand Down

0 comments on commit 6dc4260

Please sign in to comment.