Merge "Temporarily disable python precompilation for py3.11" into main

This commit is contained in:
James Farrell
2023-08-24 14:13:10 +00:00
committed by Gerrit Code Review

View File

@@ -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 {