aboutsummaryrefslogtreecommitdiffstats
path: root/python/servo/command_base.py
diff options
context:
space:
mode:
authorddh <dianehosfelt@gmail.com>2018-05-30 22:42:33 +0100
committerddh <dianehosfelt@gmail.com>2018-05-30 22:42:33 +0100
commit4dfe43e72d6237d3857b129520675ed9dbc8c4bc (patch)
tree30604e7c5f61984542af58c1046eb4dad3de8ce4 /python/servo/command_base.py
parent9f142b9c22f77c0cce8ed9d25831314a20ac8bbb (diff)
downloadservo-4dfe43e72d6237d3857b129520675ed9dbc8c4bc.tar.gz
servo-4dfe43e72d6237d3857b129520675ed9dbc8c4bc.zip
updated rustup requirement
Diffstat (limited to 'python/servo/command_base.py')
-rw-r--r--python/servo/command_base.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/python/servo/command_base.py b/python/servo/command_base.py
index 9387535ec81..87a481f59fe 100644
--- a/python/servo/command_base.py
+++ b/python/servo/command_base.py
@@ -309,8 +309,8 @@ class CommandBase(object):
return 1
raise
version = tuple(map(int, re.match("rustup (\d+)\.(\d+)\.(\d+)", version_line).groups()))
- if version < (1, 8, 0):
- print "rustup is at version %s.%s.%s, Servo requires 1.8.0 or more recent." % version
+ if version < (1, 11, 0):
+ print "rustup is at version %s.%s.%s, Servo requires 1.11.0 or more recent." % version
print "Try running 'rustup self update'."
return 1
toolchain = self.toolchain()