This post really helped me solve the issue:
However, in my case, I had to make a small adjustment. Instead of using:
"requirements": ["paho-mqtt=2.1.0"]`
I had to use:
"requirements": ["paho-mqtt==2.1.0"]
Using a single =
caused an error, but the double ==
worked as expected. Hope this helps someone else!
1 Like