From eabd18ee87c3713e8035a2968c67a3a8ebe72736 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20P=C3=B6ppel?= <jpoeppel@lou.TECHFAK.UNI-BIELEFELD.DE> Date: Thu, 29 Sep 2022 19:27:34 +0200 Subject: [PATCH] removed fixed paho version since we can now use conda-forge paho --- conda.recipe/meta.yaml | 21 ++++++++++++--------- 1 file changed, 12 insertions(+), 9 deletions(-) diff --git a/conda.recipe/meta.yaml b/conda.recipe/meta.yaml index 157d65c..76de365 100644 --- a/conda.recipe/meta.yaml +++ b/conda.recipe/meta.yaml @@ -1,4 +1,5 @@ -{% set protobufversion = "3.8.0" %} +{% set protobufversion = "3.8.0.*" %} +{% set pahomqttversion = "1.4.0.*" %} # Currently no longer needed, but you may want to build your own if you want to include Ramin's patch package: name: ipaaca @@ -13,7 +14,7 @@ source: folder: ipaaca-py build: - number: 1 + number: 4 requirements: @@ -34,21 +35,23 @@ outputs: - libprotobuf {{ protobufversion }} - mosquitto - boost-cpp + - libuuid run: - mosquitto - libprotobuf {{ protobufversion }} - boost-cpp + - libuuid - name: ipaaca-py noarch: python script: install_python.sh requirements: host: - - python - - pip - - protobuf {{ protobufversion }} + - python {{ python }} + - pip + - protobuf {{ protobufversion }} run: - - python - - mosquitto - - paho-mqtt - - protobuf {{ protobufversion }} + - python + - mosquitto + - paho-mqtt + - protobuf {{ protobufversion }} -- GitLab