pip 25.1.1__py3-none-any.whl → 25.3__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (236) hide show
  1. pip/__init__.py +3 -3
  2. pip/_internal/__init__.py +2 -2
  3. pip/_internal/build_env.py +186 -94
  4. pip/_internal/cache.py +17 -15
  5. pip/_internal/cli/autocompletion.py +13 -4
  6. pip/_internal/cli/base_command.py +18 -7
  7. pip/_internal/cli/cmdoptions.py +57 -80
  8. pip/_internal/cli/command_context.py +4 -3
  9. pip/_internal/cli/index_command.py +11 -9
  10. pip/_internal/cli/main.py +3 -2
  11. pip/_internal/cli/main_parser.py +4 -3
  12. pip/_internal/cli/parser.py +24 -20
  13. pip/_internal/cli/progress_bars.py +19 -12
  14. pip/_internal/cli/req_command.py +57 -33
  15. pip/_internal/cli/spinners.py +81 -5
  16. pip/_internal/commands/__init__.py +5 -3
  17. pip/_internal/commands/cache.py +18 -15
  18. pip/_internal/commands/check.py +1 -2
  19. pip/_internal/commands/completion.py +1 -2
  20. pip/_internal/commands/configuration.py +26 -18
  21. pip/_internal/commands/debug.py +8 -6
  22. pip/_internal/commands/download.py +6 -10
  23. pip/_internal/commands/freeze.py +2 -3
  24. pip/_internal/commands/hash.py +1 -2
  25. pip/_internal/commands/help.py +1 -2
  26. pip/_internal/commands/index.py +15 -9
  27. pip/_internal/commands/inspect.py +4 -4
  28. pip/_internal/commands/install.py +63 -53
  29. pip/_internal/commands/list.py +35 -26
  30. pip/_internal/commands/lock.py +4 -8
  31. pip/_internal/commands/search.py +14 -12
  32. pip/_internal/commands/show.py +14 -11
  33. pip/_internal/commands/uninstall.py +1 -2
  34. pip/_internal/commands/wheel.py +7 -13
  35. pip/_internal/configuration.py +40 -27
  36. pip/_internal/distributions/base.py +6 -4
  37. pip/_internal/distributions/installed.py +8 -4
  38. pip/_internal/distributions/sdist.py +33 -27
  39. pip/_internal/distributions/wheel.py +6 -4
  40. pip/_internal/exceptions.py +78 -42
  41. pip/_internal/index/collector.py +24 -29
  42. pip/_internal/index/package_finder.py +73 -64
  43. pip/_internal/index/sources.py +17 -14
  44. pip/_internal/locations/__init__.py +18 -16
  45. pip/_internal/locations/_distutils.py +12 -11
  46. pip/_internal/locations/_sysconfig.py +5 -4
  47. pip/_internal/locations/base.py +4 -3
  48. pip/_internal/main.py +2 -2
  49. pip/_internal/metadata/__init__.py +14 -7
  50. pip/_internal/metadata/_json.py +5 -4
  51. pip/_internal/metadata/base.py +22 -27
  52. pip/_internal/metadata/importlib/_compat.py +6 -4
  53. pip/_internal/metadata/importlib/_dists.py +20 -19
  54. pip/_internal/metadata/importlib/_envs.py +9 -6
  55. pip/_internal/metadata/pkg_resources.py +11 -14
  56. pip/_internal/models/direct_url.py +24 -21
  57. pip/_internal/models/format_control.py +5 -5
  58. pip/_internal/models/installation_report.py +4 -3
  59. pip/_internal/models/link.py +39 -34
  60. pip/_internal/models/pylock.py +27 -22
  61. pip/_internal/models/search_scope.py +6 -7
  62. pip/_internal/models/selection_prefs.py +3 -3
  63. pip/_internal/models/target_python.py +10 -9
  64. pip/_internal/models/wheel.py +12 -71
  65. pip/_internal/network/auth.py +20 -22
  66. pip/_internal/network/cache.py +28 -17
  67. pip/_internal/network/download.py +169 -141
  68. pip/_internal/network/lazy_wheel.py +15 -10
  69. pip/_internal/network/session.py +32 -27
  70. pip/_internal/network/utils.py +2 -2
  71. pip/_internal/network/xmlrpc.py +2 -2
  72. pip/_internal/operations/build/build_tracker.py +10 -8
  73. pip/_internal/operations/build/wheel.py +7 -6
  74. pip/_internal/operations/build/wheel_editable.py +7 -6
  75. pip/_internal/operations/check.py +21 -26
  76. pip/_internal/operations/freeze.py +12 -9
  77. pip/_internal/operations/install/wheel.py +49 -41
  78. pip/_internal/operations/prepare.py +42 -31
  79. pip/_internal/pyproject.py +7 -69
  80. pip/_internal/req/__init__.py +12 -12
  81. pip/_internal/req/constructors.py +68 -62
  82. pip/_internal/req/req_dependency_group.py +7 -11
  83. pip/_internal/req/req_file.py +32 -36
  84. pip/_internal/req/req_install.py +64 -170
  85. pip/_internal/req/req_set.py +4 -5
  86. pip/_internal/req/req_uninstall.py +20 -17
  87. pip/_internal/resolution/base.py +3 -3
  88. pip/_internal/resolution/legacy/resolver.py +21 -20
  89. pip/_internal/resolution/resolvelib/base.py +16 -13
  90. pip/_internal/resolution/resolvelib/candidates.py +49 -37
  91. pip/_internal/resolution/resolvelib/factory.py +72 -50
  92. pip/_internal/resolution/resolvelib/found_candidates.py +11 -9
  93. pip/_internal/resolution/resolvelib/provider.py +24 -20
  94. pip/_internal/resolution/resolvelib/reporter.py +26 -11
  95. pip/_internal/resolution/resolvelib/requirements.py +8 -6
  96. pip/_internal/resolution/resolvelib/resolver.py +41 -29
  97. pip/_internal/self_outdated_check.py +19 -9
  98. pip/_internal/utils/appdirs.py +1 -2
  99. pip/_internal/utils/compat.py +7 -1
  100. pip/_internal/utils/compatibility_tags.py +17 -16
  101. pip/_internal/utils/deprecation.py +11 -9
  102. pip/_internal/utils/direct_url_helpers.py +2 -2
  103. pip/_internal/utils/egg_link.py +6 -5
  104. pip/_internal/utils/entrypoints.py +3 -2
  105. pip/_internal/utils/filesystem.py +20 -5
  106. pip/_internal/utils/filetypes.py +4 -6
  107. pip/_internal/utils/glibc.py +6 -5
  108. pip/_internal/utils/hashes.py +9 -6
  109. pip/_internal/utils/logging.py +8 -5
  110. pip/_internal/utils/misc.py +37 -45
  111. pip/_internal/utils/packaging.py +3 -2
  112. pip/_internal/utils/retry.py +7 -4
  113. pip/_internal/utils/subprocess.py +20 -17
  114. pip/_internal/utils/temp_dir.py +10 -12
  115. pip/_internal/utils/unpacking.py +31 -4
  116. pip/_internal/utils/urls.py +1 -1
  117. pip/_internal/utils/virtualenv.py +3 -2
  118. pip/_internal/utils/wheel.py +3 -4
  119. pip/_internal/vcs/bazaar.py +26 -8
  120. pip/_internal/vcs/git.py +59 -24
  121. pip/_internal/vcs/mercurial.py +34 -11
  122. pip/_internal/vcs/subversion.py +27 -16
  123. pip/_internal/vcs/versioncontrol.py +56 -51
  124. pip/_internal/wheel_builder.py +30 -101
  125. pip/_vendor/README.rst +180 -0
  126. pip/_vendor/cachecontrol/LICENSE.txt +13 -0
  127. pip/_vendor/cachecontrol/__init__.py +1 -1
  128. pip/_vendor/certifi/LICENSE +20 -0
  129. pip/_vendor/certifi/__init__.py +1 -1
  130. pip/_vendor/certifi/cacert.pem +164 -261
  131. pip/_vendor/certifi/core.py +1 -32
  132. pip/_vendor/dependency_groups/LICENSE.txt +9 -0
  133. pip/_vendor/distlib/LICENSE.txt +284 -0
  134. pip/_vendor/distlib/__init__.py +2 -2
  135. pip/_vendor/distlib/scripts.py +1 -1
  136. pip/_vendor/distro/LICENSE +202 -0
  137. pip/_vendor/idna/LICENSE.md +31 -0
  138. pip/_vendor/msgpack/COPYING +14 -0
  139. pip/_vendor/msgpack/__init__.py +2 -2
  140. pip/_vendor/packaging/LICENSE +3 -0
  141. pip/_vendor/packaging/LICENSE.APACHE +177 -0
  142. pip/_vendor/packaging/LICENSE.BSD +23 -0
  143. pip/_vendor/pkg_resources/LICENSE +17 -0
  144. pip/_vendor/pkg_resources/__init__.py +1 -1
  145. pip/_vendor/platformdirs/LICENSE +21 -0
  146. pip/_vendor/platformdirs/api.py +1 -1
  147. pip/_vendor/platformdirs/macos.py +10 -8
  148. pip/_vendor/platformdirs/version.py +16 -3
  149. pip/_vendor/pygments/LICENSE +25 -0
  150. pip/_vendor/pygments/__init__.py +1 -1
  151. pip/_vendor/pyproject_hooks/LICENSE +21 -0
  152. pip/_vendor/requests/LICENSE +175 -0
  153. pip/_vendor/requests/__version__.py +2 -2
  154. pip/_vendor/requests/adapters.py +17 -40
  155. pip/_vendor/requests/compat.py +12 -0
  156. pip/_vendor/requests/models.py +3 -1
  157. pip/_vendor/requests/sessions.py +1 -1
  158. pip/_vendor/requests/utils.py +6 -16
  159. pip/_vendor/resolvelib/LICENSE +13 -0
  160. pip/_vendor/resolvelib/__init__.py +3 -3
  161. pip/_vendor/resolvelib/reporters.py +1 -1
  162. pip/_vendor/resolvelib/resolvers/__init__.py +4 -4
  163. pip/_vendor/resolvelib/resolvers/abstract.py +3 -3
  164. pip/_vendor/resolvelib/resolvers/resolution.py +96 -10
  165. pip/_vendor/rich/LICENSE +19 -0
  166. pip/_vendor/rich/__main__.py +12 -40
  167. pip/_vendor/rich/_inspect.py +1 -1
  168. pip/_vendor/rich/_ratio.py +1 -7
  169. pip/_vendor/rich/align.py +1 -7
  170. pip/_vendor/rich/box.py +1 -7
  171. pip/_vendor/rich/console.py +25 -20
  172. pip/_vendor/rich/control.py +1 -7
  173. pip/_vendor/rich/diagnose.py +1 -0
  174. pip/_vendor/rich/emoji.py +1 -6
  175. pip/_vendor/rich/live.py +32 -7
  176. pip/_vendor/rich/live_render.py +1 -7
  177. pip/_vendor/rich/logging.py +1 -1
  178. pip/_vendor/rich/panel.py +3 -4
  179. pip/_vendor/rich/progress.py +15 -15
  180. pip/_vendor/rich/spinner.py +7 -13
  181. pip/_vendor/rich/style.py +7 -11
  182. pip/_vendor/rich/syntax.py +24 -5
  183. pip/_vendor/rich/traceback.py +32 -17
  184. pip/_vendor/tomli/LICENSE +21 -0
  185. pip/_vendor/tomli/__init__.py +1 -1
  186. pip/_vendor/tomli/_parser.py +28 -21
  187. pip/_vendor/tomli/_re.py +8 -5
  188. pip/_vendor/tomli_w/LICENSE +21 -0
  189. pip/_vendor/truststore/LICENSE +21 -0
  190. pip/_vendor/truststore/__init__.py +1 -1
  191. pip/_vendor/truststore/_api.py +15 -7
  192. pip/_vendor/truststore/_openssl.py +3 -1
  193. pip/_vendor/urllib3/LICENSE.txt +21 -0
  194. pip/_vendor/vendor.txt +11 -12
  195. {pip-25.1.1.dist-info → pip-25.3.dist-info}/METADATA +32 -11
  196. {pip-25.1.1.dist-info → pip-25.3.dist-info}/RECORD +221 -192
  197. {pip-25.1.1.dist-info → pip-25.3.dist-info}/WHEEL +1 -2
  198. pip-25.3.dist-info/entry_points.txt +4 -0
  199. {pip-25.1.1.dist-info → pip-25.3.dist-info}/licenses/AUTHORS.txt +21 -0
  200. pip-25.3.dist-info/licenses/src/pip/_vendor/cachecontrol/LICENSE.txt +13 -0
  201. pip-25.3.dist-info/licenses/src/pip/_vendor/certifi/LICENSE +20 -0
  202. pip-25.3.dist-info/licenses/src/pip/_vendor/dependency_groups/LICENSE.txt +9 -0
  203. pip-25.3.dist-info/licenses/src/pip/_vendor/distlib/LICENSE.txt +284 -0
  204. pip-25.3.dist-info/licenses/src/pip/_vendor/distro/LICENSE +202 -0
  205. pip-25.3.dist-info/licenses/src/pip/_vendor/idna/LICENSE.md +31 -0
  206. pip-25.3.dist-info/licenses/src/pip/_vendor/msgpack/COPYING +14 -0
  207. pip-25.3.dist-info/licenses/src/pip/_vendor/packaging/LICENSE +3 -0
  208. pip-25.3.dist-info/licenses/src/pip/_vendor/packaging/LICENSE.APACHE +177 -0
  209. pip-25.3.dist-info/licenses/src/pip/_vendor/packaging/LICENSE.BSD +23 -0
  210. pip-25.3.dist-info/licenses/src/pip/_vendor/pkg_resources/LICENSE +17 -0
  211. pip-25.3.dist-info/licenses/src/pip/_vendor/platformdirs/LICENSE +21 -0
  212. pip-25.3.dist-info/licenses/src/pip/_vendor/pygments/LICENSE +25 -0
  213. pip-25.3.dist-info/licenses/src/pip/_vendor/pyproject_hooks/LICENSE +21 -0
  214. pip-25.3.dist-info/licenses/src/pip/_vendor/requests/LICENSE +175 -0
  215. pip-25.3.dist-info/licenses/src/pip/_vendor/resolvelib/LICENSE +13 -0
  216. pip-25.3.dist-info/licenses/src/pip/_vendor/rich/LICENSE +19 -0
  217. pip-25.3.dist-info/licenses/src/pip/_vendor/tomli/LICENSE +21 -0
  218. pip-25.3.dist-info/licenses/src/pip/_vendor/tomli_w/LICENSE +21 -0
  219. pip-25.3.dist-info/licenses/src/pip/_vendor/truststore/LICENSE +21 -0
  220. pip-25.3.dist-info/licenses/src/pip/_vendor/urllib3/LICENSE.txt +21 -0
  221. pip/_internal/operations/build/metadata_legacy.py +0 -73
  222. pip/_internal/operations/build/wheel_legacy.py +0 -118
  223. pip/_internal/operations/install/editable_legacy.py +0 -46
  224. pip/_internal/utils/setuptools_build.py +0 -147
  225. pip/_vendor/distlib/database.py +0 -1329
  226. pip/_vendor/distlib/index.py +0 -508
  227. pip/_vendor/distlib/locators.py +0 -1295
  228. pip/_vendor/distlib/manifest.py +0 -384
  229. pip/_vendor/distlib/markers.py +0 -162
  230. pip/_vendor/distlib/metadata.py +0 -1031
  231. pip/_vendor/distlib/version.py +0 -750
  232. pip/_vendor/distlib/wheel.py +0 -1100
  233. pip/_vendor/typing_extensions.py +0 -4584
  234. pip-25.1.1.dist-info/entry_points.txt +0 -3
  235. pip-25.1.1.dist-info/top_level.txt +0 -1
  236. {pip-25.1.1.dist-info → pip-25.3.dist-info}/licenses/LICENSE.txt +0 -0
