diff --git a/python/servo/command_base.py b/python/servo/command_base.py index 46f9f6e5ad3..801ec70b22e 100644 --- a/python/servo/command_base.py +++ b/python/servo/command_base.py @@ -337,8 +337,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()