diff --git a/tests/files/gr-base.txt b/tests/files/gr-base.txt
index 317b0e50b0..59055960fc 100644
--- a/tests/files/gr-base.txt
+++ b/tests/files/gr-base.txt
@@ -59,7 +59,6 @@ python-keystoneclient>=0.3.2
 python-memcached
 python-neutronclient>=2.2.3,<3
 python-novaclient>=2.12.0
-python-quantumclient>=2.2.0
 python-swiftclient>=1.2
 python-troveclient
 pytz>=2010h
diff --git a/tools/update.sh b/tools/update.sh
deleted file mode 100755
index 4f7a812ea0..0000000000
--- a/tools/update.sh
+++ /dev/null
@@ -1,30 +0,0 @@
-#!/bin/bash
-
-GIT_DIR=${GIT_DIR-~/git/openstack}
-FETCH_REMOTE=${FETCH_REMOTE-}
-REMOTE_BRANCH=${REMOTE_BRANCH-gerrit/master}
-PROJECTS=${PROJECTS-"nova glance keystone cinder quantum horizon swift heat ceilometer oslo-incubator python-novaclient python-glanceclient python-keystoneclient python-cinderclient python-quantumclient python-swiftclient"}
-
-fetch() {
-    for p in $PROJECTS; do
-        cd $GIT_DIR/$p
-        git fetch gerrit
-    done
-}
-
-concat() {
-    path=$1; shift
-
-    for p in $PROJECTS; do
-        cd $GIT_DIR/$p
-        git cat-file -p $REMOTE_BRANCH:$path
-    done | tr A-Z a-z| sed 's/#.*$//; s/ *$//; /^ *$/d' | sort | uniq
-}
-
-[ -n "$FETCH_REMOTE" ] && fetch
-
-concat tools/pip-requires > $GIT_DIR/requirements/tools/pip-requires
-
-(sed p $GIT_DIR/requirements/tools/pip-requires;
-    concat tools/test-requires ) |
-sort | uniq -u > $GIT_DIR/requirements/tools/test-requires