Skip to content

Commit 2aac073

Browse files
authored
Merge pull request #10275 from uranusjr/release/21.2.3
2 parents 0b95378 + b974673 commit 2aac073

File tree

3 files changed

+15
-1
lines changed

3 files changed

+15
-1
lines changed

AUTHORS.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ Aleks Bunin
2222
Alethea Flowers
2323
Alex Gaynor
2424
Alex Grönholm
25+
Alex Hedges
2526
Alex Loosley
2627
Alex Morega
2728
Alex Stachowiak
@@ -564,6 +565,7 @@ Sumana Harihareswara
564565
Surbhi Sharma
565566
Sviatoslav Sydorenko
566567
Swat009
568+
Sylvain
567569
Takayuki SHIMIZUKAWA
568570
Taneli Hukkinen
569571
tbeswick

NEWS.rst

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
21.2.3 (2021-08-06)
2+
===================
3+
4+
5+
6+
Bug Fixes
7+
---------
8+
9+
- Modify the ``sysconfig.get_preferred_scheme`` function check to be
10+
compatible with CPython 3.10’s alphareleases. (`#10252 <https://github.com/pypa/pip/issues/10252>`_)
11+
12+
113
21.2.2 (2021-07-31)
214
===================
315

src/pip/_internal/locations/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -297,7 +297,7 @@ def _looks_like_deb_system_dist_packages(value: str) -> bool:
297297
we can't do anything about this Debian bug, and this detection allows us to
298298
skip the warning when needed.
299299
"""
300-
if not _looks_like_debian_patched():
300+
if not _looks_like_debian_scheme():
301301
return False
302302
if value == "/usr/lib/python3/dist-packages":
303303
return True

0 commit comments

Comments
 (0)