From 74685be9c2384470c39ab8ab0e18cfc27bb8229e Mon Sep 17 00:00:00 2001 From: Gregory Szorc Date: Tue, 8 Apr 2014 16:03:35 -0700 Subject: [PATCH] NO BUG - Install RBTools 0.6 We were previously installing a pre-release of RBTools from Git. The patches we were waiting on are now in RBTools 0.6. So, install the released version from PyPI. DONTBUILD (NPOTB) --HG-- extra : rebase_source : 0c3c13c6e9ec24ae7ebcabe5b2e4fa64441b2332 --- tools/mach_commands.py | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/tools/mach_commands.py b/tools/mach_commands.py index 6ad895b82cc..2ca8475a15d 100644 --- a/tools/mach_commands.py +++ b/tools/mach_commands.py @@ -302,13 +302,7 @@ class ReviewboardToolsProvider(MachCommandBase): args = ['help'] self._activate_virtualenv() - # We install RBTools from source control because the currently released - # version doesn't have patches that make Mercurial usable in many - # scenarios. - commit = '416a728292dff3f279e5d695f48a29749b51b77a' - self.virtualenv_manager.install_pip_package( - 'git+https://github.com/reviewboard/rbtools.git@%s#egg=RBTools' % - commit) + self.virtualenv_manager.install_pip_package('RBTools==0.6') from rbtools.commands.main import main