12e786730f
- Set environment variables to force usage of Python 3 in more places - Fix more compatibility issues - Mark recipes as only supporting Python 3 - Includes a roll of the infra code Change-Id: I24e3827a6402c454bdc9467d28864d360632f9e6 Reviewed-on: https://skia-review.googlesource.com/c/skia/+/470303 Reviewed-by: Ravi Mistry <rmistry@google.com> Commit-Queue: Eric Boren <borenet@google.com>
18 lines
446 B
Python
18 lines
446 B
Python
# Copyright 2016 The Chromium Authors. All rights reserved.
|
|
# Use of this source code is governed by a BSD-style license that can be
|
|
# found in the LICENSE file.
|
|
|
|
PYTHON_VERSION_COMPATIBILITY = "PY3"
|
|
|
|
DEPS = [
|
|
'builder_name_schema',
|
|
'depot_tools/bot_update',
|
|
'recipe_engine/context',
|
|
'recipe_engine/json',
|
|
'recipe_engine/path',
|
|
'recipe_engine/properties',
|
|
'recipe_engine/python',
|
|
'recipe_engine/raw_io',
|
|
'recipe_engine/step',
|
|
]
|