Compare commits

...

7 Commits

Author SHA1 Message Date
Tzu-ping Chung a931049737
Merge d6965c09c4 into a15dd75d98 2023-12-04 11:18:24 +01:00
Tzu-ping Chung a15dd75d98
Merge pull request #12417 from xqm32/fix-outdated-pip-install 2023-11-28 16:08:29 +09:00
Tzu-ping Chung d8ab6dc6c1 Clarify news fragment 2023-11-28 15:06:25 +08:00
Qiming Xu fe10d368f6
Add end line 2023-11-28 14:25:56 +08:00
Qiming Xu 28250baffb
Fix line wrap length and add news entry 2023-11-28 14:17:51 +08:00
Qiming Xu 88ac529219
Fix outdated pip install argument description 2023-11-28 13:15:31 +08:00
Tzu-ping Chung d6965c09c4 Try to debug what changed in setuptools 2023-09-07 16:54:43 +08:00
3 changed files with 5 additions and 2 deletions

View File

@ -45,8 +45,8 @@ When looking at the items to be installed, pip checks what type of item
each is, in the following order:
1. Project or archive URL.
2. Local directory (which must contain a ``setup.py``, or pip will report
an error).
2. Local directory (which must contain a ``pyproject.toml`` or ``setup.py``,
otherwise pip will report an error).
3. Local file (a sdist or wheel format archive, following the naming
conventions for those formats).
4. A requirement, as specified in :pep:`440`.

1
news/12417.doc.rst Normal file
View File

@ -0,0 +1 @@
Fix outdated pip install argument description in documentation.

View File

@ -186,6 +186,8 @@ def test_install_special_extra(
extras={specified_extra: ["missing_pkg"]},
)
print(script.pip("list").stdout)
result = script.pip(
"install",
"--no-index",