Skip to content

Commit

Permalink
Solve #164 paho mqtt 200 breaks flask mqtt (#165)
Browse files Browse the repository at this point in the history
* lock paho-mqtt to < 2.0

* Update requirement files
  • Loading branch information
stlehmann authored Mar 15, 2024
1 parent 6e10bf8 commit 09967bc
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
2 changes: 1 addition & 1 deletion requirements.in
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
flask
paho-mqtt
paho-mqtt<2.0
6 changes: 4 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,11 +1,13 @@
#
# This file is autogenerated by pip-compile with python 3.9
# To update, run:
# This file is autogenerated by pip-compile with Python 3.10
# by the following command:
#
# pip-compile
#
click==8.0.3
# via flask
colorama==0.4.6
# via click
flask==2.0.2
# via -r requirements.in
itsdangerous==2.0.1
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ def find_version(*file_paths):
packages=["flask_mqtt"],
platforms="any",
python_requires=">=3.6",
install_requires=["Flask", "paho-mqtt"],
install_requires=["Flask", "paho-mqtt<2.0"],
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
Expand Down

0 comments on commit 09967bc

Please sign in to comment.