aboutsummaryrefslogtreecommitdiffstats
path: root/python
diff options
context:
space:
mode:
Diffstat (limited to 'python')
-rw-r--r--python/servo/platform/base.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/python/servo/platform/base.py b/python/servo/platform/base.py
index b328b41a0d9..6fb2f535f4e 100644
--- a/python/servo/platform/base.py
+++ b/python/servo/platform/base.py
@@ -83,8 +83,7 @@ class Base:
return False
print(" * Installing cargo-deny...")
- # cargo-deny 0.16.2 requires Rust 1.81.
- if subprocess.call(["cargo", "install", "cargo-deny", "--locked", "--version", "0.16.1"]) != 0:
+ if subprocess.call(["cargo", "install", "cargo-deny", "--locked"]) != 0:
raise EnvironmentError("Installation of cargo-deny failed.")
return True