pip/_vendor/README.rst ADDED
@@ -0,0 +1,180 @@
1
+ ================
2
+ Vendoring Policy
3
+ ================
4
+
5
+ * Vendored libraries **MUST** not be modified except as required to
6
+ successfully vendor them.
7
+ * Vendored libraries **MUST** be released copies of libraries available on
8
+ PyPI.
9
+ * Vendored libraries **MUST** be available under a license that allows
10
+ them to be integrated into ``pip``, which is released under the MIT license.
11
+ * Vendored libraries **MUST** be accompanied with LICENSE files.
12
+ * The versions of libraries vendored in pip **MUST** be reflected in
13
+ ``pip/_vendor/vendor.txt``.
14
+ * Vendored libraries **MUST** function without any build steps such as ``2to3``
15
+ or compilation of C code, practically this limits to single source 2.x/3.x and
16
+ pure Python.
17
+ * Any modifications made to libraries **MUST** be noted in
18
+ ``pip/_vendor/README.rst`` and their corresponding patches **MUST** be
19
+ included ``tools/vendoring/patches``.
20
+ * Vendored libraries should have corresponding ``vendored()`` entries in
21
+ ``pip/_vendor/__init__.py``.
22
+
23
+ Rationale
24
+ =========
25
+
26
+ Historically pip has not had any dependencies except for ``setuptools`` itself,
27
+ choosing instead to implement any functionality it needed to prevent needing
28
+ a dependency. However, starting with pip 1.5, we began to replace code that was
29
+ implemented inside of pip with reusable libraries from PyPI. This brought the
30
+ typical benefits of reusing libraries instead of reinventing the wheel like
31
+ higher quality and more battle tested code, centralization of bug fixes
32
+ (particularly security sensitive ones), and better/more features for less work.
33
+
34
+ However, there are several issues with having dependencies in the traditional
35
+ way (via ``install_requires``) for pip. These issues are:
36
+
37
+ **Fragility**
38
+ When pip depends on another library to function then if for whatever reason
39
+ that library either isn't installed or an incompatible version is installed
40
+ then pip ceases to function. This is of course true for all Python
41
+ applications, however for every application *except* for pip the way you fix
42
+ it is by re-running pip. Obviously, when pip can't run, you can't use pip to
43
+ fix pip, so you're left having to manually resolve dependencies and
44
+ installing them by hand.
45
+
46
+ **Making other libraries uninstallable**
47
+ One of pip's current dependencies is the ``requests`` library, for which pip
48
+ requires a fairly recent version to run. If pip depended on ``requests`` in
49
+ the traditional manner, then we'd either have to maintain compatibility with
50
+ every ``requests`` version that has ever existed (and ever will), OR allow
51
+ pip to render certain versions of ``requests`` uninstallable. (The second
52
+ issue, although technically true for any Python application, is magnified by
53
+ pip's ubiquity; pip is installed by default in Python, in ``pyvenv``, and in
54
+ ``virtualenv``.)
55
+
56
+ **Security**
57
+ This might seem puzzling at first glance, since vendoring has a tendency to
58
+ complicate updating dependencies for security updates, and that holds true
59
+ for pip. However, given the *other* reasons for avoiding dependencies, the
60
+ alternative is for pip to reinvent the wheel itself. This is what pip did
61
+ historically. It forced pip to re-implement its own HTTPS verification
62
+ routines as a workaround for the Python standard library's lack of SSL
63
+ validation, which resulted in similar bugs in the validation routine in
64
+ ``requests`` and ``urllib3``, except that they had to be discovered and
65
+ fixed independently. Even though we're vendoring, reusing libraries keeps
66
+ pip more secure by relying on the great work of our dependencies, *and*
67
+ allowing for faster, easier security fixes by simply pulling in newer
68
+ versions of dependencies.
69
+
70
+ **Bootstrapping**
71
+ Currently most popular methods of installing pip rely on pip's
72
+ self-contained nature to install pip itself. These tools work by bundling a
73
+ copy of pip, adding it to ``sys.path``, and then executing that copy of pip.
74
+ This is done instead of implementing a "mini installer" (to reduce
75
+ duplication); pip already knows how to install a Python package, and is far
76
+ more battle-tested than any "mini installer" could ever possibly be.
77
+
78
+ Many downstream redistributors have policies against this kind of bundling, and
79
+ instead opt to patch the software they distribute to debundle it and make it
80
+ rely on the global versions of the software that they already have packaged
81
+ (which may have its own patches applied to it). We (the pip team) would prefer
82
+ it if pip was *not* debundled in this manner due to the above reasons and
83
+ instead we would prefer it if pip would be left intact as it is now.
84
+
85
+ In the longer term, if someone has a *portable* solution to the above problems,
86
+ other than the bundling method we currently use, that doesn't add additional
87
+ problems that are unreasonable then we would be happy to consider, and possibly
88
+ switch to said method. This solution must function correctly across all of the
89
+ situation that we expect pip to be used and not mandate some external mechanism
90
+ such as OS packages.
91
+
92
+
93
+ Modifications
94
+ =============
95
+
96
+ * ``setuptools`` is completely stripped to only keep ``pkg_resources``.
97
+ * ``pkg_resources`` has been modified to import its dependencies from
98
+ ``pip._vendor``, and to use the vendored copy of ``platformdirs``
99
+ rather than ``appdirs``.
100
+ * ``packaging`` has been modified to import its dependencies from
101
+ ``pip._vendor``.
102
+ * ``CacheControl`` has been modified to import its dependencies from
103
+ ``pip._vendor``.
104
+ * ``requests`` has been modified to import its other dependencies from
105
+ ``pip._vendor`` and to *not* load ``simplejson`` (all platforms) and
106
+ ``pyopenssl`` (Windows).
107
+ * ``platformdirs`` has been modified to import its submodules from ``pip._vendor.platformdirs``.
108
+
109
+ Automatic Vendoring
110
+ ===================
111
+
112
+ Vendoring is automated via the `vendoring <https://pypi.org/project/vendoring/>`_ tool from the content of
113
+ ``pip/_vendor/vendor.txt`` and the different patches in
114
+ ``tools/vendoring/patches``.
115
+ Launch it via ``vendoring sync . -v`` (requires ``vendoring>=0.2.2``).
116
+ Tool configuration is done via ``pyproject.toml``.
117
+
118
+ To update the vendored library versions, we have a session defined in ``nox``.
119
+ The command to upgrade everything is::
120
+
121
+ nox -s vendoring -- --upgrade-all --skip urllib3 --skip setuptools
122
+
123
+ At the time of writing (April 2025) we do not upgrade ``urllib3`` because the
124
+ next version is a major upgrade and will be handled as an independent PR. We also
125
+ do not upgrade ``setuptools``, because we only rely on ``pkg_resources``, and
126
+ tracking every ``setuptools`` change is unnecessary for our needs.
127
+
128
+
129
+ Managing Local Patches
130
+ ======================
131
+
132
+ The ``vendoring`` tool automatically applies our local patches, but updating,
133
+ the patches sometimes no longer apply cleanly. In that case, the update will
134
+ fail. To resolve this, take the following steps:
135
+
136
+ 1. Revert any incomplete changes in the revendoring branch, to ensure you have
137
+ a clean starting point.
138
+ 2. Run the revendoring of the library with a problem again: ``nox -s vendoring
139
+ -- --upgrade <library_name>``.
140
+ 3. This will fail again, but you will have the original source in your working
141
+ directory. Review the existing patch against the source, and modify the patch
142
+ to reflect the new version of the source. If you ``git add`` the changes the
143
+ vendoring made, you can modify the source to reflect the patch file and then
144
+ generate a new patch with ``git diff``.
145
+ 4. Now, revert everything *except* the patch file changes. Leave the modified
146
+ patch file unstaged but saved in the working tree.
147
+ 5. Re-run the vendoring. This time, it should pick up the changed patch file
148
+ and apply it cleanly. The patch file changes will be committed along with the
149
+ revendoring, so the new commit should be ready to test and publish as a PR.
150
+
151
+
152
+ Debundling
153
+ ==========
154
+
155
+ As mentioned in the rationale, we, the pip team, would prefer it if pip was not
156
+ debundled (other than optionally ``pip/_vendor/requests/cacert.pem``) and that
157
+ pip was left intact. However, if you insist on doing so, we have a
158
+ semi-supported method (that we don't test in our CI) and requires a bit of
159
+ extra work on your end in order to solve the problems described above.
160
+
161
+ 1. Delete everything in ``pip/_vendor/`` **except** for
162
+ ``pip/_vendor/__init__.py`` and ``pip/_vendor/vendor.txt``.
163
+ 2. Generate wheels for each of pip's dependencies (and any of their
164
+ dependencies) using your patched copies of these libraries. These must be
165
+ placed somewhere on the filesystem that pip can access (``pip/_vendor`` is
166
+ the default assumption).
167
+ 3. Modify ``pip/_vendor/__init__.py`` so that the ``DEBUNDLED`` variable is
168
+ ``True``.
169
+ 4. Upon installation, the ``INSTALLER`` file in pip's own ``dist-info``
170
+ directory should be set to something other than ``pip``, so that pip
171
+ can detect that it wasn't installed using itself.
172
+ 5. *(optional)* If you've placed the wheels in a location other than
173
+ ``pip/_vendor/``, then modify ``pip/_vendor/__init__.py`` so that the
174
+ ``WHEEL_DIR`` variable points to the location you've placed them.
175
+ 6. *(optional)* Update the ``pip_self_version_check`` logic to use the
176
+ appropriate logic for determining the latest available version of pip and
177
+ prompt the user with the correct upgrade message.
178
+
179
+ Note that partial debundling is **NOT** supported. You need to prepare wheels
180
+ for all dependencies for successful debundling.
@@ -0,0 +1,13 @@
1
+ Copyright 2012-2021 Eric Larson
2
+
3
+ Licensed under the Apache License, Version 2.0 (the "License");
4
+ you may not use this file except in compliance with the License.
5
+ You may obtain a copy of the License at
6
+
7
+ http://www.apache.org/licenses/LICENSE-2.0
8
+
9
+ Unless required by applicable law or agreed to in writing, software
10
+ distributed under the License is distributed on an "AS IS" BASIS,
11
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
+ See the License for the specific language governing permissions and
13
+ limitations under the License.
@@ -9,7 +9,7 @@ Make it easy to import from cachecontrol without long namespaces.
9
9
 
