Skip to content

Commit 3bb7e3d

Browse files
Update conanfile.py
1 parent 0565407 commit 3bb7e3d

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

conanfile.py

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ class TeiaCareInferenceClient(ConanFile):
3838
settings = "os", "compiler", "build_type", "arch"
3939
options = {"shared": [True, False], "fPIC": [True, False]}
4040
default_options = {"shared": False, "fPIC": True}
41-
requires = "grpc/1.65.0"
41+
requires = "grpc/1.67.1"
4242
generators = "CMakeDeps"
4343

4444
def config_options(self):
@@ -58,10 +58,8 @@ def configure(self):
5858
self.options["grpc"].php_plugin=False
5959
self.options["grpc"].python_plugin=False
6060
self.options["grpc"].ruby_plugin=False
61-
self.options["grpc"].secure=False
62-
63-
if self.settings.os == "Linux":
64-
self.options["grpc"].with_libsystemd=False
61+
self.options["grpc"].otel_plugin=False
62+
self.options["grpc"].secure=True
6563

6664
def generate(self):
6765
tc = CMakeToolchain(self)

0 commit comments

Comments
 (0)