You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The aiomqtt library depends on paho-mqtt, which has an optional dependency on PySocks for proxy support. Currently, aiomqtt does not include this optional dependency, making it difficult for users to leverage proxy functionality with aiomqtt without adding PySocks manually to requirements for their project.
Proposed Change
Add the optional dependency PySocks to the pyproject.toml of aiomqtt in [project.optional-dependencies] to align with the optional dependencies of paho-mqtt.
Details
The paho-mqtt library includes the following optional dependency in its pyproject.toml:
Summary
The
aiomqtt
library depends onpaho-mqtt
, which has an optional dependency onPySocks
for proxy support. Currently,aiomqtt
does not include this optional dependency, making it difficult for users to leverage proxy functionality withaiomqtt
without addingPySocks
manually to requirements for their project.Proposed Change
Add the optional dependency
PySocks
to thepyproject.toml
ofaiomqtt
in[project.optional-dependencies]
to align with the optional dependencies ofpaho-mqtt
.Details
The
paho-mqtt
library includes the following optional dependency in itspyproject.toml
:The text was updated successfully, but these errors were encountered: