I'm trying to deploy my discord.py bot on Heroku using my GitHub master branch, but have been unable to do because of a git error: Could not find a tag or branch 'rewrite', assuming commit
. What do I need to do to successfully install the 'rewrite' dependency?
I am currently using the files "requirements.txt", "runtime.txt", "Procfile" and "Aptfile". I've tried several combinations of dependencies in my requirements.txt file, including:
These are the contents of my files needed for Heroku:
requirements.txt: git+https://github.com/Rapptz/discord.py@rewrite
runtime.txt: python-3.6.8
Procfile: worker: python bot.py
Aptfile: git
When using anything but git+https://github.com/Rapptz/discord.py@rewrite
in attempts to get the bot deployed, heroku logs --tail
will display the error:
self.custom_red = discord.Colour.from_rgb(255, 0, 0) # ff0000
AttributeError: type object 'Colour' has no attribute 'from_rgb'
The important thing I want to emphasize is that PyCharm does not throw this error locally, even having tested that part of the code. This is how I came to the conclusion that that I am having issues with installing the 'rewrite' dependency on Heroku.
This here is the full error log on Heroku:
-----> Uninstalling stale dependencies
Uninstalling discord.py-0.16.12:
Successfully uninstalled discord.py-0.16.12
-----> Installing requirements with pip
Collecting git+https://github.com/Rapptz/discord.py@rewrite (from -r /tmp/build_9642c6bfbfd8e0f0ea526230740f0bd1/requirements.txt (line 1))
Cloning https://github.com/Rapptz/discord.py (to rewrite) to /tmp/pip-41cdp1qz-build
Could not find a tag or branch 'rewrite', assuming commit.
error: pathspec 'rewrite' did not match any file(s) known to git.
Command "git checkout -q rewrite" failed with error code 1 in /tmp/pip-41cdp1qz-build
! Push rejected, failed to compile Python app.
! Push failed
That being said, are there any suggestions to help me get past this error by successfully installing the "rewrite" dependency and thus, have my bot functional on Heroku?
Please let me know if I can provide any additional information. Any help is much appreciated.
See Question&Answers more detail:
os