blob: a7a541b690d247a2afeebf484ebaffb9553491c4 [file] [log] [blame]
Owen Rodley5d099fc2020-10-15 15:38:14 +00001#!/usr/bin/env vpython3
2# Copyright 2019 The Chromium 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# Note: We use tags here instead of refs because refs will always hit the
7# network to see if there are any updates.
8
9# [VPYTHON:BEGIN]
10# # Third party dependencies. These are only listed because pylint itself needs
11# # them. Feel free to add/remove anything here.
Brian Ryner6cebde72022-06-16 23:09:07 +000012# python_version: "3.8"
Owen Rodley5d099fc2020-10-15 15:38:14 +000013#
14# wheel: <
15# name: "infra/python/wheels/futures-py2_py3"
16# version: "version:3.1.1"
17# >
18# wheel: <
19# name: "infra/python/wheels/isort-py2_py3"
20# version: "version:4.3.4"
21# >
22# wheel: <
23# name: "infra/python/wheels/mccabe-py2_py3"
24# version: "version:0.6.1"
25# >
26# wheel: <
27# name: "infra/python/wheels/six-py2_py3"
John Budorick09c9cf42021-03-01 19:58:48 +000028# version: "version:1.15.0"
Owen Rodley5d099fc2020-10-15 15:38:14 +000029# >
30# wheel: <
31# name: "infra/python/wheels/toml-py3"
32# version: "version:0.10.1"
33# >
34# wheel: <
35# name: "infra/python/wheels/wrapt/${vpython_platform}"
Josip Sokcevic8daaf5c2021-08-26 22:19:07 +000036# version: "version:1.12.1"
Owen Rodley5d099fc2020-10-15 15:38:14 +000037# >
38# wheel: <
39# name: "infra/python/wheels/lazy-object-proxy/${vpython_platform}"
40# version: "version:1.4.3"
41# >
Dirk Pranked60b99c2021-07-09 18:41:24 +000042# wheel: <
43# name: "infra/python/wheels/colorama-py3"
44# version: "version:0.4.1"
45# >
Owen Rodley5d099fc2020-10-15 15:38:14 +000046#
47# # Pylint extensions.
48#
49# wheel: <
Mike Frysinger8ca189d2020-11-05 00:14:13 +000050# name: "infra/python/wheels/pylint-quotes-py3"
51# version: "version:0.2.1"
Owen Rodley5d099fc2020-10-15 15:38:14 +000052# >
53#
54# # Pylint dependencies.
55#
56# wheel: <
57# name: "infra/python/wheels/astroid-py3"
58# version: "version:2.4.2"
59# >
60# wheel: <
61# name: "infra/python/wheels/pylint-py3"
62# version: "version:2.6.0"
63# >
64#
65# [VPYTHON:END]
66
67import sys
68
69import pylint_main
70
Josip Sokcevicc3e25c82022-01-11 23:33:14 +000071if __name__ == '__main__':
Mike Frysinger124bb8e2023-09-06 05:48:55 +000072 sys.exit(pylint_main.main(sys.argv[1:]))