aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorJonathon Belotti <jonathon@canva.com>2021-06-25 11:06:38 +1000
committerGitHub <noreply@github.com>2021-06-24 18:06:38 -0700
commit46b8d99bb991fa5f4790268a30f19a782ac5b831 (patch)
treeddcc5e46ddf84258902c01aa8929bf59715899f4 /README.md
parent4a0edcc8a72cfc5fa2788edaa26530e01ba52f08 (diff)
downloadbazelbuild-rules_python-46b8d99bb991fa5f4790268a30f19a782ac5b831.tar.gz
remove wording incorrectly suggesting python2 was supported by pip_install (#495)
Co-authored-by: Henry Fuller <hrofuller@gmail.com>
Diffstat (limited to 'README.md')
-rw-r--r--README.md8
1 files changed, 4 insertions, 4 deletions
diff --git a/README.md b/README.md
index 324da19..b5c85a7 100644
--- a/README.md
+++ b/README.md
@@ -108,8 +108,7 @@ used to invoke pip matches the interpreter used to run `py_binary` targets. By
default, `pip_install` uses the system command `"python3"`. This can be overridden by passing the
`python_interpreter` attribute or `python_interpreter_target` attribute to `pip_install`.
-You can have multiple `pip_install`s in the same workspace, e.g. for Python 2
-and Python 3. This will create multiple central repos that have no relation to
+You can have multiple `pip_install`s in the same workspace. This will create multiple central repos that have no relation to
one another, and may result in downloading the same wheels multiple times.
As with any repository rule, if you would like to ensure that `pip_install` is
@@ -153,13 +152,14 @@ install_deps()
### Importing `pip` dependencies with `pip_import` (legacy)
-The deprecated `pip_import` can still be used if needed.
+The deprecated `pip_import` can still be used if needed. It is the only packaging rule that supports Python 2,
+which has been [sunsetted since January 1st, 2020](https://www.python.org/doc/sunset-python-2/).
```
load("@rules_python//python/legacy_pip_import:pip.bzl", "pip_import", "pip_repositories")
# Create a central repo that knows about the dependencies needed for requirements.txt.
-pip_import( # or pip3_import
+pip_import(
name = "my_deps",
requirements = "//path/to:requirements.txt",
)