I have a Discord bot project that is using pycord framework but since my project depends on wavelink, it installs discord.py which would conflict from one another since both are using discord module name.
Wavelink works fine with pycord without discord.py being installed. Would it be possible to not install discord.py as a dependency? Since I had to do pip3 uninstall -y py-cord discord.py && pip3 install py-cord every time. Thanks!
I have a Discord bot project that is using pycord framework but since my project depends on wavelink, it installs
discord.pywhich would conflict from one another since both are usingdiscordmodule name.Wavelink/requirements.txt
Line 2 in 85c1aaf
Wavelink works fine with pycord without discord.py being installed. Would it be possible to not install
discord.pyas a dependency? Since I had to dopip3 uninstall -y py-cord discord.py && pip3 install py-cordevery time. Thanks!