10
10
  __author__ = "Eric Larson"
11
11
  __email__ = "eric@ionrock.org"
12
- __version__ = "0.14.2"
12
+ __version__ = "0.14.3"
13
13
 
14
14
  from pip._vendor.cachecontrol.adapter import CacheControlAdapter
15
15
  from pip._vendor.cachecontrol.controller import CacheController
@@ -0,0 +1,20 @@
1
+ This package contains a modified version of ca-bundle.crt:
2
+
3
+ ca-bundle.crt -- Bundle of CA Root Certificates
4
+
5
+ This is a bundle of X.509 certificates of public Certificate Authorities
6
+ (CA). These were automatically extracted from Mozilla's root certificates
7
+ file (certdata.txt). This file can be found in the mozilla source tree:
8
+ https://hg.mozilla.org/mozilla-central/file/tip/security/nss/lib/ckfw/builtins/certdata.txt
9
+ It contains the certificates in PEM format and therefore
10
+ can be directly used with curl / libcurl / php_curl, or with
11
+ an Apache+mod_ssl webserver for SSL client authentication.
12
+ Just configure this file as the SSLCACertificateFile.#
13
+
14
+ ***** BEGIN LICENSE BLOCK *****
15
+ This Source Code Form is subject to the terms of the Mozilla Public License,
16
+ v. 2.0. If a copy of the MPL was not distributed with this file, You can obtain
17
+ one at http://mozilla.org/MPL/2.0/.
18
+
19
+ ***** END LICENSE BLOCK *****
20
+ @(#) $RCSfile: certdata.txt,v $ $Revision: 1.80 $ $Date: 2011/11/03 15:11:58 $
@@ -1,4 +1,4 @@
1
1
  from .core import contents, where
2
2
 
3
3
  __all__ = ["contents", "where"]
4
- __version__ = "2025.01.31"
4
+ __version__ = "2025.10.05"