Title: [267710] trunk/Tools
Revision
267710
Author
[email protected]
Date
2020-09-28 12:54:12 -0700 (Mon, 28 Sep 2020)

Log Message

[webkitpy] Use webkitcorepy's auto installer for pycodestyle
https://bugs.webkit.org/show_bug.cgi?id=215427
<rdar://problem/66931291>

Reviewed by Darin Adler.

* Scripts/webkitpy/__init__.py: Add pycodestyle.
* Scripts/webkitpy/thirdparty/__init__.py:
(AutoinstallImportHook.find_module): Remove pycodestyle.

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (267709 => 267710)


--- trunk/Tools/ChangeLog	2020-09-28 18:23:58 UTC (rev 267709)
+++ trunk/Tools/ChangeLog	2020-09-28 19:54:12 UTC (rev 267710)
@@ -1,3 +1,15 @@
+2020-09-28  Jonathan Bedard  <[email protected]>
+
+        [webkitpy] Use webkitcorepy's auto installer for pycodestyle
+        https://bugs.webkit.org/show_bug.cgi?id=215427
+        <rdar://problem/66931291>
+
+        Reviewed by Darin Adler.
+
+        * Scripts/webkitpy/__init__.py: Add pycodestyle.
+        * Scripts/webkitpy/thirdparty/__init__.py:
+        (AutoinstallImportHook.find_module): Remove pycodestyle.
+
 2020-09-28  Devin Rousso  <[email protected]>
 
         [iOS] unable to airplay directly loaded fullscreen video

Modified: trunk/Tools/Scripts/webkitpy/__init__.py (267709 => 267710)


--- trunk/Tools/Scripts/webkitpy/__init__.py	2020-09-28 18:23:58 UTC (rev 267709)
+++ trunk/Tools/Scripts/webkitpy/__init__.py	2020-09-28 19:54:12 UTC (rev 267710)
@@ -34,6 +34,7 @@
 AutoInstall.register(Package('mozprocess', Version(1, 2, 0)))
 AutoInstall.register(Package('mozlog', Version(6, 1)))
 AutoInstall.register(Package('mozterm', Version(1, 0, 0)))
+AutoInstall.register(Package('pycodestyle', Version(2, 5, 0)))
 AutoInstall.register(Package('selenium', Version(3, 141, 0)))
 AutoInstall.register(Package('toml', Version(0, 10, 1)))
 

Modified: trunk/Tools/Scripts/webkitpy/thirdparty/__init__.py (267709 => 267710)


--- trunk/Tools/Scripts/webkitpy/thirdparty/__init__.py	2020-09-28 18:23:58 UTC (rev 267709)
+++ trunk/Tools/Scripts/webkitpy/thirdparty/__init__.py	2020-09-28 19:54:12 UTC (rev 267710)
@@ -95,8 +95,6 @@
         # order for autoinstall_everything(), below, to work properly.
         if '.mechanize' in fullname:
             self._install_mechanize()
-        elif '.pycodestyle' in fullname:
-            self._install_pycodestyle()
         elif '.pylint' in fullname:
             self._install_pylint()
         elif '.buildbot' in fullname:
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to