From c01c4d1f33edf1e1dba7a23c81ad601b61abd9d9 Mon Sep 17 00:00:00 2001 From: vjabrayilov Date: Wed, 13 Dec 2023 16:18:08 -0700 Subject: [PATCH] change par_binary -> py_binary As par_binary is deprecated, it fails to compile with newer bazel versions. --- experiments/scripts/BUILD | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/experiments/scripts/BUILD b/experiments/scripts/BUILD index 4a91bc3e..2a05664f 100644 --- a/experiments/scripts/BUILD +++ b/experiments/scripts/BUILD @@ -26,7 +26,7 @@ py_library( ) # Runs the centralized queuing experiments. -par_binary( +py_binary( name = "centralized_queuing", srcs = [ "centralized_queuing.py", @@ -39,7 +39,7 @@ par_binary( ) # Runs the Shinjuku experiments. -par_binary( +py_binary( name = "shinjuku", srcs = [ "shinjuku.py", @@ -52,7 +52,7 @@ par_binary( ) # Runs the Shenango experiments. -par_binary( +py_binary( name = "shenango", srcs = [ "shenango.py", @@ -65,7 +65,7 @@ par_binary( ) # Runs the Shinjuku+Shenango experiments. -par_binary( +py_binary( name = "shinjuku_shenango", srcs = [ "shinjuku_shenango.py",