Apparently there's a long-standing bug in Flask-Bootstrap that where quick_form
omits the label for radio button fields. I found a fix for it. First I applied the fix to my local pip installation of Flask-Bootstrap. Finding that worked, I forked the repository, applied to fix to my fork, executed pip to uninstall Flask-Bootstrap and install my fork.
But pip freeze
lists Flask-Bootstrap
and has nothing about my fork of it.
I need requirements.txt
to use my fork instead of the original version. How can I do this? I know that I can add a line in requirements.txt
to indicate installation from a repository. But I'd rather avoid doing this manually every time I install a new Flask module.
Is there a way to automate the process of including the properly line in requirements.txt
?