diff options
| author | 2023-08-24 14:13:10 +0000 | |
|---|---|---|
| committer | 2023-08-24 14:13:10 +0000 | |
| commit | c36312a64d051d9b927db0c5721f5aeb60c7ee93 (patch) | |
| tree | 589fb611155ddc79649d01b590f3b40a03ec5ff8 /python/python.go | |
| parent | 80f6b2147f542397275ce5847a377576bd88c2c2 (diff) | |
| parent | b1094d602bbd1fc6d4d60ace63ff82a92b479b23 (diff) | |
Merge "Temporarily disable python precompilation for py3.11" into main
Diffstat (limited to 'python/python.go')
| -rw-r--r-- | python/python.go | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/python/python.go b/python/python.go index 6c837a888..e6bdeee2c 100644 --- a/python/python.go +++ b/python/python.go @@ -454,7 +454,8 @@ func (p *PythonLibraryModule) GenerateAndroidBuildActions(ctx android.ModuleCont // generate the zipfile of all source and data files p.srcsZip = p.createSrcsZip(ctx, pkgPath) - p.precompiledSrcsZip = p.precompileSrcs(ctx) + // TODO(b/278602456): precompilation temporarily disabled for python3.11 upgrade + p.precompiledSrcsZip = p.srcsZip //p.precompileSrcs(ctx) } func isValidPythonPath(path string) error { |