[go: nahoru, domu]

blob: f5dbe7f423a16da0ff58605ae9938c38de276c61 [file] [log] [blame]
Robert Iannucci11a975f2017-08-31 17:31:411# This is a vpython "spec" file.
2#
3# It describes patterns for python wheel dependencies of the python scripts in
4# the chromium repo, particularly for dependencies that have compiled components
5# (since pure-python dependencies can be easily vendored into third_party).
6#
7# When vpython is invoked, it finds this file and builds a python VirtualEnv,
8# containing all of the dependencies described in this file, fetching them from
9# CIPD (the "Chrome Infrastructure Package Deployer" service). Unlike `pip`,
10# this never requires the end-user machine to have a working python extension
11# compilation environment. All of these packages are built using:
12# https://chromium.googlesource.com/infra/infra/+/master/infra/tools/dockerbuild/
13#
14# All python scripts in the repo share this same spec, to avoid dependency
15# fragmentation.
16#
17# If you have depot_tools installed in your $PATH, you can invoke python scripts
18# in this repo by running them as you normally would run them, except
19# substituting `vpython` instead of `python` on the command line, e.g.:
20# vpython path/to/script.py some --arguments
21#
22# Read more about `vpython` and how to modify this file here:
23# https://chromium.googlesource.com/infra/infra/+/master/doc/users/vpython.md
Ben Pastene006cf3e2020-02-10 23:56:5124#
25# For the definition of this spec, see:
26# https://chromium.googlesource.com/infra/luci/luci-go/+/master/vpython/api/vpython/spec.proto
Robert Iannucci11a975f2017-08-31 17:31:4127
28python_version: "2.7"
29
30# Used by:
Ben Pasteneba744c00f2019-04-26 23:59:1931# build/chromeos/test_runner.py
32wheel: <
33 name: "infra/python/wheels/jsonlines-py2_py3"
34 version: "version:1.2.0"
35>
Ben Pastene006cf3e2020-02-10 23:56:5136wheel: <
37 name: "infra/python/wheels/subprocess32/${vpython_platform}"
38 version: "version:3.5.0rc1"
39 # Only download for linux since we shouldn't be running CrOS tests on mac/win.
40 match_tag: <
41 abi: "cp27mu"
42 platform: "manylinux1_i686"
43 >
44 match_tag: <
45 abi: "cp27mu"
46 platform: "manylinux1_x86_64"
47 >
48>
Ben Pasteneba744c00f2019-04-26 23:59:1949
50# Used by:
51# build/chromeos/test_runner.py
Robert Iannucci11a975f2017-08-31 17:31:4152# third_party/catapult
Dan Jacques8bc58822017-10-17 02:00:1353#
54# This version must be compatible with the version range specified by
55# //third_party/catapult/telemetry/telemetry/internal/util/external_modules.py
Robert Iannucci11a975f2017-08-31 17:31:4156wheel: <
Nodir Turakulove2d81c32017-11-10 07:47:2757 name: "infra/python/wheels/psutil/${vpython_platform}"
Robert Iannucci11a975f2017-08-31 17:31:4158 version: "version:5.2.2"
59>
Dan Jacques8bc58822017-10-17 02:00:1360
61# Used by:
62# third_party/catapult
63#
64# This version must be compatible with the version range specified by
65# //third_party/catapult/telemetry/telemetry/internal/util/external_modules.py
66#
67# This version must also be compatible with the "numpy" version, as "cv2"
68# depends on "numpy". In this case, OpenCV@2.4.13.2 has been built against
69# numpy@1.11.3.
Dan Jacques271694702017-09-08 21:38:4870wheel: <
Nodir Turakulove2d81c32017-11-10 07:47:2771 name: "infra/python/wheels/opencv_python/${vpython_platform}"
Dan Jacques8bc58822017-10-17 02:00:1372 version: "version:2.4.13.2"
Dan Jacques271694702017-09-08 21:38:4873 match_tag: <
74 platform: "win32"
75 >
76 match_tag: <
77 platform: "win_amd64"
78 >
79 match_tag: <
80 abi: "cp27mu"
81 platform: "manylinux1_i686"
82 >
83 match_tag: <
84 abi: "cp27mu"
85 platform: "manylinux1_x86_64"
86 >
87 match_tag: <
88 platform: "macosx_10_6_intel"
89 >
90>
Dan Jacques8bc58822017-10-17 02:00:1391
92# Used by:
93# third_party/catapult
94#
95# This version must be compatible with the version range specified by
96# //third_party/catapult/telemetry/telemetry/internal/util/external_modules.py
Dan Jacques271694702017-09-08 21:38:4897wheel: <
Nodir Turakulove2d81c32017-11-10 07:47:2798 name: "infra/python/wheels/numpy/${vpython_platform}"
Dan Jacques8bc58822017-10-17 02:00:1399 version: "version:1.11.3"
Dan Jacques271694702017-09-08 21:38:48100>
Nodir Turakulove2d81c32017-11-10 07:47:27101
102# Used by:
103# third_party/catapult
104wheel: <
105 name: "infra/python/wheels/pypiwin32/${vpython_platform}"
106 version: "version:219"
107 match_tag: <
108 platform: "win32"
109 >
110 match_tag: <
111 platform: "win_amd64"
112 >
113>
Benjamin Pasteneb948e0752017-11-14 17:47:10114
115# Used by:
116# tools/perf/fetch_benchmark_deps.py
117wheel: <
118 name: "infra/python/wheels/google_compute_engine-py2_py3"
119 version: "version:2.6.2"
120>
121wheel: <
122 name: "infra/python/wheels/boto-py2_py3"
123 version: "version:2.48.0"
124>
Benjamin Pastenef88f17c2017-12-07 17:50:32125
126# Used by:
127# testing/buildbot/generate_buildbot_json_coveragetest.py
128wheel: <
129 name: "infra/python/wheels/coverage/${vpython_platform}"
130 version: "version:4.3.4"
131>
Robert Iannuccie06dc3092018-01-17 20:41:33132
133# Used by:
John Budorick0c4f3b42019-11-15 21:08:18134# build/android/pylib/local/emulator/avd.py
135# components/policy/test_support/policy_testserver.py
Robert Iannuccie06dc3092018-01-17 20:41:33136wheel: <
137 name: "infra/python/wheels/protobuf-py2_py3"
John Budorick0c4f3b42019-11-15 21:08:18138 version: "version:3.6.1"
Robert Iannuccie06dc3092018-01-17 20:41:33139>
140wheel: <
141 name: "infra/python/wheels/six-py2_py3"
142 version: "version:1.10.0"
143>
144wheel: <
Robert Iannucciecafcf22018-01-18 22:44:16145 name: "infra/python/wheels/pyftpdlib-py2_py3"
146 version: "version:0.7.0"
147>
148wheel: <
149 name: "infra/python/wheels/simplejson/${vpython_platform}"
150 version: "version:3.13.2"
Robert Iannuccie06dc3092018-01-17 20:41:33151>
Ashley Enstad500b8242018-02-09 19:40:57152
153# Used by:
154# tools/perf/core/results_dashboard.py
155wheel: <
156 name: "infra/python/wheels/httplib2-py2_py3"
157 version: "version:0.10.3"
158>
bsheedy1f5390a2018-02-28 18:37:07159
160# Used by:
Juan Antonio Navarro Perezf1d4bbb62018-11-02 01:17:08161# tools/perf/flakiness_cli
162wheel: <
163 name: "infra/python/wheels/pandas/${vpython_platform}"
164 version: "version:0.23.4"
165 match_tag: <
166 platform: "win32"
167 >
168 match_tag: <
169 platform: "win_amd64"
170 >
171 match_tag: <
172 abi: "cp27mu"
173 platform: "manylinux1_i686"
174 >
175 match_tag: <
176 abi: "cp27mu"
177 platform: "manylinux1_x86_64"
178 >
179 match_tag: <
180 platform: "macosx_10_6_intel"
181 >
182>
183wheel: <
184 name: "infra/python/wheels/pytz-py2_py3"
185 version: "version:2018.4"
186>
187wheel: <
188 name: "infra/python/wheels/python-dateutil-py2_py3"
189 version: "version:2.7.3"
190>
191
192# Used by:
Kenneth Russellc4782ec12018-03-08 06:34:17193# content/test/gpu/gpu_tests/color_profile_manager_mac.py
194# Note: there's a version of this wheel for even older OS versions,
195# but we don't need it for the GPU tests, and it looks like there are
196# bugs in the not_match_tag implementation.
197wheel: <
198 name: "infra/python/wheels/pyobjc/${vpython_platform}"
199 version: "version:4.1"
200 match_tag: < platform: "macosx_10_10_intel" >
201>
John Budoricka5725a112018-09-21 20:24:01202
203# Used by:
204# third_party/catapult
205wheel: <
206 name: "infra/python/wheels/six-py2_py3"
207 version: "version:1.10.0"
208>
209wheel: <
210 name: "infra/python/wheels/pbr-py2_py3"
211 version: "version:3.0.0"
212>
213wheel: <
214 name: "infra/python/wheels/funcsigs-py2_py3"
215 version: "version:1.0.2"
216>
217wheel: <
218 name: "infra/python/wheels/mock-py2_py3"
219 version: "version:2.0.0"
220>
kyle Juf8cdeac2019-02-07 00:10:01221
222# Used by:
223# chrome/test/chromedriver/test/run_webdriver_tests.py
224
225wheel <
226 name: "infra/python/wheels/pytest-py2_py3"
kyle Ju9afd8172019-02-20 19:15:45227 version: "version:3.6.2"
kyle Juf8cdeac2019-02-07 00:10:01228>
229
230wheel <
231 name: "infra/python/wheels/attrs-py2_py3"
232 version: "version:17.4.0"
233>
234
235wheel <
236 name: "infra/python/wheels/six-py2_py3"
237 version: "version:1.10.0"
238>
239
240wheel <
241 name: "infra/python/wheels/more-itertools-py2_py3"
242 version: "version:4.1.0"
243>
244
245wheel <
246 name: "infra/python/wheels/scandir/${vpython_platform}"
247 version: "version:1.7"
248>
249
250wheel <
251 name: "infra/python/wheels/pluggy-py2_py3"
kyle Ju9afd8172019-02-20 19:15:45252 version: "version:0.7.1"
kyle Juf8cdeac2019-02-07 00:10:01253>
254
255wheel <
256 name: "infra/python/wheels/py-py2_py3"
257 version: "version:1.5.3"
258>
259
260wheel <
261 name: "infra/python/wheels/funcsigs-py2_py3"
262 version: "version:1.0.2"
263>
264wheel: <
265 name: "infra/python/wheels/psutil/${vpython_platform}"
266 version: "version:5.2.2"
267>
268
Stephen Martinisb38b64c2019-04-10 19:30:12269# Used by:
270# tools/infra
271wheel: <
272 name: "infra/python/wheels/requests-py2_py3"
273 version: "version:2.13.0"
274>
kyle Juf8cdeac2019-02-07 00:10:01275wheel: <
276 name: "infra/python/wheels/colorama-py2_py3"
277 version: "version:0.4.1"
278>
Stephen Martinisb38b64c2019-04-10 19:30:12279wheel: <
280 name: "infra/python/wheels/mock-py2_py3"
281 version: "version:2.0.0"
282>
kyle Ju9afd8172019-02-20 19:15:45283
284wheel: <
285 name: "infra/python/wheels/atomicwrites-py2_py3"
286 version: "version:1.3.0"
287>
288
289wheel: <
290 name: "infra/python/wheels/pathlib2-py2_py3"
291 version: "version:2.3.3"
292>
Luke Zielinski218ddea32019-07-15 16:52:24293
294# Used by Web Platform Tests (WPT) codebase in
295# //third_party/blink/web_tests/external/wpt/tools/
296wheel: <
297 name: "infra/python/wheels/html5lib-py2_py3"
298 version: "version:1.0.1"
299>
300wheel: <
301 name: "infra/python/wheels/mozdebug-py2_py3"
302 version: "version:0.1.1"
303>
304wheel: <
305 name: "infra/python/wheels/mozinfo-py2_py3"
306 version: "version:1.1.0"
307>
308wheel: <
309 name: "infra/python/wheels/mozlog-py2_py3"
Luke Zielinskicf16864a2020-03-04 17:46:09310 version: "version:5.0"
Luke Zielinski218ddea32019-07-15 16:52:24311>
312wheel: <
313 name: "infra/python/wheels/mozprocess-py2_py3"
314 version: "version:0.26"
315>
316wheel: <
317 name: "infra/python/wheels/urllib3-py2_py3"
318 version: "version:1.22"
319>
320wheel: <
321 name: "infra/python/wheels/blessings-py2_py3"
322 version: "version:1.7"
323>
324wheel: <
325 name: "infra/python/wheels/mozfile-py2_py3"
326 version: "version:2.0.0"
327>
328wheel: <
329 name: "infra/python/wheels/mozterm-py2_py3"
330 version: "version:1.0.0"
331>
332wheel: <
333 name: "infra/python/wheels/webencodings-py2_py3"
334 version: "version:0.5.1"
335>
336wheel: <
337 name: "infra/python/wheels/certifi-py2_py3"
338 version: "version:2018.11.29"
339>
340wheel: <
341 name: "infra/python/wheels/chardet-py2_py3"
342 version: "version:3.0.4"
343>
344wheel: <
345 name: "infra/python/wheels/idna-py2_py3"
346 version: "version:2.8"
347>
348wheel: <
349 name: "infra/python/wheels/pillow/${vpython_platform}"
350 version: "version:6.0.0"
351 match_tag: <
352 platform: "win32"
353 >
354 match_tag: <
355 platform: "win_amd64"
356 >
357 match_tag: <
358 abi: "cp27mu"
359 platform: "manylinux1_i686"
360 >
361 match_tag: <
362 abi: "cp27mu"
363 platform: "manylinux1_x86_64"
364 >
365 match_tag: <
366 platform: "macosx_10_6_intel"
367 >
368>
ehmaldonado0fbaadc2019-10-25 21:14:30369
370# Used by:
371# //third_party/blink/tools/blinkpy/web_tests/port/server_process.py
372wheel: <
373 name: "infra/python/wheels/pywin32/${vpython_platform}"
Chan Li64806d02020-04-23 20:39:49374 version: "version:227"
ehmaldonado0fbaadc2019-10-25 21:14:30375 match_tag: <
376 platform: "win32"
377 >
378 match_tag: <
379 platform: "win_amd64"
380 >
381>