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>
17 lines
324 B
Python
17 lines
324 B
Python
# Copyright 2019 Google LLC
|
|
#
|
|
# 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 = [
|
|
'env',
|
|
'recipe_engine/file',
|
|
'recipe_engine/path',
|
|
'recipe_engine/python',
|
|
'recipe_engine/raw_io',
|
|
'recipe_engine/step',
|
|
'run',
|
|
]
|