Veershah26 / virtual-assistant

Making an Virtual Voice Assistant in Python, Cause, Why Not ?

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Suggest to loosen the dependency on pytube

Agnes-U opened this issue · comments

Hi, your project virtual-assistant(commit id: b2d2093) requires "pytube==11.0.1" in its dependency. After analyzing the source code, we found that the following versions of pytube can also be suitable, i.e., pytube 11.0.0, 11.0.2, 12.0.0, since all functions that you directly (1 APIs: pytube.main.YouTube.init) or indirectly (propagate to 5 pytube's internal APIs and 4 outsider APIs) used from the package have not been changed in these versions, thus not affecting your usage.

Therefore, we believe that it is quite safe to loose your dependency on pytube from "pytube==11.0.1" to "pytube>=11.0.0,<=12.0.0". This will improve the applicability of virtual-assistant and reduce the possibility of any further dependency conflict with other projects.

May I pull a request to further loosen the dependency on pytube?

By the way, could you please tell us whether such an automatic tool for dependency analysis may be potentially helpful for maintaining dependencies easier during your development?