blob: 041a92bae1d5dba579ed40d0c354826316c2d6e2 [file] [log] [blame]
Mike Frysinger53297792019-08-20 21:32:33 +00001#!/usr/bin/env vpython
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/configparser-py2_py3"
15# version: "version:3.5.0"
16# >
17# wheel: <
18# name: "infra/python/wheels/futures-py2_py3"
19# version: "version:3.1.1"
20# >
21# wheel: <
22# name: "infra/python/wheels/isort-py2_py3"
23# version: "version:4.3.4"
24# >
25# wheel: <
26# name: "infra/python/wheels/wrapt/${vpython_platform}"
27# version: "version:1.10.11"
28# >
29# wheel: <
30# name: "infra/python/wheels/backports_functools_lru_cache-py2_py3"
31# version: "version:1.5"
32# >
33# wheel: <
34# name: "infra/python/wheels/lazy-object-proxy/${vpython_platform}"
35# version: "version:1.3.1"
36# >
37# wheel: <
38# name: "infra/python/wheels/singledispatch-py2_py3"
39# version: "version:3.4.0.3"
40# >
41# wheel: <
42# name: "infra/python/wheels/enum34-py2"
43# version: "version:1.1.6"
44# >
45# wheel: <
46# name: "infra/python/wheels/mccabe-py2_py3"
47# version: "version:0.6.1"
48# >
49# wheel: <
50# name: "infra/python/wheels/six-py2_py3"
51# version: "version:1.10.0"
52# >
53#
54# # Pylint dependencies.
55#
56# wheel: <
57# name: "infra/python/wheels/astroid-py2_py3"
58# version: "version:1.6.6"
59# >
60#
61# wheel: <
62# name: "infra/python/wheels/pylint-py2_py3"
63# version: "version:1.8.4"
64# >
65# [VPYTHON:END]
66
67import sys
68
69import pylint_main
70
71sys.exit(pylint_main.main(sys.argv[1:]))