From 351413c62db30d14195cab1327efddfb5786c0fe Mon Sep 17 00:00:00 2001 From: UebelAndre Date: Tue, 9 Nov 2021 12:44:19 -0800 Subject: [PATCH] Fixed stable stamping of wheels --- python/packaging.bzl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/packaging.bzl b/python/packaging.bzl index ea21f976eb..d12a91e384 100644 --- a/python/packaging.bzl +++ b/python/packaging.bzl @@ -155,7 +155,7 @@ def _py_wheel_impl(ctx): # Pass workspace status files if stamping is enabled if is_stamping_enabled(ctx.attr): args.add("--volatile_status_file", ctx.version_file) - args.add("--stable_status_file", ctx.version_file) + args.add("--stable_status_file", ctx.info_file) other_inputs.extend([ctx.version_file, ctx.info_file]) args.add("--input_file_list", packageinputfile)