blob: 07b0b680690a6b2fc073169b69323f8383491f1a [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.
12#
13# wheel: <
14# name: "infra/python/wheels/futures-py2_py3"
15# version: "version:3.1.1"
16# >
17# wheel: <
18# name: "infra/python/wheels/isort-py2_py3"
19# version: "version:4.3.4"
20# >
21# wheel: <
22# name: "infra/python/wheels/mccabe-py2_py3"
23# version: "version:0.6.1"
24# >
25# wheel: <
26# name: "infra/python/wheels/six-py2_py3"
John Budorick09c9cf42021-03-01 19:58:48 +000027# version: "version:1.15.0"
Owen Rodley5d099fc2020-10-15 15:38:14 +000028# >
29# wheel: <
30# name: "infra/python/wheels/toml-py3"
31# version: "version:0.10.1"
32# >
33# wheel: <
34# name: "infra/python/wheels/wrapt/${vpython_platform}"
35# version: "version:1.10.11"
36# >
37# wheel: <
38# name: "infra/python/wheels/lazy-object-proxy/${vpython_platform}"
39# version: "version:1.4.3"
40# >
41#
42# # Pylint extensions.
43#
44# wheel: <
Mike Frysinger8ca189d2020-11-05 00:14:13 +000045# name: "infra/python/wheels/pylint-quotes-py3"
46# version: "version:0.2.1"
Owen Rodley5d099fc2020-10-15 15:38:14 +000047# >
48#
49# # Pylint dependencies.
50#
51# wheel: <
52# name: "infra/python/wheels/astroid-py3"
53# version: "version:2.4.2"
54# >
55# wheel: <
56# name: "infra/python/wheels/pylint-py3"
57# version: "version:2.6.0"
58# >
59#
60# [VPYTHON:END]
61
62import sys
63
64import pylint_main
65
66sys.exit(pylint_main.main(sys.argv[1:]))