From 4036c70417451d9329ad255b139f3b067e4db20d Mon Sep 17 00:00:00 2001 From: Reid 'arrdem' McKenzie Date: Mon, 21 Nov 2022 01:26:19 -0700 Subject: [PATCH] Include the wheel manifests in the manifest --- zapp/compiler/__main__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zapp/compiler/__main__.py b/zapp/compiler/__main__.py index 72f4f7f..12b3e72 100644 --- a/zapp/compiler/__main__.py +++ b/zapp/compiler/__main__.py @@ -223,7 +223,7 @@ def rezip_wheels(opts, manifest): wf = zip_wheel(opts.tmpdir, w) # Insert a new wheel source - manifest["wheels"][wn] = {"hashes": [], "source": wf} + manifest["wheels"][wn] = {"hashes": [], "source": wf, "manifest": w} # Insert the requirement manifest["requirements"][w["meta"]["Name"]] = w["meta"]["Version"]