aboutsummaryrefslogtreecommitdiffstats
path: root/servo/management/commands/upgrade.py
diff options
context:
space:
mode:
authorFilipp Lepalaan <filipp@mac.com>2016-05-01 23:54:58 +0300
committerFilipp Lepalaan <filipp@mac.com>2016-05-01 23:54:58 +0300
commit47cc21441b437fe148c72bd181059728b47bdf9b (patch)
treecd96c0a704cb31837c6e0b2e9affe998d24acd7b /servo/management/commands/upgrade.py
parent65df597329bbb602dd382695c639aab3776123ea (diff)
parent82e1fe63447f5c4d33d8a3ed7c365e7eab1006c0 (diff)
downloadServo-47cc21441b437fe148c72bd181059728b47bdf9b.tar.gz
Servo-47cc21441b437fe148c72bd181059728b47bdf9b.tar.bz2
Servo-47cc21441b437fe148c72bd181059728b47bdf9b.zip
Merge branch 'develop'
Diffstat (limited to 'servo/management/commands/upgrade.py')
-rw-r--r--servo/management/commands/upgrade.py12
1 files changed, 12 insertions, 0 deletions
diff --git a/servo/management/commands/upgrade.py b/servo/management/commands/upgrade.py
new file mode 100644
index 0000000..f232e73
--- /dev/null
+++ b/servo/management/commands/upgrade.py
@@ -0,0 +1,12 @@
+# -*- coding: utf-8 -*-
+
+import subprocess
+from django.core.management.base import BaseCommand
+
+
+class Command(BaseCommand):
+
+ help = "Upgrade requirements"
+
+ def handle(self, *args, **options):
+ subprocess.call(['pip', 'install', '-U', '-r', 'requirements.pip'])