blob: 4c8a0c0c19004f5ca40fdad0aa0d009f8d926137 [file] [log] [blame]
Mike Frysingerdc4adf72021-02-12 15:01:55 -05001#!/usr/bin/env vpython3
2# Copyright 2021 The Chromium OS Authors. All rights reserved.
3# Use of this source code is governed by a BSD-style license that can be
4# found in the LICENSE file.
5
6# NB: Do not add a ton of wheels here as it's shared among many programs.
7# Only list significant ones widely used by chromite.lib modules.
Mike Frysinger2691ac52021-04-14 11:38:00 -04008#
9# For info on this syntax, see:
10# https://chromium.googlesource.com/infra/infra/+/HEAD/doc/users/vpython.md#available-wheels
Mike Frysingerdc4adf72021-02-12 15:01:55 -050011
12# [VPYTHON:BEGIN]
13# python_version: "3.8"
14#
15# wheel: <
16# name: "infra/python/wheels/psutil/${vpython_platform}"
17# version: "version:5.7.2"
18# >
19# wheel: <
20# name: "infra/python/wheels/pyasn1-py2_py3"
21# version: "version:0.2.3"
22# >
23# wheel: <
24# name: "infra/python/wheels/pyasn1_modules-py2_py3"
25# version: "version:0.0.8"
26# >
27# wheel: <
28# name: "infra/python/wheels/pyyaml-py3"
29# version: "version:5.3.1"
30# >
31# wheel: <
32# name: "infra/python/wheels/rsa-py2_py3"
33# version: "version:3.4.2"
34# >
35# wheel: <
36# name: "infra/python/wheels/six-py2_py3"
37# version: "version:1.15.0"
38# >
39# [VPYTHON:END]
40
41"""Wrapper around chromite executable scripts that use vpython."""
42
43import wrapper3
44
45
46def main():
Alex Klein1699fab2022-09-08 08:46:06 -060047 wrapper3.DoMain()
Mike Frysingerdc4adf72021-02-12 15:01:55 -050048
49
Alex Klein1699fab2022-09-08 08:46:06 -060050if __name__ == "__main__":
51 main()