I want to place the bot discord written on rewrite, and not on the usual discord.py, but it seems that Heroku uses the usual discord.py just so the bot does not start. How to fix? Maybe you need to change something in pipfile (below)?
[[source]] url = "https://pypi.python.org/simple" verify_ssl = true [packages] django = "*" gunicorn = "*" django-heroku = "*" discord = "*" [requires] python_version = "3.6" UPD: I solved the problem by writing in the requirements:
-e git + https://github.com/Rapptz/discord.py@rewrite#egg=discord.py[voice]