#!/usr/bin/env fish
#
function pip-upgrade-venv -d "Upgrade virtualenv"
pip freeze | cut -d'=' -f1 | xargs -n1 pip install -U
end