blob: c81379fd545a88d3a387ee93f1930e242cbd17ee [file] [log] [blame]
#!/usr/bin/env vpython3
# Copyright 2023 The ChromiumOS Authors
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
# [VPYTHON:BEGIN]
# python_version: "3.8"
#
# wheel: <
# name: "infra/python/wheels/mypy-py3"
# version: "version:1.2.0"
# >
# wheel: <
# name: "infra/python/wheels/typing-extensions-py3"
# version: "version:3.10.0.2"
# >
# wheel: <
# name: "infra/python/wheels/mypy-extensions-py3"
# version: "version:1.0.0"
# >
# wheel: <
# name: "infra/python/wheels/tomli-py3"
# version: "version:1.1.0"
# >
# wheel: <
# name: "infra/python/wheels/psutil/${vpython_platform}"
# version: "version:5.7.2"
# >
# [VPYTHON:END]
"""Wrapper for stable version of mypy that we control."""
# pylint: disable=import-error,no-name-in-module
from mypy.__main__ import console_entry
console_entry()