Skip to content
Merged
Changes from all 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
7 changes: 6 additions & 1 deletion conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,12 @@ 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

# This is temporary pending the resolution of a windows compilation
# issue on boost 1.88.0
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