aboutsummaryrefslogtreecommitdiff
path: root/examples/pip_install/BUILD
diff options
context:
space:
mode:
authorGreg Roodt <groodt@gmail.com>2022-09-25 06:04:15 +1000
committerGitHub <noreply@github.com>2022-09-25 06:04:15 +1000
commitf0efec5cf8c0ae16483ee677a09ec70737a01bf5 (patch)
tree79e958ef1e97b1941260b84283db615678a153dc /examples/pip_install/BUILD
parenta364fcac97b7ccadb5c5a703ec8ce2f2ecef0d97 (diff)
downloadbazelbuild-rules_python-f0efec5cf8c0ae16483ee677a09ec70737a01bf5.tar.gz
Standardise on pip_parse (#807)upstream/0.13.0
Diffstat (limited to 'examples/pip_install/BUILD')
-rw-r--r--examples/pip_install/BUILD6
1 files changed, 3 insertions, 3 deletions
diff --git a/examples/pip_install/BUILD b/examples/pip_install/BUILD
index ad983b2..35f5a93 100644
--- a/examples/pip_install/BUILD
+++ b/examples/pip_install/BUILD
@@ -88,9 +88,9 @@ py_test(
genquery(
name = "yamllint_lib_by_version",
expression = """
- attr("tags", "\\bpypi_version=1.26.3\\b", "@pip//pypi__yamllint")
+ attr("tags", "\\bpypi_version=1.26.3\\b", "@pip_yamllint//:pkg")
intersect
- attr("tags", "\\bpypi_name=yamllint\\b", "@pip//pypi__yamllint")
+ attr("tags", "\\bpypi_name=yamllint\\b", "@pip_yamllint//:pkg")
""",
scope = [requirement("yamllint")],
)
@@ -99,7 +99,7 @@ write_file(
name = "write_expected",
out = "expected",
content = [
- "@pip//pypi__yamllint:pypi__yamllint",
+ "@pip_yamllint//:pkg",
"",
],
)