This is an automated email from the ASF dual-hosted git repository.
pengzheng pushed a commit to branch hotfix/ci-conan
in repository https://gitbox.apache.org/repos/asf/celix.git
The following commit(s) were added to refs/heads/hotfix/ci-conan by this push:
new 41034d81 Fix zeromq version conflict in Conan Create CI.
41034d81 is described below
commit 41034d81fb0b1706fe84e3e1eed07e92457e93fc
Author: PengZheng <[email protected]>
AuthorDate: Tue Dec 5 13:05:11 2023 +0800
Fix zeromq version conflict in Conan Create CI.
---
conanfile.py | 1 +
1 file changed, 1 insertion(+)
diff --git a/conanfile.py b/conanfile.py
index 3b37f058..507d742c 100644
--- a/conanfile.py
+++ b/conanfile.py
@@ -381,6 +381,7 @@ class CelixConan(ConanFile):
if self.options.build_cxx_remote_service_admin:
self.requires("rapidjson/[>=1.1.0 <2.0.0]")
if self.options.build_pubsub_psa_zmq:
+ self.requires("zeromq/[>=4.3.5 <5.0.0]")
self.requires("czmq/4.2.0")
if self.options.build_http_admin or
self.options.build_rsa_discovery_common \
or self.options.build_rsa_remote_service_admin_dfi: