Skip to content

Commit 54201bf

Browse files
committed
Resolve mqtt dependency in python build. Code requires 2.0 or newer
1 parent 35744df commit 54201bf

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

tools/developer_tools/bely-mqtt-message-broker/conda-recipe/meta.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ source:
99
path: ./src
1010

1111
build:
12-
number: 2
12+
number: 3
1313
noarch: python
1414

1515
requirements:
@@ -21,7 +21,7 @@ requirements:
2121
run:
2222
- python>3.10
2323
- click
24-
- paho-mqtt
24+
- paho-mqtt >=2.0.0
2525
- pydantic
2626
- python-dotenv
2727
- pluggy

tools/developer_tools/bely-mqtt-message-broker/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ classifiers = [
2828

2929
dependencies = [
3030
"click>=8.1.0",
31-
"paho-mqtt>=1.6.1",
31+
"paho-mqtt>=2.0.0",
3232
"pydantic>=2.0.0",
3333
"python-dotenv>=1.0.0",
3434
"pluggy>=1.3.0",

tools/developer_tools/bely-mqtt-message-broker/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
python_requires=">=3.9",
1818
install_requires=[
1919
"click>=8.1.0",
20-
"paho-mqtt>=1.6.1",
20+
"paho-mqtt>=2.0.0",
2121
"pydantic>=2.0.0",
2222
"python-dotenv>=1.0.0",
2323
"pluggy>=1.3.0",

0 commit comments

Comments
 (0)