GP-0: Validating Python wheel Module.manifest IP

This commit is contained in:
Ryan Kurtz
2025-01-29 13:09:04 -05:00
parent 3c68902436
commit 0d24ae38aa
3 changed files with 22 additions and 2 deletions
+6 -1
View File
@@ -80,8 +80,13 @@ rootProject.assembleDistribution {
}
ext.distributePyDep = { name ->
Set<File> wheelFiles = PYTHON_DEPS.get(project)
if (wheelFiles == null) {
wheelFiles = new HashSet<>()
PYTHON_DEPS.put(project, wheelFiles)
}
File dep = findPyDep(name)
PYTHON_DEPS.add(dep)
wheelFiles.add(dep)
def zipPath = getZipPath(project)
rootProject.assembleDistribution {
into ("${zipPath}/pypkg/dist") {