Skip to content

Commit 68e94f4

Browse files
committed
chore: remove defunct find_requirements re-export from bazel_tools
1 parent ca98773 commit 68e94f4

File tree

3 files changed

+1
-7
lines changed

3 files changed

+1
-7
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ Unreleased changes template.
6464

6565
{#v0-0-0-removed}
6666
### Removed
67-
* Nothing removed.
67+
* `find_requirements` in `//python:defs.bzl` has been removed.
6868

6969
{#v1-0-0}
7070
## [1.0.0] - 2024-12-05

python/BUILD.bazel

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,6 @@ bzl_library(
7171
":py_runtime_info_bzl",
7272
":py_runtime_pair_bzl",
7373
":py_test_bzl",
74-
"//python/private:bazel_tools_bzl",
7574
],
7675
)
7776

python/defs.bzl

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@
1313
# limitations under the License.
1414
"""Core rules for building Python projects."""
1515

16-
load("@bazel_tools//tools/python:srcs_version.bzl", _find_requirements = "find_requirements")
1716
load("//python:py_binary.bzl", _py_binary = "py_binary")
1817
load("//python:py_info.bzl", _PyInfo = "PyInfo")
1918
load("//python:py_library.bzl", _py_library = "py_library")
@@ -34,12 +33,8 @@ current_py_toolchain = _current_py_toolchain
3433

3534
py_import = _py_import
3635

37-
# Re-exports of Starlark-defined symbols in @bazel_tools//tools/python.
38-
3936
py_runtime_pair = _py_runtime_pair
4037

41-
find_requirements = _find_requirements
42-
4338
py_library = _py_library
4439

4540
py_binary = _py_binary

0 commit comments

Comments
 (0)