Title: [221825] trunk/Tools
Revision
221825
Author
[email protected]
Date
2017-09-09 09:58:46 -0700 (Sat, 09 Sep 2017)

Log Message

Unreviewed, rolling out r221801.

This change introduced a webkitpy test failure.

Reverted changeset:

"bisect-builds doesn't work due to missing requests module"
https://bugs.webkit.org/show_bug.cgi?id=175709
http://trac.webkit.org/changeset/221801

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (221824 => 221825)


--- trunk/Tools/ChangeLog	2017-09-09 16:56:53 UTC (rev 221824)
+++ trunk/Tools/ChangeLog	2017-09-09 16:58:46 UTC (rev 221825)
@@ -1,5 +1,17 @@
 2017-09-09  Ryan Haddad  <[email protected]>
 
+        Unreviewed, rolling out r221801.
+
+        This change introduced a webkitpy test failure.
+
+        Reverted changeset:
+
+        "bisect-builds doesn't work due to missing requests module"
+        https://bugs.webkit.org/show_bug.cgi?id=175709
+        http://trac.webkit.org/changeset/221801
+
+2017-09-09  Ryan Haddad  <[email protected]>
+
         Unreviewed, rolling out r221776.
 
         This change caused wsl-tests.yaml/Test.js to time out on Debug

Modified: trunk/Tools/Scripts/bisect-builds (221824 => 221825)


--- trunk/Tools/Scripts/bisect-builds	2017-09-09 16:56:53 UTC (rev 221824)
+++ trunk/Tools/Scripts/bisect-builds	2017-09-09 16:58:46 UTC (rev 221825)
@@ -30,12 +30,12 @@
 import bisect
 import math
 import os
+import requests
 import shutil
 import subprocess
 import sys
 import tempfile
 import urlparse
-import webkitpy.thirdparty.autoinstalled.requests as requests
 
 REST_API_URL = 'https://q1tzqfy48e.execute-api.us-west-2.amazonaws.com/v2/'
 REST_API_ENDPOINT = 'archives/'

Modified: trunk/Tools/Scripts/webkitpy/thirdparty/__init__.py (221824 => 221825)


--- trunk/Tools/Scripts/webkitpy/thirdparty/__init__.py	2017-09-09 16:56:53 UTC (rev 221824)
+++ trunk/Tools/Scripts/webkitpy/thirdparty/__init__.py	2017-09-09 16:58:46 UTC (rev 221825)
@@ -106,13 +106,7 @@
             self.install_chromedriver()
         elif '.geckodriver' in fullname:
             self.install_geckodriver()
-        elif '.requests' in fullname:
-            self._install_requests()
 
-    def _install_requests(self):
-        self._install("https://pypi.python.org/packages/b0/e1/eab4fc3752e3d240468a8c0b284607899d2fbfb236a56b7377a329aa8d09/requests-2.18.4.tar.gz#md5=081412b2ef79bdc48229891af13f4d82",
-                             "requests-2.18.4/requests")
-
     def _install_mechanize(self):
         self._install("http://pypi.python.org/packages/source/m/mechanize/mechanize-0.2.5.tar.gz",
                              "mechanize-0.2.5/mechanize")

Modified: trunk/Tools/Scripts/webkitpy/thirdparty/__init___unittest.py (221824 => 221825)


--- trunk/Tools/Scripts/webkitpy/thirdparty/__init___unittest.py	2017-09-09 16:56:53 UTC (rev 221824)
+++ trunk/Tools/Scripts/webkitpy/thirdparty/__init___unittest.py	2017-09-09 16:58:46 UTC (rev 221825)
@@ -63,4 +63,3 @@
         import webkitpy.thirdparty.autoinstalled.mechanize
         import webkitpy.thirdparty.autoinstalled.pylint
         import webkitpy.thirdparty.autoinstalled.pep8
-        import webkitpy.thirdparty.autoinstalled.requests
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to