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 Jan 18, 2024
1 parent 86f612c commit a5927a1
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 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,10 @@ 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:
self.requires("aws-c-common/[>=0.9.7]", transitive_headers=True, transitive_libs=True)
if self._needs_openssl:
self.requires("openssl/[>=1.1 <4]")

Expand Down

0 comments on commit a5927a1

Please sign in to comment.