Skip to content

Commit cd8152a

Browse files
committed
Merge branch 'main' into type-annotations-internal
2 parents 75981ec + fee140b commit cd8152a

File tree

7 files changed

+19
-13
lines changed

7 files changed

+19
-13
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

docs/html/cli/pip.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ verbosity log will be kept. This option is empty by default. This log appends
4747
to previous logging.
4848

4949
Like all pip options, ``--log`` can also be set as an environment variable, or
50-
placed into the pip config file. See the :doc:`topics/configuration` section.
50+
placed into the pip config file. See the :doc:`../topics/configuration` section.
5151

5252
.. _`exists-action`:
5353

docs/html/cli/pip_install.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -413,14 +413,14 @@ overridden by using ``--cert`` option or by using ``PIP_CERT``,
413413
Caching
414414
-------
415415

416-
This is now covered in :doc:`../topics/caching`
416+
This is now covered in :doc:`../topics/caching`.
417417

418418
.. _`Wheel cache`:
419419

420420
Wheel Cache
421421
^^^^^^^^^^^
422422

423-
This is now covered in :doc:`../topics/caching`
423+
This is now covered in :doc:`../topics/caching`.
424424

425425
.. _`hash-checking mode`:
426426

docs/html/development/configuration.rst

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

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

src/pip/_internal/resolution/resolvelib/reporter.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,7 @@ def __init__(self) -> None:
2828
"This is taking longer than usual. You might need to provide "
2929
"the dependency resolver with stricter constraints to reduce "
3030
"runtime. If you want to abort this run, you can press "
31-
"Ctrl + C to do so. To improve how pip performs, tell us what "
32-
"happened here: https://pip.pypa.io/surveys/backtracking"
31+
"Ctrl + C to do so."
3332
),
3433
}
3534

0 commit comments

Comments
 (0)