We have a ThingsBoard system installed, and we are currently programming a python script that uses the latest REST API, concretely tb-rest-client 3.9.0.
The issue is that we are also using other libraries like pandas and matplotlib. This creates an unsolvable collision with the dateutil library: TB library requires mandatorily the 2.5.3 of dateutil, but pandas 2.2.3 and matplotlib 3.10.1 need a newer version. Downgrading pandas or matplotlib generate more inconsistencies with other libraries like numpy, for example.
I don't understand why the latest tb-rest-client (Jan 2025) is using such an old dateutil version. I haven't found a proper combination that could make a requirements.txt works properly.
I can run the script with the warnings about the incompatible library version, but I need that the requirements.txt file ran clear because the script will go to a dock so we should not do anything out there manually, the libraries have to be installed via the requirements.txt file.
We have tried to make combinations of libraries (pandas, matplotlib, numpy) to get them to work, but with no success. Is there a way to use tb_rest-client 3.9.0 with pandas and matplotlib, so we can get a clean requirements.txt file to get all properly installed?