So if you're like me, and needed to update an ancient webapp that uses FormAlchemy, but were frustrated by the lack of a release that fixes the WebHelpers incompatibility which causes an error related to not being able to use lists/tuples for options, here's how to fix that:
git clone git@github.com:FormAlchemy/formalchemy.git
cd formalchemy
python setup.py sdist
cd dist
You're now in a folder with a file called FormAlchemy-1.6.dev0.tar.gz. Put that file somewhere online (a S3 bucket works great), and then add that URL to your requirements file. You may also need to update from WebHelpers==1.3 to WebHelpers2==2.0, but I'm not 100% certain about that.