diff options
author | 2025-02-10 16:50:16 -0800 | |
---|---|---|
committer | 2025-02-10 16:50:16 -0800 | |
commit | 4fe00974d9ebaf6eaf9e1b6c41c39e290e74cfe9 (patch) | |
tree | f5d72bae46ca12f7598f342d35f9999c9c256a2e /python | |
parent | 95a8fe5967f2ce07fce515b7887ad938724e25e6 (diff) | |
parent | 7ca4d103891b6a508266d8b37def22de535a1811 (diff) |
Merge "Temporarily disable python precompilation for py3.13" into main
Diffstat (limited to 'python')
-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 10c11ada0..f8f41658f 100644 --- a/python/python.go +++ b/python/python.go @@ -400,7 +400,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/388344853): precompilation temporarily disabled for python3.13 upgrade + p.precompiledSrcsZip = p.srcsZip //p.precompileSrcs(ctx) android.SetProvider(ctx, PythonLibraryInfoProvider, PythonLibraryInfo{ SrcsPathMappings: p.getSrcsPathMappings(), |