-
Notifications
You must be signed in to change notification settings - Fork 14
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
272 mqtt v2 does not work #273
Changes from 5 commits
6cb8ac9
7c531d9
d46daff
f1b1c4d
0fdaac5
24ff122
7385261
3fe6e5d
3e82f5e
3527677
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,10 +9,11 @@ | |
|
||
INSTALL_REQUIRES = ['aenum~=3.1.15', | ||
'datamodel_code_generator[http]~=0.25.0', | ||
'paho-mqtt~=1.6.1', | ||
'paho-mqtt>=2.0.0', | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Could you please change it to paho-mqtt~=2.0.0 instead of paho-mqtt>=2.0.0 otherwise the code might not work if there is a major release. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @sbanoeon Changed ! There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @SystemsPurge you have changed in |
||
'pandas_datapackage_reader~=0.18.0', | ||
'pydantic~=2.5.2', | ||
'pydantic-settings~=2.0.0', | ||
'geojson_pydantic~=1.0.2', | ||
'stringcase>=1.2.0', | ||
'rdflib~=6.0.0', | ||
'regex~=2023.10.3', | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Could you please change it to
paho-mqtt~=2.0.0
instead ofpaho-mqtt>=2.0.0
otherwise the code might not work if there is a major release.