Skip to content

Commit b0aded1

Browse files
committed
Updated requirements and version
1 parent f024bd9 commit b0aded1

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
with open(path.join(this_directory, 'README.md')) as f:
2222
long_description = f.read()
2323

24-
VERSION = "1.13.0"
24+
VERSION = "1.13.1"
2525

2626
setup(
2727
version=VERSION,
@@ -35,5 +35,5 @@
3535
long_description_content_type="text/markdown",
3636
python_requires=">=3.9",
3737
packages=["."],
38-
install_requires=['tb-paho-mqtt-client>=2.1.1', 'requests>=2.31.0', 'orjson'],
38+
install_requires=['tb-paho-mqtt-client>=2.1.2', 'requests>=2.31.0', 'orjson'],
3939
download_url='https://github.com/thingsboard/thingsboard-python-client-sdk/archive/%s.tar.gz' % VERSION)

tb_device_mqtt.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ def check_tb_paho_mqtt_installed():
3434

3535
if not check_tb_paho_mqtt_installed():
3636
try:
37-
install_package('tb-paho-mqtt-client', version='>=2.1.1')
37+
install_package('tb-paho-mqtt-client', version='>=2.1.2')
3838
except Exception as e:
3939
raise ImportError("tb-paho-mqtt-client is not installed, please install it manually.") from e
4040

0 commit comments

Comments
 (0)