File tree 3 files changed +15
-1
lines changed
src/pip/_internal/locations
3 files changed +15
-1
lines changed Original file line number Diff line number Diff line change @@ -22,6 +22,7 @@ Aleks Bunin
22
22
Alethea Flowers
23
23
Alex Gaynor
24
24
Alex Grönholm
25
+ Alex Hedges
25
26
Alex Loosley
26
27
Alex Morega
27
28
Alex Stachowiak
@@ -564,6 +565,7 @@ Sumana Harihareswara
564
565
Surbhi Sharma
565
566
Sviatoslav Sydorenko
566
567
Swat009
568
+ Sylvain
567
569
Takayuki SHIMIZUKAWA
568
570
Taneli Hukkinen
569
571
tbeswick
Original file line number Diff line number Diff line change
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
+
1
13
21.2.2 (2021-07-31)
2
14
===================
3
15
Original file line number Diff line number Diff line change @@ -297,7 +297,7 @@ def _looks_like_deb_system_dist_packages(value: str) -> bool:
297
297
we can't do anything about this Debian bug, and this detection allows us to
298
298
skip the warning when needed.
299
299
"""
300
- if not _looks_like_debian_patched ():
300
+ if not _looks_like_debian_scheme ():
301
301
return False
302
302
if value == "/usr/lib/python3/dist-packages" :
303
303
return True
You can’t perform that action at this time.
0 commit comments