8000 Bump for release · Python-Repository-Hub/pip@f9914f3 · GitHub
[go: up one dir, main page]

Skip to content

Commit f9914f3

Browse files
committed
Bump for release
1 parent f9f2db2 commit f9914f3

File tree

7 files changed

+26
-11
lines changed

7 files changed

+26
-11
lines changed

NEWS.rst

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,31 @@
99
1010
.. towncrier release notes start
1111
12+
21.3.1 (2021-10-22)
13+
===================
14+
15+
16+
Bug Fixes
17+
---------
18+
19+
20+
- Always refuse installing or building projects that have no ``pyproject.toml`` nor
21+
``setup.py``. (`#10531 <https://github.com/pypa/pip/issues/10531>`_)
22+
- Tweak running-as-root detection, to check ``os.getuid`` if it exists, on Unix-y and non-Linux/non-MacOS machines. (`#10565 <https://github.com/pypa/pip/issues/10565>`_)
23+
- When installing projects with a ``pyproject.toml`` in editable mode, and the build
24+
backend does not support :pep:`660`, prepare metadata using
25+
``prepare_metadata_for_build_wheel`` instead of ``setup.py egg_info``. Also, refuse
26+
installing projects that only have a ``setup.cfg`` and no ``setup.py`` nor
27+
``pyproject.toml``. These restore the pre-21.3 behaviour. (`#10573 <https://github.com/pypa/pip/issues/10573>`_)
28+
- Restore compatibility of where configuration files are loaded from on MacOS (back to ``Library/Application Support/pip``, instead of ``Preferences/pip``). (`#10585 <https://github.com/pypa/pip/issues/10585>`_)
29+
30+
Vendored Libraries
31+
------------------
32+
33+
34+
- Upgrade pep517 to 0.12.0
35+
36+
1237
21.3 (2021-10-11)
1338
=================
1439

news/10531.bugfix.rst

Lines changed: 0 additions & 2 deletions
This file was deleted.

news/10565.bugfix.rst

Lines changed: 0 additions & 1 deletion
This file was deleted.

news/10573.bugfix.rst

Lines changed: 0 additions & 5 deletions
This file was deleted.

news/10585.bugfix.rst

Lines changed: 0 additions & 1 deletion
This file was deleted.

news/pep517.vendor.rst

Lines changed: 0 additions & 1 deletion
This file was deleted.

src/pip/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
from typing import List, Optional
22

3-
__version__ = "21.3"
3+
__version__ = "21.3.1"
44

55

66
def main(args: Optional[List[str]] = None) -> int:

0 commit comments

Comments
 (0)
0