Skip to content

Commit 70667da

Browse files
committed
Fix package bazel file again
1 parent 84740dc commit 70667da

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/script.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ def gen_bzl_config(tag: str, dist: Path) -> None:
4848
packages_lock_name = "packages_" + tag.replace(".", "_")
4949
packages_lock_name_upper = packages_lock_name.upper()
5050
info = {"tag": tag, "lockfile_hash": lock_hash, "all_wheels_hash": all_wheels_hash}
51-
json_contents = {"info": info, "packages": imports_to_test}
51+
json_contents = {"info": info, "import_tests": imports_to_test}
5252
packages_lock_json = indent(json.dumps(json_contents, indent=3, sort_keys=True), " "*12).strip()
5353
Path(dist / (packages_lock_name + ".bzl")).write_text(
5454
dedent(

0 commit comments

Comments
 (0)