diff --git a/dev/BUILD.bazel b/dev/BUILD.bazel index 9b0e32bb71..1aa5d60a1a 100644 --- a/dev/BUILD.bazel +++ b/dev/BUILD.bazel @@ -58,21 +58,3 @@ multirun( tags = ["manual"], visibility = ["//:__subpackages__"], ) - -alias( - name = "requirements_all.update", - actual = ":all_requirements.update", - tags = ["manual"], - visibility = ["//:__subpackages__"], -) - -# NOTE: The requirements for the pip dependencies may sometimes break the build -# process due to how `pip-compile` works (i.e. it sometimes needs to build -# wheels to resolve the `pyproject.toml` file. Hence we do not lump the -# target with the other targets above. -alias( - name = "whl_library_requirements.update", - actual = "//tools/private/update_deps:update_pip_deps", - tags = ["manual"], - visibility = ["//:__subpackages__"], -) diff --git a/docs/devguide.md b/docs/devguide.md index f8445ae524..80ce6d61f2 100644 --- a/docs/devguide.md +++ b/docs/devguide.md @@ -95,7 +95,7 @@ integration test. 1. Modify the `./python/private/pypi/requirements.txt` file and run: ``` - bazel run //dev:whl_library_requirements.update + bazel run //tools/private/update_deps:update_pip_deps ``` 1. Run the following target to update `twine` dependencies: ```