From 9cdaeb257b746d1a8b7a5e5b2127033edd87763a Mon Sep 17 00:00:00 2001 From: Jonathon Belotti Date: Tue, 2 Mar 2021 22:04:27 +1100 Subject: [PATCH] remove TODO now that rules_python 0.0.3 (and 0.1.0) have been released --- tools/bazel_integration_test/test_runner.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/tools/bazel_integration_test/test_runner.py b/tools/bazel_integration_test/test_runner.py index 20f8256c09..3adb4b7abe 100644 --- a/tools/bazel_integration_test/test_runner.py +++ b/tools/bazel_integration_test/test_runner.py @@ -28,8 +28,6 @@ def modify_WORKSPACE(wksp, distro_path): 'url = "file://%s"' % r.Rlocation(distro_path), content) content = re.sub(r'sha256 = "', '#\1', content) - # TODO(alexeagle): can remove this after 0.0.3 since the strip_prefix was an accident during 0.0.2 release - content = re.sub(r'strip_prefix = "', '#\1', content) with open(wksp, 'w') as wksp_file: wksp_file.write(content)