Files
chromium_depot_tools/yapf
Lukasz Anforowicz 49e90f2d01 Update python version requested by depot_tools/yapf.
Fixed: 469798122
Change-Id: I210ef6f00aeb6923220011695b89faeae8dd8e80
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/tools/depot_tools/+/7270985
Reviewed-by: Gavin Mak <gavinmak@google.com>
Commit-Queue: Łukasz Anforowicz <lukasza@chromium.org>
2025-12-18 14:27:16 -08:00

34 lines
647 B
Plaintext
Executable File

#!/usr/bin/env vpython3
# [VPYTHON:BEGIN]
# python_version: "3.11"
# wheel: <
# name: "infra/python/wheels/yapf-py3"
# version: "version:0.40.2"
# >
# wheel: <
# name: "infra/python/wheels/platformdirs-py3"
# version: "version:4.1.0"
# >
# wheel: <
# name: "infra/python/wheels/importlib-metadata-py3"
# version: "version:7.0.0"
# >
# wheel: <
# name: "infra/python/wheels/tomli-py3"
# version: "version:2.0.1"
# >
# wheel: <
# name: "infra/python/wheels/zipp-py3"
# version: "version:3.7.0"
# >
# [VPYTHON:END]
# -*- coding: utf-8 -*-
import sys
from yapf import run_main
if __name__ == '__main__':
sys.exit(run_main())