blob: ae30b899b3ccdedbfb1451da2365b0d23d4b81a0 [file] [log] [blame]
Josip Sokcevic59e32962021-10-11 22:36: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"
Josip Sokcevic59e32962021-10-11 22:36: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"
28# version: "version:1.15.0"
29# >
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}"
36# version: "version:1.12.1"
37# >
38# wheel: <
39# name: "infra/python/wheels/lazy-object-proxy/${vpython_platform}"
40# version: "version:1.4.3"
41# >
42# wheel: <
43# name: "infra/python/wheels/colorama-py3"
44# version: "version:0.4.1"
45# >
46#
47# # Pylint extensions.
48#
49# wheel: <
50# name: "infra/python/wheels/pylint-quotes-py3"
51# version: "version:0.2.1"
52# >
53#
54# # Pylint dependencies.
55#
56# wheel: <
57# name: "infra/python/wheels/astroid-py3"
Chenlin Fan9a36d692021-10-15 01:31:00 +000058# version: "version:2.5.3"
Josip Sokcevic59e32962021-10-11 22:36:14 +000059# >
60# wheel: <
61# name: "infra/python/wheels/pylint-py3"
62# version: "version:2.7.4"
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:]))