Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ The base ``Command`` has the following methods:

Some commands have more specialized behavior, (see for example ``pip index``).
These commands instead will inherit from ``IndexGroupCommand``, which inherits from ``Command``
and ``SessionCommandMixin`` to build build the pip session for the corresponding requests.
and ``SessionCommandMixin`` to build the pip session for the corresponding requests.

Lastly, ``RequirementCommand``, which inherits from ``IndexGroupCommand`` is the base class
for those commands which make use of requirements in any form, like ``pip install``.
Expand Down
2 changes: 1 addition & 1 deletion docs/html/development/ci.rst
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Continuous Integration
Supported interpreters
======================

pip support a variety of Python interpreters:
pip supports a variety of Python interpreters:

- CPython 3.9
- CPython 3.10
Expand Down
4 changes: 2 additions & 2 deletions docs/html/topics/authentication.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ man pages][netrc-docs].
## Keyring Support

pip supports loading credentials stored in your keyring using the
{pypi}`keyring` library, which can be enabled py passing `--keyring-provider`
{pypi}`keyring` library, which can be enabled by passing `--keyring-provider`
with a value of `auto`, `disabled`, `import`, or `subprocess`. The default
value `auto` respects `--no-input` and does not query keyring at all if the option
is used; otherwise it tries the `import`, `subprocess`, and `disabled`
Expand All @@ -84,7 +84,7 @@ configure its usage would be to use a configuration instead:
```bash
$ pip config set --global global.keyring-provider subprocess

# A different user on the same system which has PYTHONPATH configured and and
# A different user on the same system which has PYTHONPATH configured and
# wanting to use keyring installed that way could then run
$ pip config set --user global.keyring-provider import

Expand Down