Added pip and cabal upgrade

This commit is contained in:
Veit Heller
2015-02-04 17:24:24 +01:00
parent b39d3a65f1
commit 3983347657
3 changed files with 13 additions and 0 deletions

5
pip-upgrade Normal file
View File

@@ -0,0 +1,5 @@
import pip
from subprocess import call
for dist in pip.get_installed_distributions():
call("pip install --upgrade " + dist.project_name, shell=True)