⚠ Archived content — this site is no longer maintained.   Current WebKit documentation is at docs.webkit.org.

Changeset 267728 in webkit


Ignore:
Timestamp:
Sep 28, 2020, 11:25:46 PM (6 years ago)
Author:
Jonathan Bedard
Message:

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

Unreviewed follow-up fix.

Conflict resolution at some point broke the original change.

  • Scripts/webkitpy/style/checkers/python.py: Import directly from pycodestyle.
  • Scripts/webkitpy/thirdparty/init.py:

(AutoinstallImportHook._install_pycodestyle): Deleted.

Location:
trunk/Tools
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r267726 r267728  
     12020-09-28  Jonathan Bedard  <jbedard@apple.com>
     2
     3        [webkitpy] Use webkitcorepy's auto installer for pycodestyle (Follow-up fix)
     4        https://bugs.webkit.org/show_bug.cgi?id=215427
     5        <rdar://problem/66931291>
     6
     7        Unreviewed follow-up fix.
     8
     9        Conflict resolution at some point broke the original change.
     10
     11        * Scripts/webkitpy/style/checkers/python.py: Import directly from pycodestyle.
     12        * Scripts/webkitpy/thirdparty/__init__.py:
     13        (AutoinstallImportHook._install_pycodestyle): Deleted.
     14
    1152020-09-28  Mark Lam  <mark.lam@apple.com>
    216
  • trunk/Tools/Scripts/webkitpy/style/checkers/python.py

    r265883 r267728  
    3131from webkitpy.common.system.filesystem import FileSystem
    3232from webkitpy.common.webkit_finder import WebKitFinder
    33 from webkitpy.thirdparty.autoinstalled import pycodestyle
     33
     34import pycodestyle
    3435
    3536from webkitcorepy import OutputCapture
  • trunk/Tools/Scripts/webkitpy/thirdparty/__init__.py

    r267710 r267728  
    134134                             "keyring-7.3.1/keyring")
    135135
    136     def _install_pycodestyle(self):
    137         self._install("https://files.pythonhosted.org/packages/source/p/pycodestyle/pycodestyle-2.5.0.tar.gz",
    138                              "pycodestyle-2.5.0/pycodestyle.py")
    139 
    140136    def _install_pytest_timeout(self):
    141137        self._install("https://files.pythonhosted.org/packages/cc/b7/b2a61365ea6b6d2e8881360ae7ed8dad0327ad2df89f2f0be4a02304deb2/pytest-timeout-1.2.0.tar.gz",
Note: See TracChangeset for help on using the changeset viewer.