Skip to content
Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,10 @@ def _grpc_requires(self):
return 'grpc/[>=1.48.4]'

def requirements(self):
self.requires('boost/[>=1.74.0]', transitive_headers=True)
if self.settings.os == "Windows":
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Maybe add a TODO: remove windows boost version upper bound once conan resolves XXX (hoping they have a ticket - if not we should open one?).

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

good idea and yes they do--conan-io/conan-center-index#27546

self.requires('boost/[>=1.74.0 <1.88.0]', transitive_headers=True)
else:
self.requires('boost/[>=1.74.0]', transitive_headers=True)

# The SDK supports older grpc and protobuf, but these are the oldest
# maintained conan packages.
Expand Down
Loading