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

Changeset 267365 in webkit


Ignore:
Timestamp:
Sep 21, 2020, 1:55:50 PM (6 years ago)
Author:
Jonathan Bedard
Message:

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

Rubber-stamped by Aakash Jain.

  • Scripts/webkitpy/thirdparty/init.py:

(AutoinstallImportHook._install_mechanize): Remove six.
(AutoinstallImportHook._install_pytest): Ditto.
(AutoinstallImportHook._install_six): Deleted.

Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r267358 r267365  
     12020-09-21  Jonathan Bedard  <jbedard@apple.com>
     2
     3        [webkitpy] Use webkitcorepy's auto installer for six
     4        https://bugs.webkit.org/show_bug.cgi?id=215770
     5        <rdar://problem/67683133>
     6
     7        Rubber-stamped by Aakash Jain.
     8
     9        * Scripts/webkitpy/thirdparty/__init__.py:
     10        (AutoinstallImportHook._install_mechanize): Remove six.
     11        (AutoinstallImportHook._install_pytest): Ditto.
     12        (AutoinstallImportHook._install_six): Deleted.
     13
    1142020-09-21  David Kilzer  <ddkilzer@apple.com>
    215
  • trunk/Tools/Scripts/webkitpy/thirdparty/__init__.py

    r266372 r267365  
    123123            self._install_html5lib()
    124124
    125     def _install_six(self):
    126         self._install("https://files.pythonhosted.org/packages/16/d8/bc6316cf98419719bd59c91742194c111b6f2e85abac88e496adefaf7afe/six-1.11.0.tar.gz",
    127                               "six-1.11.0/six.py")
    128 
    129125    def _install_html5lib(self):
    130126        self._ensure_autoinstalled_dir_is_in_sys_path()
     
    139135        self._install("https://files.pythonhosted.org/packages/64/f1/1aa4c96dea14e17a955019b0fc4ac1b8dfbc50e3c90970c1fb8882e74a7b/mechanize-0.4.3.tar.gz",
    140136                             "mechanize-0.4.3/mechanize")
    141         self._install_six()
    142137
    143138    def _install_keyring(self):
     
    172167        self._install("https://files.pythonhosted.org/packages/c0/2f/6773347277d76c5ade4414a6c3f785ef27e7f5c4b0870ec7e888e66a8d83/more-itertools-4.2.0.tar.gz",
    173168                              "more-itertools-4.2.0/more_itertools")
    174         self._install_six()
     169
    175170        self._install("https://files.pythonhosted.org/packages/a1/e1/2d9bc76838e6e6667fde5814aa25d7feb93d6fa471bf6816daac2596e8b2/atomicwrites-1.1.5.tar.gz",
    176171                              "atomicwrites-1.1.5/atomicwrites")
Note: See TracChangeset for help on using the changeset viewer.