Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
3 changes: 3 additions & 0 deletions docs/changelog/1149.doc.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
Write the Windows pip configuration path as ``%APPDATA%\pip\pip.ini`` in the environment variables reference and the
corporate environments how-to; the backslashes were doubled inside an inline literal, where reStructuredText does not
treat them as escapes, so the rendered docs showed an invalid path - by :user:`aroh3006`

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is way too much for a minor docs mixup. :)

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

makes sense. I'll keep the explanations shorter.

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks!

2 changes: 1 addition & 1 deletion docs/how-to/corporate-environments.rst
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,7 @@ On Linux/macOS (``~/.config/pip/pip.conf``):
trusted-host = pypi.company.com
cert = /path/to/company-ca-bundle.crt

On Windows (``%APPDATA%\\pip\\pip.ini``):
On Windows (``%APPDATA%\pip\pip.ini``):

.. code-block:: ini

Expand Down
2 changes: 1 addition & 1 deletion docs/reference/environment-variables.rst
Original file line number Diff line number Diff line change
Expand Up @@ -292,7 +292,7 @@ This is convenient if you always use the same settings.

**Linux/macOS**: ``~/.config/pip/pip.conf``

**Windows**: ``%APPDATA%\\pip\\pip.ini``
**Windows**: ``%APPDATA%\pip\pip.ini``

Example configuration:

Expand Down
Loading