From 1d57b129b3335e2ce6eda842a1b70b39a59f453e Mon Sep 17 00:00:00 2001 From: Ryan Kurtz Date: Thu, 30 Jan 2025 06:24:01 -0500 Subject: [PATCH] GP-0: Fix for validating Python wheel Module.manifest IP --- gradle/support/ip.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gradle/support/ip.gradle b/gradle/support/ip.gradle index f753473419..b3d52377e9 100644 --- a/gradle/support/ip.gradle +++ b/gradle/support/ip.gradle @@ -44,7 +44,7 @@ task ip { checkExternalLibsInMap(moduleManifestIpMap, project) // gets the declared external python wheels and verifies they are accounted for in the Module.manifest file - checkExternalPythonWheelsInMap(moduleManifestIpMap, p) + checkExternalPythonWheelsInMap(moduleManifestIpMap, project) // adds the ip info from the Module.manifest file to the map generated from scanning the module files. addModuleManifestIp(ipToFileMap, moduleManifestIpMap)