Skip to content

Commit 5538244

Browse files
authored
Merge pull request #7195 from ananyo2012/utf8-doc
Document that "coding: utf-8" is supported in requirements.txt
2 parents 01c953b + bb047aa commit 5538244

File tree

3 files changed

+5
-0
lines changed

3 files changed

+5
-0
lines changed

docs/html/reference/pip_install.rst

+3
Original file line numberDiff line numberDiff line change
@@ -148,6 +148,9 @@ and the newline following it is effectively ignored.
148148

149149
Comments are stripped *before* line continuations are processed.
150150

151+
To interpret the requirements file in UTF-8 format add a comment
152+
``# -*- coding: utf-8 -*-`` to the first or second line of the file.
153+
151154
The following options are supported:
152155

153156
* :ref:`-i, --index-url <--index-url>`

news/7182.doc

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Document that "coding: utf-8" is supported in requirements.txt

src/pip/_internal/req/req_file.py

+1
Original file line numberDiff line numberDiff line change
@@ -509,6 +509,7 @@ def get_file_content(url, comes_from=None, session=None):
509509
# type: (str, Optional[str], Optional[PipSession]) -> Tuple[str, Text]
510510
"""Gets the content of a file; it may be a filename, file: URL, or
511511
http: URL. Returns (location, content). Content is unicode.
512+
Respects # -*- coding: declarations on the retrieved files.
512513
513514
:param url: File path or url.
514515
:param comes_from: Origin description of requirements.

0 commit comments

Comments
 (0)