Changeset 267365 in webkit
- Timestamp:
- Sep 21, 2020, 1:55:50 PM (6 years ago)
- Location:
- trunk/Tools
- Files:
-
- 2 edited
-
ChangeLog (modified) (1 diff)
-
Scripts/webkitpy/thirdparty/__init__.py (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Tools/ChangeLog
r267358 r267365 1 2020-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 1 14 2020-09-21 David Kilzer <ddkilzer@apple.com> 2 15 -
trunk/Tools/Scripts/webkitpy/thirdparty/__init__.py
r266372 r267365 123 123 self._install_html5lib() 124 124 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 129 125 def _install_html5lib(self): 130 126 self._ensure_autoinstalled_dir_is_in_sys_path() … … 139 135 self._install("https://files.pythonhosted.org/packages/64/f1/1aa4c96dea14e17a955019b0fc4ac1b8dfbc50e3c90970c1fb8882e74a7b/mechanize-0.4.3.tar.gz", 140 136 "mechanize-0.4.3/mechanize") 141 self._install_six()142 137 143 138 def _install_keyring(self): … … 172 167 self._install("https://files.pythonhosted.org/packages/c0/2f/6773347277d76c5ade4414a6c3f785ef27e7f5c4b0870ec7e888e66a8d83/more-itertools-4.2.0.tar.gz", 173 168 "more-itertools-4.2.0/more_itertools") 174 self._install_six() 169 175 170 self._install("https://files.pythonhosted.org/packages/a1/e1/2d9bc76838e6e6667fde5814aa25d7feb93d6fa471bf6816daac2596e8b2/atomicwrites-1.1.5.tar.gz", 176 171 "atomicwrites-1.1.5/atomicwrites")
Note:
See TracChangeset
for help on using the changeset viewer.