pip 25.0.1__tar.gz → 25.1.1__tar.gz

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 (611) hide show
  1. {pip-25.0.1 → pip-25.1.1}/AUTHORS.txt +15 -0
  2. {pip-25.0.1 → pip-25.1.1}/MANIFEST.in +4 -3
  3. {pip-25.0.1 → pip-25.1.1}/NEWS.rst +125 -0
  4. {pip-25.0.1 → pip-25.1.1}/PKG-INFO +4 -4
  5. pip-25.1.1/build-project/.python-version +1 -0
  6. {pip-25.0.1 → pip-25.1.1/build-project}/build-project.py +3 -1
  7. {pip-25.0.1 → pip-25.1.1/build-project}/build-requirements.txt +3 -3
  8. {pip-25.0.1 → pip-25.1.1}/docs/html/cli/index.md +8 -0
  9. {pip-25.0.1 → pip-25.1.1}/docs/html/cli/pip_download.rst +5 -0
  10. pip-25.1.1/docs/html/cli/pip_index.rst +55 -0
  11. pip-25.1.1/docs/html/cli/pip_lock.rst +50 -0
  12. {pip-25.0.1 → pip-25.1.1}/docs/html/conf.py +21 -11
  13. {pip-25.0.1 → pip-25.1.1}/docs/html/development/ci.rst +6 -19
  14. {pip-25.0.1 → pip-25.1.1}/docs/html/installation.md +1 -1
  15. pip-25.1.1/docs/html/reference/pip_index.rst +11 -0
  16. {pip-25.0.1 → pip-25.1.1}/docs/html/topics/dependency-resolution.md +66 -3
  17. {pip-25.0.1 → pip-25.1.1}/docs/html/topics/more-dependency-resolution.md +32 -19
  18. {pip-25.0.1 → pip-25.1.1}/docs/html/user_guide.rst +93 -1
  19. pip-25.1.1/docs/man/commands/index.rst +20 -0
  20. pip-25.1.1/docs/man/commands/lock.rst +20 -0
  21. {pip-25.0.1 → pip-25.1.1}/docs/man/index.rst +3 -0
  22. {pip-25.0.1 → pip-25.1.1}/pyproject.toml +8 -4
  23. {pip-25.0.1 → pip-25.1.1}/src/pip/__init__.py +1 -1
  24. {pip-25.0.1 → pip-25.1.1}/src/pip/__pip-runner__.py +1 -1
  25. {pip-25.0.1 → pip-25.1.1}/src/pip/_internal/build_env.py +5 -2
  26. {pip-25.0.1 → pip-25.1.1}/src/pip/_internal/cache.py +1 -2
  27. {pip-25.0.1 → pip-25.1.1}/src/pip/_internal/cli/__init__.py +1 -2
  28. {pip-25.0.1 → pip-25.1.1}/src/pip/_internal/cli/autocompletion.py +1 -2
  29. {pip-25.0.1 → pip-25.1.1}/src/pip/_internal/cli/base_command.py +2 -9
  30. {pip-25.0.1 → pip-25.1.1}/src/pip/_internal/cli/cmdoptions.py +64 -6
  31. {pip-25.0.1 → pip-25.1.1}/src/pip/_internal/cli/index_command.py +2 -0
  32. {pip-25.0.1 → pip-25.1.1}/src/pip/_internal/cli/main.py +1 -2
  33. {pip-25.0.1 → pip-25.1.1}/src/pip/_internal/cli/main_parser.py +1 -2
  34. {pip-25.0.1 → pip-25.1.1}/src/pip/_internal/cli/progress_bars.py +59 -9
  35. {pip-25.0.1 → pip-25.1.1}/src/pip/_internal/cli/req_command.py +19 -1
  36. {pip-25.0.1 → pip-25.1.1}/src/pip/_internal/commands/__init__.py +5 -0
  37. {pip-25.0.1 → pip-25.1.1}/src/pip/_internal/commands/completion.py +11 -5
  38. {pip-25.0.1 → pip-25.1.1}/src/pip/_internal/commands/freeze.py +0 -1
  39. {pip-25.0.1 → pip-25.1.1}/src/pip/_internal/commands/index.py +24 -10
  40. {pip-25.0.1 → pip-25.1.1}/src/pip/_internal/commands/install.py +10 -1
  41. {pip-25.0.1 → pip-25.1.1}/src/pip/_internal/commands/list.py +21 -5
  42. pip-25.1.1/src/pip/_internal/commands/lock.py +171 -0
  43. {pip-25.0.1 → pip-25.1.1}/src/pip/_internal/commands/search.py +14 -10
  44. {pip-25.0.1 → pip-25.1.1}/src/pip/_internal/commands/show.py +9 -5
  45. {pip-25.0.1 → pip-25.1.1}/src/pip/_internal/commands/wheel.py +2 -2
  46. {pip-25.0.1 → pip-25.1.1}/src/pip/_internal/exceptions.py +53 -0
  47. pip-25.1.1/src/pip/_internal/index/__init__.py +1 -0
  48. {pip-25.0.1 → pip-25.1.1}/src/pip/_internal/index/package_finder.py +37 -16
  49. {pip-25.0.1 → pip-25.1.1}/src/pip/_internal/locations/__init__.py +1 -18
  50. {pip-25.0.1 → pip-25.1.1}/src/pip/_internal/metadata/__init__.py +47 -13
  51. {pip-25.0.1 → pip-25.1.1}/src/pip/_internal/metadata/base.py +3 -1
  52. {pip-25.0.1 → pip-25.1.1}/src/pip/_internal/metadata/importlib/_envs.py +11 -60
  53. pip-25.1.1/src/pip/_internal/models/__init__.py +1 -0
  54. {pip-25.0.1 → pip-25.1.1}/src/pip/_internal/models/direct_url.py +1 -1
  55. {pip-25.0.1 → pip-25.1.1}/src/pip/_internal/models/link.py +7 -3
  56. pip-25.1.1/src/pip/_internal/models/pylock.py +183 -0
  57. pip-25.1.1/src/pip/_internal/models/wheel.py +139 -0
  58. pip-25.1.1/src/pip/_internal/network/__init__.py +1 -0
  59. {pip-25.0.1 → pip-25.1.1}/src/pip/_internal/network/cache.py +1 -2
  60. pip-25.1.1/src/pip/_internal/network/download.py +314 -0
  61. {pip-25.0.1 → pip-25.1.1}/src/pip/_internal/network/xmlrpc.py +1 -2
  62. {pip-25.0.1 → pip-25.1.1}/src/pip/_internal/operations/build/metadata.py +1 -2
  63. {pip-25.0.1 → pip-25.1.1}/src/pip/_internal/operations/build/metadata_editable.py +1 -2
  64. {pip-25.0.1 → pip-25.1.1}/src/pip/_internal/operations/build/metadata_legacy.py +1 -2
  65. {pip-25.0.1 → pip-25.1.1}/src/pip/_internal/operations/build/wheel_legacy.py +16 -0
  66. {pip-25.0.1 → pip-25.1.1}/src/pip/_internal/operations/check.py +1 -2
  67. pip-25.1.1/src/pip/_internal/operations/install/__init__.py +1 -0
  68. {pip-25.0.1 → pip-25.1.1}/src/pip/_internal/operations/install/editable_legacy.py +1 -2
  69. {pip-25.0.1 → pip-25.1.1}/src/pip/_internal/operations/install/wheel.py +7 -10
  70. {pip-25.0.1 → pip-25.1.1}/src/pip/_internal/operations/prepare.py +10 -5
  71. {pip-25.0.1 → pip-25.1.1}/src/pip/_internal/req/__init__.py +14 -1
  72. pip-25.1.1/src/pip/_internal/req/req_dependency_group.py +79 -0
  73. {pip-25.0.1 → pip-25.1.1}/src/pip/_internal/req/req_install.py +2 -2
  74. {pip-25.0.1 → pip-25.1.1}/src/pip/_internal/req/req_uninstall.py +7 -4
  75. {pip-25.0.1 → pip-25.1.1}/src/pip/_internal/resolution/resolvelib/candidates.py +6 -1
  76. {pip-25.0.1 → pip-25.1.1}/src/pip/_internal/resolution/resolvelib/factory.py +1 -1
  77. {pip-25.0.1 → pip-25.1.1}/src/pip/_internal/resolution/resolvelib/found_candidates.py +10 -20
  78. {pip-25.0.1 → pip-25.1.1}/src/pip/_internal/resolution/resolvelib/provider.py +88 -65
  79. {pip-25.0.1 → pip-25.1.1}/src/pip/_internal/resolution/resolvelib/reporter.py +6 -4
  80. {pip-25.0.1 → pip-25.1.1}/src/pip/_internal/resolution/resolvelib/resolver.py +5 -2
  81. {pip-25.0.1 → pip-25.1.1}/src/pip/_internal/utils/appdirs.py +2 -1
  82. {pip-25.0.1 → pip-25.1.1}/src/pip/_internal/utils/compatibility_tags.py +14 -2
  83. {pip-25.0.1 → pip-25.1.1}/src/pip/_internal/utils/datetime.py +1 -2
  84. {pip-25.0.1 → pip-25.1.1}/src/pip/_internal/utils/entrypoints.py +4 -1
  85. {pip-25.0.1 → pip-25.1.1}/src/pip/_internal/utils/filetypes.py +1 -2
  86. {pip-25.0.1 → pip-25.1.1}/src/pip/_internal/utils/logging.py +20 -13
  87. {pip-25.0.1 → pip-25.1.1}/src/pip/_internal/utils/packaging.py +2 -17
  88. {pip-25.0.1 → pip-25.1.1}/src/pip/_internal/utils/setuptools_build.py +5 -4
  89. {pip-25.0.1 → pip-25.1.1}/src/pip/_internal/utils/unpacking.py +1 -3
  90. {pip-25.0.1 → pip-25.1.1}/src/pip/_internal/utils/wheel.py +1 -2
  91. {pip-25.0.1 → pip-25.1.1}/src/pip/_internal/vcs/git.py +10 -1
  92. {pip-25.0.1 → pip-25.1.1}/src/pip/_internal/wheel_builder.py +5 -27
  93. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/README.rst +10 -0
  94. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/__init__.py +1 -0
  95. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/cachecontrol/__init__.py +1 -1
  96. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/cachecontrol/adapter.py +13 -6
  97. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/cachecontrol/caches/file_cache.py +10 -47
  98. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/cachecontrol/controller.py +12 -1
  99. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/certifi/__init__.py +1 -1
  100. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/certifi/cacert.pem +122 -154
  101. pip-25.1.1/src/pip/_vendor/dependency_groups/LICENSE.txt +9 -0
  102. pip-25.1.1/src/pip/_vendor/dependency_groups/__init__.py +13 -0
  103. pip-25.1.1/src/pip/_vendor/dependency_groups/__main__.py +65 -0
  104. pip-25.1.1/src/pip/_vendor/dependency_groups/_implementation.py +209 -0
  105. pip-25.1.1/src/pip/_vendor/dependency_groups/_lint_dependency_groups.py +59 -0
  106. pip-25.1.1/src/pip/_vendor/dependency_groups/_pip_wrapper.py +62 -0
  107. pip-25.1.1/src/pip/_vendor/dependency_groups/_toml_compat.py +9 -0
  108. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/packaging/__init__.py +1 -1
  109. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/packaging/_elffile.py +1 -2
  110. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/packaging/_manylinux.py +1 -2
  111. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/packaging/_parser.py +1 -2
  112. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/packaging/_tokenizer.py +5 -4
  113. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/packaging/markers.py +53 -22
  114. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/packaging/metadata.py +1 -2
  115. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/packaging/specifiers.py +1 -2
  116. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/packaging/tags.py +39 -0
  117. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/platformdirs/__init__.py +20 -20
  118. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/platformdirs/android.py +3 -3
  119. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/platformdirs/api.py +3 -2
  120. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/platformdirs/unix.py +4 -1
  121. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/platformdirs/version.py +9 -4
  122. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/pygments/__init__.py +2 -2
  123. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/pygments/__main__.py +1 -1
  124. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/pygments/console.py +1 -1
  125. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/pygments/filter.py +1 -1
  126. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/pygments/filters/__init__.py +1 -1
  127. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/pygments/formatter.py +1 -1
  128. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/pygments/formatters/__init__.py +1 -1
  129. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/pygments/formatters/_mapping.py +0 -0
  130. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/pygments/lexer.py +1 -1
  131. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/pygments/lexers/__init__.py +1 -1
  132. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/pygments/lexers/_mapping.py +16 -3
  133. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/pygments/lexers/python.py +27 -24
  134. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/pygments/modeline.py +1 -1
  135. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/pygments/plugin.py +1 -1
  136. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/pygments/regexopt.py +1 -1
  137. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/pygments/scanner.py +1 -1
  138. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/pygments/sphinxext.py +1 -1
  139. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/pygments/style.py +1 -1
  140. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/pygments/styles/__init__.py +1 -1
  141. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/pygments/token.py +1 -1
  142. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/pygments/unistring.py +1 -1
  143. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/pygments/util.py +1 -1
  144. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/resolvelib/__init__.py +3 -2
  145. pip-25.1.1/src/pip/_vendor/resolvelib/providers.py +196 -0
  146. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/resolvelib/reporters.py +21 -9
  147. pip-25.1.1/src/pip/_vendor/resolvelib/resolvers/__init__.py +27 -0
  148. pip-25.1.1/src/pip/_vendor/resolvelib/resolvers/abstract.py +47 -0
  149. pip-25.1.1/src/pip/_vendor/resolvelib/resolvers/criterion.py +48 -0
  150. pip-25.1.1/src/pip/_vendor/resolvelib/resolvers/exceptions.py +57 -0
  151. pip-25.0.1/src/pip/_vendor/resolvelib/resolvers.py → pip-25.1.1/src/pip/_vendor/resolvelib/resolvers/resolution.py +211 -217
  152. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/resolvelib/structs.py +93 -54
  153. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/rich/console.py +21 -7
  154. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/rich/default_styles.py +3 -1
  155. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/rich/diagnose.py +7 -6
  156. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/rich/panel.py +1 -1
  157. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/rich/style.py +1 -1
  158. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/rich/table.py +0 -1
  159. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/rich/traceback.py +129 -42
  160. pip-25.1.1/src/pip/_vendor/tomli_w/LICENSE +21 -0
  161. pip-25.1.1/src/pip/_vendor/tomli_w/__init__.py +4 -0
  162. pip-25.1.1/src/pip/_vendor/tomli_w/_writer.py +229 -0
  163. pip-25.1.1/src/pip/_vendor/tomli_w/py.typed +1 -0
  164. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/truststore/__init__.py +2 -2
  165. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/truststore/_api.py +18 -1
  166. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/typing_extensions.py +1027 -84
  167. pip-25.1.1/src/pip/_vendor/vendor.txt +20 -0
  168. {pip-25.0.1 → pip-25.1.1}/src/pip.egg-info/PKG-INFO +4 -4
  169. {pip-25.0.1 → pip-25.1.1}/src/pip.egg-info/SOURCES.txt +29 -19
  170. pip-25.0.1/src/pip/_internal/index/__init__.py +0 -2
  171. pip-25.0.1/src/pip/_internal/models/__init__.py +0 -2
  172. pip-25.0.1/src/pip/_internal/models/wheel.py +0 -118
  173. pip-25.0.1/src/pip/_internal/network/__init__.py +0 -2
  174. pip-25.0.1/src/pip/_internal/network/download.py +0 -187
  175. pip-25.0.1/src/pip/_internal/operations/install/__init__.py +0 -2
  176. pip-25.0.1/src/pip/_vendor/pygments/cmdline.py +0 -668
  177. pip-25.0.1/src/pip/_vendor/pygments/formatters/bbcode.py +0 -108
  178. pip-25.0.1/src/pip/_vendor/pygments/formatters/groff.py +0 -170
  179. pip-25.0.1/src/pip/_vendor/pygments/formatters/html.py +0 -987
  180. pip-25.0.1/src/pip/_vendor/pygments/formatters/img.py +0 -685
  181. pip-25.0.1/src/pip/_vendor/pygments/formatters/irc.py +0 -154
  182. pip-25.0.1/src/pip/_vendor/pygments/formatters/latex.py +0 -518
  183. pip-25.0.1/src/pip/_vendor/pygments/formatters/other.py +0 -160
  184. pip-25.0.1/src/pip/_vendor/pygments/formatters/pangomarkup.py +0 -83
  185. pip-25.0.1/src/pip/_vendor/pygments/formatters/rtf.py +0 -349
  186. pip-25.0.1/src/pip/_vendor/pygments/formatters/svg.py +0 -185
  187. pip-25.0.1/src/pip/_vendor/pygments/formatters/terminal.py +0 -127
  188. pip-25.0.1/src/pip/_vendor/pygments/formatters/terminal256.py +0 -338
  189. pip-25.0.1/src/pip/_vendor/resolvelib/compat/collections_abc.py +0 -6
  190. pip-25.0.1/src/pip/_vendor/resolvelib/providers.py +0 -133
  191. pip-25.0.1/src/pip/_vendor/vendor.txt +0 -18
  192. {pip-25.0.1 → pip-25.1.1}/LICENSE.txt +0 -0
  193. {pip-25.0.1 → pip-25.1.1}/README.rst +0 -0
  194. {pip-25.0.1 → pip-25.1.1}/SECURITY.md +0 -0
  195. {pip-25.0.1 → pip-25.1.1/build-project}/build-requirements.in +0 -0
  196. {pip-25.0.1 → pip-25.1.1}/docs/html/cli/pip.rst +0 -0
  197. {pip-25.0.1 → pip-25.1.1}/docs/html/cli/pip_cache.rst +0 -0
  198. {pip-25.0.1 → pip-25.1.1}/docs/html/cli/pip_check.rst +0 -0
  199. {pip-25.0.1 → pip-25.1.1}/docs/html/cli/pip_config.rst +0 -0
  200. {pip-25.0.1 → pip-25.1.1}/docs/html/cli/pip_debug.rst +0 -0
  201. {pip-25.0.1 → pip-25.1.1}/docs/html/cli/pip_freeze.rst +0 -0
  202. {pip-25.0.1 → pip-25.1.1}/docs/html/cli/pip_hash.rst +0 -0
  203. {pip-25.0.1 → pip-25.1.1}/docs/html/cli/pip_inspect.rst +0 -0
  204. {pip-25.0.1 → pip-25.1.1}/docs/html/cli/pip_install.rst +0 -0
  205. {pip-25.0.1 → pip-25.1.1}/docs/html/cli/pip_list.rst +0 -0
  206. {pip-25.0.1 → pip-25.1.1}/docs/html/cli/pip_search.rst +0 -0
  207. {pip-25.0.1 → pip-25.1.1}/docs/html/cli/pip_show.rst +0 -0
  208. {pip-25.0.1 → pip-25.1.1}/docs/html/cli/pip_uninstall.rst +0 -0
  209. {pip-25.0.1 → pip-25.1.1}/docs/html/cli/pip_wheel.rst +0 -0
  210. {pip-25.0.1 → pip-25.1.1}/docs/html/copyright.rst +0 -0
  211. {pip-25.0.1 → pip-25.1.1}/docs/html/development/architecture/anatomy.rst +0 -0
  212. {pip-25.0.1 → pip-25.1.1}/docs/html/development/architecture/command-line-interface.rst +0 -0
  213. {pip-25.0.1 → pip-25.1.1}/docs/html/development/architecture/configuration-files.rst +0 -0
  214. {pip-25.0.1 → pip-25.1.1}/docs/html/development/architecture/index.rst +0 -0
  215. {pip-25.0.1 → pip-25.1.1}/docs/html/development/architecture/overview.rst +0 -0
  216. {pip-25.0.1 → pip-25.1.1}/docs/html/development/architecture/package-finding.rst +0 -0
  217. {pip-25.0.1 → pip-25.1.1}/docs/html/development/architecture/upgrade-options.rst +0 -0
  218. {pip-25.0.1 → pip-25.1.1}/docs/html/development/contributing.rst +0 -0
  219. {pip-25.0.1 → pip-25.1.1}/docs/html/development/conventions.rst +0 -0
  220. {pip-25.0.1 → pip-25.1.1}/docs/html/development/getting-started.rst +0 -0
  221. {pip-25.0.1 → pip-25.1.1}/docs/html/development/index.rst +0 -0
  222. {pip-25.0.1 → pip-25.1.1}/docs/html/development/issue-triage.md +0 -0
  223. {pip-25.0.1 → pip-25.1.1}/docs/html/development/release-process.rst +0 -0
  224. {pip-25.0.1 → pip-25.1.1}/docs/html/development/vendoring-policy.rst +0 -0
  225. {pip-25.0.1 → pip-25.1.1}/docs/html/getting-started.md +0 -0
  226. {pip-25.0.1 → pip-25.1.1}/docs/html/index.md +0 -0
  227. {pip-25.0.1 → pip-25.1.1}/docs/html/installing.rst +0 -0
  228. {pip-25.0.1 → pip-25.1.1}/docs/html/news.rst +0 -0
  229. {pip-25.0.1 → pip-25.1.1}/docs/html/quickstart.rst +0 -0
  230. {pip-25.0.1 → pip-25.1.1}/docs/html/reference/build-system/index.md +0 -0
  231. {pip-25.0.1 → pip-25.1.1}/docs/html/reference/build-system/pyproject-toml.md +0 -0
  232. {pip-25.0.1 → pip-25.1.1}/docs/html/reference/build-system/setup-py.md +0 -0
  233. {pip-25.0.1 → pip-25.1.1}/docs/html/reference/index.md +0 -0
  234. {pip-25.0.1 → pip-25.1.1}/docs/html/reference/inspect-report.md +0 -0
  235. {pip-25.0.1 → pip-25.1.1}/docs/html/reference/installation-report.md +0 -0
  236. {pip-25.0.1 → pip-25.1.1}/docs/html/reference/pip.rst +0 -0
  237. {pip-25.0.1 → pip-25.1.1}/docs/html/reference/pip_cache.rst +0 -0
  238. {pip-25.0.1 → pip-25.1.1}/docs/html/reference/pip_check.rst +0 -0
  239. {pip-25.0.1 → pip-25.1.1}/docs/html/reference/pip_config.rst +0 -0
  240. {pip-25.0.1 → pip-25.1.1}/docs/html/reference/pip_debug.rst +0 -0
  241. {pip-25.0.1 → pip-25.1.1}/docs/html/reference/pip_download.rst +0 -0
  242. {pip-25.0.1 → pip-25.1.1}/docs/html/reference/pip_freeze.rst +0 -0
  243. {pip-25.0.1 → pip-25.1.1}/docs/html/reference/pip_hash.rst +0 -0
  244. {pip-25.0.1 → pip-25.1.1}/docs/html/reference/pip_install.rst +0 -0
  245. {pip-25.0.1 → pip-25.1.1}/docs/html/reference/pip_list.rst +0 -0
  246. {pip-25.0.1 → pip-25.1.1}/docs/html/reference/pip_search.rst +0 -0
  247. {pip-25.0.1 → pip-25.1.1}/docs/html/reference/pip_show.rst +0 -0
  248. {pip-25.0.1 → pip-25.1.1}/docs/html/reference/pip_uninstall.rst +0 -0
  249. {pip-25.0.1 → pip-25.1.1}/docs/html/reference/pip_wheel.rst +0 -0
  250. {pip-25.0.1 → pip-25.1.1}/docs/html/reference/requirement-specifiers.md +0 -0
  251. {pip-25.0.1 → pip-25.1.1}/docs/html/reference/requirements-file-format.md +0 -0
  252. {pip-25.0.1 → pip-25.1.1}/docs/html/topics/authentication.md +0 -0
  253. {pip-25.0.1 → pip-25.1.1}/docs/html/topics/caching.md +0 -0
  254. {pip-25.0.1 → pip-25.1.1}/docs/html/topics/configuration.md +0 -0
  255. {pip-25.0.1 → pip-25.1.1}/docs/html/topics/deps.dot +0 -0
  256. {pip-25.0.1 → pip-25.1.1}/docs/html/topics/deps.png +0 -0
  257. {pip-25.0.1 → pip-25.1.1}/docs/html/topics/https-certificates.md +0 -0
  258. {pip-25.0.1 → pip-25.1.1}/docs/html/topics/index.md +0 -0
  259. {pip-25.0.1 → pip-25.1.1}/docs/html/topics/local-project-installs.md +0 -0
  260. {pip-25.0.1 → pip-25.1.1}/docs/html/topics/python-option.md +0 -0
  261. {pip-25.0.1 → pip-25.1.1}/docs/html/topics/repeatable-installs.md +0 -0
  262. {pip-25.0.1 → pip-25.1.1}/docs/html/topics/secure-installs.md +0 -0
  263. {pip-25.0.1 → pip-25.1.1}/docs/html/topics/vcs-support.md +0 -0
  264. {pip-25.0.1 → pip-25.1.1}/docs/html/topics/workflow.md +0 -0
  265. {pip-25.0.1 → pip-25.1.1}/docs/html/ux-research-design/contribute.md +0 -0
  266. {pip-25.0.1 → pip-25.1.1}/docs/html/ux-research-design/guidance.md +0 -0
  267. {pip-25.0.1 → pip-25.1.1}/docs/html/ux-research-design/index.md +0 -0
  268. {pip-25.0.1 → pip-25.1.1}/docs/html/ux-research-design/research-results/about-our-users.md +0 -0
  269. {pip-25.0.1 → pip-25.1.1}/docs/html/ux-research-design/research-results/ci-cd.md +0 -0
  270. {pip-25.0.1 → pip-25.1.1}/docs/html/ux-research-design/research-results/improving-pips-documentation.md +0 -0
  271. {pip-25.0.1 → pip-25.1.1}/docs/html/ux-research-design/research-results/index.md +0 -0
  272. {pip-25.0.1 → pip-25.1.1}/docs/html/ux-research-design/research-results/mental-models.md +0 -0
  273. {pip-25.0.1 → pip-25.1.1}/docs/html/ux-research-design/research-results/override-conflicting-dependencies.md +0 -0
  274. {pip-25.0.1 → pip-25.1.1}/docs/html/ux-research-design/research-results/personas.md +0 -0
  275. {pip-25.0.1 → pip-25.1.1}/docs/html/ux-research-design/research-results/pip-force-reinstall.md +0 -0
  276. {pip-25.0.1 → pip-25.1.1}/docs/html/ux-research-design/research-results/pip-search.md +0 -0
  277. {pip-25.0.1 → pip-25.1.1}/docs/html/ux-research-design/research-results/pip-upgrade-conflict.md +0 -0
  278. {pip-25.0.1 → pip-25.1.1}/docs/html/ux-research-design/research-results/prioritizing-features.md +0 -0
  279. {pip-25.0.1 → pip-25.1.1}/docs/html/ux-research-design/research-results/users-and-security.md +0 -0
  280. {pip-25.0.1 → pip-25.1.1}/docs/man/commands/cache.rst +0 -0
  281. {pip-25.0.1 → pip-25.1.1}/docs/man/commands/check.rst +0 -0
  282. {pip-25.0.1 → pip-25.1.1}/docs/man/commands/config.rst +0 -0
  283. {pip-25.0.1 → pip-25.1.1}/docs/man/commands/debug.rst +0 -0
  284. {pip-25.0.1 → pip-25.1.1}/docs/man/commands/download.rst +0 -0
  285. {pip-25.0.1 → pip-25.1.1}/docs/man/commands/freeze.rst +0 -0
  286. {pip-25.0.1 → pip-25.1.1}/docs/man/commands/hash.rst +0 -0
  287. {pip-25.0.1 → pip-25.1.1}/docs/man/commands/help.rst +0 -0
  288. {pip-25.0.1 → pip-25.1.1}/docs/man/commands/install.rst +0 -0
  289. {pip-25.0.1 → pip-25.1.1}/docs/man/commands/list.rst +0 -0
  290. {pip-25.0.1 → pip-25.1.1}/docs/man/commands/search.rst +0 -0
  291. {pip-25.0.1 → pip-25.1.1}/docs/man/commands/show.rst +0 -0
  292. {pip-25.0.1 → pip-25.1.1}/docs/man/commands/uninstall.rst +0 -0
  293. {pip-25.0.1 → pip-25.1.1}/docs/man/commands/wheel.rst +0 -0
  294. {pip-25.0.1 → pip-25.1.1}/docs/pip_sphinxext.py +0 -0
  295. {pip-25.0.1 → pip-25.1.1}/docs/requirements.txt +0 -0
  296. {pip-25.0.1 → pip-25.1.1}/setup.cfg +0 -0
  297. {pip-25.0.1 → pip-25.1.1}/src/pip/__main__.py +0 -0
  298. {pip-25.0.1 → pip-25.1.1}/src/pip/_internal/__init__.py +0 -0
  299. {pip-25.0.1 → pip-25.1.1}/src/pip/_internal/cli/command_context.py +0 -0
  300. {pip-25.0.1 → pip-25.1.1}/src/pip/_internal/cli/parser.py +0 -0
  301. {pip-25.0.1 → pip-25.1.1}/src/pip/_internal/cli/spinners.py +0 -0
  302. {pip-25.0.1 → pip-25.1.1}/src/pip/_internal/cli/status_codes.py +0 -0
  303. {pip-25.0.1 → pip-25.1.1}/src/pip/_internal/commands/cache.py +0 -0
  304. {pip-25.0.1 → pip-25.1.1}/src/pip/_internal/commands/check.py +0 -0
  305. {pip-25.0.1 → pip-25.1.1}/src/pip/_internal/commands/configuration.py +0 -0
  306. {pip-25.0.1 → pip-25.1.1}/src/pip/_internal/commands/debug.py +0 -0
  307. {pip-25.0.1 → pip-25.1.1}/src/pip/_internal/commands/download.py +0 -0
  308. {pip-25.0.1 → pip-25.1.1}/src/pip/_internal/commands/hash.py +0 -0
  309. {pip-25.0.1 → pip-25.1.1}/src/pip/_internal/commands/help.py +0 -0
  310. {pip-25.0.1 → pip-25.1.1}/src/pip/_internal/commands/inspect.py +0 -0
  311. {pip-25.0.1 → pip-25.1.1}/src/pip/_internal/commands/uninstall.py +0 -0
  312. {pip-25.0.1 → pip-25.1.1}/src/pip/_internal/configuration.py +0 -0
  313. {pip-25.0.1 → pip-25.1.1}/src/pip/_internal/distributions/__init__.py +0 -0
  314. {pip-25.0.1 → pip-25.1.1}/src/pip/_internal/distributions/base.py +0 -0
  315. {pip-25.0.1 → pip-25.1.1}/src/pip/_internal/distributions/installed.py +0 -0
  316. {pip-25.0.1 → pip-25.1.1}/src/pip/_internal/distributions/sdist.py +0 -0
  317. {pip-25.0.1 → pip-25.1.1}/src/pip/_internal/distributions/wheel.py +0 -0
  318. {pip-25.0.1 → pip-25.1.1}/src/pip/_internal/index/collector.py +0 -0
  319. {pip-25.0.1 → pip-25.1.1}/src/pip/_internal/index/sources.py +0 -0
  320. {pip-25.0.1 → pip-25.1.1}/src/pip/_internal/locations/_distutils.py +0 -0
  321. {pip-25.0.1 → pip-25.1.1}/src/pip/_internal/locations/_sysconfig.py +0 -0
  322. {pip-25.0.1 → pip-25.1.1}/src/pip/_internal/locations/base.py +0 -0
  323. {pip-25.0.1 → pip-25.1.1}/src/pip/_internal/main.py +0 -0
  324. {pip-25.0.1 → pip-25.1.1}/src/pip/_internal/metadata/_json.py +0 -0
  325. {pip-25.0.1 → pip-25.1.1}/src/pip/_internal/metadata/importlib/__init__.py +0 -0
  326. {pip-25.0.1 → pip-25.1.1}/src/pip/_internal/metadata/importlib/_compat.py +0 -0
  327. {pip-25.0.1 → pip-25.1.1}/src/pip/_internal/metadata/importlib/_dists.py +0 -0
  328. {pip-25.0.1 → pip-25.1.1}/src/pip/_internal/metadata/pkg_resources.py +0 -0
  329. {pip-25.0.1 → pip-25.1.1}/src/pip/_internal/models/candidate.py +0 -0
  330. {pip-25.0.1 → pip-25.1.1}/src/pip/_internal/models/format_control.py +0 -0
  331. {pip-25.0.1 → pip-25.1.1}/src/pip/_internal/models/index.py +0 -0
  332. {pip-25.0.1 → pip-25.1.1}/src/pip/_internal/models/installation_report.py +0 -0
  333. {pip-25.0.1 → pip-25.1.1}/src/pip/_internal/models/scheme.py +0 -0
  334. {pip-25.0.1 → pip-25.1.1}/src/pip/_internal/models/search_scope.py +0 -0
  335. {pip-25.0.1 → pip-25.1.1}/src/pip/_internal/models/selection_prefs.py +0 -0
  336. {pip-25.0.1 → pip-25.1.1}/src/pip/_internal/models/target_python.py +0 -0
  337. {pip-25.0.1 → pip-25.1.1}/src/pip/_internal/network/auth.py +0 -0
  338. {pip-25.0.1 → pip-25.1.1}/src/pip/_internal/network/lazy_wheel.py +0 -0
  339. {pip-25.0.1 → pip-25.1.1}/src/pip/_internal/network/session.py +0 -0
  340. {pip-25.0.1 → pip-25.1.1}/src/pip/_internal/network/utils.py +0 -0
  341. {pip-25.0.1 → pip-25.1.1}/src/pip/_internal/operations/__init__.py +0 -0
  342. {pip-25.0.1 → pip-25.1.1}/src/pip/_internal/operations/build/__init__.py +0 -0
  343. {pip-25.0.1 → pip-25.1.1}/src/pip/_internal/operations/build/build_tracker.py +0 -0
  344. {pip-25.0.1 → pip-25.1.1}/src/pip/_internal/operations/build/wheel.py +0 -0
  345. {pip-25.0.1 → pip-25.1.1}/src/pip/_internal/operations/build/wheel_editable.py +0 -0
  346. {pip-25.0.1 → pip-25.1.1}/src/pip/_internal/operations/freeze.py +0 -0
  347. {pip-25.0.1 → pip-25.1.1}/src/pip/_internal/pyproject.py +0 -0
  348. {pip-25.0.1 → pip-25.1.1}/src/pip/_internal/req/constructors.py +0 -0
  349. {pip-25.0.1 → pip-25.1.1}/src/pip/_internal/req/req_file.py +0 -0
  350. {pip-25.0.1 → pip-25.1.1}/src/pip/_internal/req/req_set.py +0 -0
  351. {pip-25.0.1 → pip-25.1.1}/src/pip/_internal/resolution/__init__.py +0 -0
  352. {pip-25.0.1 → pip-25.1.1}/src/pip/_internal/resolution/base.py +0 -0
  353. {pip-25.0.1 → pip-25.1.1}/src/pip/_internal/resolution/legacy/__init__.py +0 -0
  354. {pip-25.0.1 → pip-25.1.1}/src/pip/_internal/resolution/legacy/resolver.py +0 -0
  355. {pip-25.0.1 → pip-25.1.1}/src/pip/_internal/resolution/resolvelib/__init__.py +0 -0
  356. {pip-25.0.1 → pip-25.1.1}/src/pip/_internal/resolution/resolvelib/base.py +0 -0
  357. {pip-25.0.1 → pip-25.1.1}/src/pip/_internal/resolution/resolvelib/requirements.py +0 -0
  358. {pip-25.0.1 → pip-25.1.1}/src/pip/_internal/self_outdated_check.py +0 -0
  359. {pip-25.0.1 → pip-25.1.1}/src/pip/_internal/utils/__init__.py +0 -0
  360. {pip-25.0.1 → pip-25.1.1}/src/pip/_internal/utils/_jaraco_text.py +0 -0
  361. {pip-25.0.1 → pip-25.1.1}/src/pip/_internal/utils/_log.py +0 -0
  362. {pip-25.0.1 → pip-25.1.1}/src/pip/_internal/utils/compat.py +0 -0
  363. {pip-25.0.1 → pip-25.1.1}/src/pip/_internal/utils/deprecation.py +0 -0
  364. {pip-25.0.1 → pip-25.1.1}/src/pip/_internal/utils/direct_url_helpers.py +0 -0
  365. {pip-25.0.1 → pip-25.1.1}/src/pip/_internal/utils/egg_link.py +0 -0
  366. {pip-25.0.1 → pip-25.1.1}/src/pip/_internal/utils/filesystem.py +0 -0
  367. {pip-25.0.1 → pip-25.1.1}/src/pip/_internal/utils/glibc.py +0 -0
  368. {pip-25.0.1 → pip-25.1.1}/src/pip/_internal/utils/hashes.py +0 -0
  369. {pip-25.0.1 → pip-25.1.1}/src/pip/_internal/utils/misc.py +0 -0
  370. {pip-25.0.1 → pip-25.1.1}/src/pip/_internal/utils/retry.py +0 -0
  371. {pip-25.0.1 → pip-25.1.1}/src/pip/_internal/utils/subprocess.py +0 -0
  372. {pip-25.0.1 → pip-25.1.1}/src/pip/_internal/utils/temp_dir.py +0 -0
  373. {pip-25.0.1 → pip-25.1.1}/src/pip/_internal/utils/urls.py +0 -0
  374. {pip-25.0.1 → pip-25.1.1}/src/pip/_internal/utils/virtualenv.py +0 -0
  375. {pip-25.0.1 → pip-25.1.1}/src/pip/_internal/vcs/__init__.py +0 -0
  376. {pip-25.0.1 → pip-25.1.1}/src/pip/_internal/vcs/bazaar.py +0 -0
  377. {pip-25.0.1 → pip-25.1.1}/src/pip/_internal/vcs/mercurial.py +0 -0
  378. {pip-25.0.1 → pip-25.1.1}/src/pip/_internal/vcs/subversion.py +0 -0
  379. {pip-25.0.1 → pip-25.1.1}/src/pip/_internal/vcs/versioncontrol.py +0 -0
  380. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/cachecontrol/LICENSE.txt +0 -0
  381. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/cachecontrol/_cmd.py +0 -0
  382. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/cachecontrol/cache.py +0 -0
  383. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/cachecontrol/caches/__init__.py +0 -0
  384. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/cachecontrol/caches/redis_cache.py +0 -0
  385. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/cachecontrol/filewrapper.py +0 -0
  386. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/cachecontrol/heuristics.py +0 -0
  387. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/cachecontrol/py.typed +0 -0
  388. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/cachecontrol/serialize.py +0 -0
  389. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/cachecontrol/wrapper.py +0 -0
  390. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/certifi/LICENSE +0 -0
  391. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/certifi/__main__.py +0 -0
  392. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/certifi/core.py +0 -0
  393. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/certifi/py.typed +0 -0
  394. {pip-25.0.1/src/pip/_vendor/distro → pip-25.1.1/src/pip/_vendor/dependency_groups}/py.typed +0 -0
  395. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/distlib/LICENSE.txt +0 -0
  396. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/distlib/__init__.py +0 -0
  397. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/distlib/compat.py +0 -0
  398. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/distlib/database.py +0 -0
  399. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/distlib/index.py +0 -0
  400. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/distlib/locators.py +0 -0
  401. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/distlib/manifest.py +0 -0
  402. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/distlib/markers.py +0 -0
  403. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/distlib/metadata.py +0 -0
  404. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/distlib/resources.py +0 -0
  405. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/distlib/scripts.py +0 -0
  406. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/distlib/t32.exe +0 -0
  407. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/distlib/t64-arm.exe +0 -0
  408. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/distlib/t64.exe +0 -0
  409. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/distlib/util.py +0 -0
  410. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/distlib/version.py +0 -0
  411. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/distlib/w32.exe +0 -0
  412. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/distlib/w64-arm.exe +0 -0
  413. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/distlib/w64.exe +0 -0
  414. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/distlib/wheel.py +0 -0
  415. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/distro/LICENSE +0 -0
  416. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/distro/__init__.py +0 -0
  417. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/distro/__main__.py +0 -0
  418. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/distro/distro.py +0 -0
  419. {pip-25.0.1/src/pip/_vendor/idna → pip-25.1.1/src/pip/_vendor/distro}/py.typed +0 -0
  420. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/idna/LICENSE.md +0 -0
  421. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/idna/__init__.py +0 -0
  422. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/idna/codec.py +0 -0
  423. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/idna/compat.py +0 -0
  424. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/idna/core.py +0 -0
  425. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/idna/idnadata.py +0 -0
  426. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/idna/intranges.py +0 -0
  427. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/idna/package_data.py +0 -0
  428. {pip-25.0.1/src/pip/_vendor/packaging → pip-25.1.1/src/pip/_vendor/idna}/py.typed +0 -0
  429. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/idna/uts46data.py +0 -0
  430. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/msgpack/COPYING +0 -0
  431. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/msgpack/__init__.py +0 -0
  432. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/msgpack/exceptions.py +0 -0
  433. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/msgpack/ext.py +0 -0
  434. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/msgpack/fallback.py +0 -0
  435. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/packaging/LICENSE +0 -0
  436. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/packaging/LICENSE.APACHE +0 -0
  437. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/packaging/LICENSE.BSD +0 -0
  438. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/packaging/_musllinux.py +0 -0
  439. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/packaging/_structures.py +0 -0
  440. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/packaging/licenses/__init__.py +1 -1
  441. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/packaging/licenses/_spdx.py +0 -0
  442. {pip-25.0.1/src/pip/_vendor/platformdirs → pip-25.1.1/src/pip/_vendor/packaging}/py.typed +0 -0
  443. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/packaging/requirements.py +0 -0
  444. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/packaging/utils.py +0 -0
  445. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/packaging/version.py +0 -0
  446. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/pkg_resources/LICENSE +0 -0
  447. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/pkg_resources/__init__.py +0 -0
  448. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/platformdirs/LICENSE +0 -0
  449. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/platformdirs/__main__.py +0 -0
  450. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/platformdirs/macos.py +0 -0
  451. {pip-25.0.1/src/pip/_vendor/pyproject_hooks → pip-25.1.1/src/pip/_vendor/platformdirs}/py.typed +0 -0
  452. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/platformdirs/windows.py +0 -0
  453. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/pygments/LICENSE +0 -0
  454. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/pygments/styles/_mapping.py +0 -0
  455. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/pyproject_hooks/LICENSE +0 -0
  456. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/pyproject_hooks/__init__.py +0 -0
  457. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/pyproject_hooks/_impl.py +0 -0
  458. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/pyproject_hooks/_in_process/__init__.py +0 -0
  459. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/pyproject_hooks/_in_process/_in_process.py +0 -0
  460. {pip-25.0.1/src/pip/_vendor/resolvelib → pip-25.1.1/src/pip/_vendor/pyproject_hooks}/py.typed +0 -0
  461. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/requests/LICENSE +0 -0
  462. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/requests/__init__.py +0 -0
  463. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/requests/__version__.py +0 -0
  464. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/requests/_internal_utils.py +0 -0
  465. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/requests/adapters.py +0 -0
  466. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/requests/api.py +0 -0
  467. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/requests/auth.py +0 -0
  468. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/requests/certs.py +0 -0
  469. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/requests/compat.py +0 -0
  470. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/requests/cookies.py +0 -0
  471. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/requests/exceptions.py +0 -0
  472. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/requests/help.py +0 -0
  473. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/requests/hooks.py +0 -0
  474. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/requests/models.py +0 -0
  475. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/requests/packages.py +0 -0
  476. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/requests/sessions.py +0 -0
  477. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/requests/status_codes.py +0 -0
  478. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/requests/structures.py +0 -0
  479. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/requests/utils.py +0 -0
  480. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/resolvelib/LICENSE +0 -0
  481. {pip-25.0.1/src/pip/_vendor/rich → pip-25.1.1/src/pip/_vendor/resolvelib}/py.typed +0 -0
  482. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/rich/LICENSE +0 -0
  483. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/rich/__init__.py +0 -0
  484. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/rich/__main__.py +0 -0
  485. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/rich/_cell_widths.py +0 -0
  486. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/rich/_emoji_codes.py +0 -0
  487. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/rich/_emoji_replace.py +0 -0
  488. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/rich/_export_format.py +0 -0
  489. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/rich/_extension.py +0 -0
  490. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/rich/_fileno.py +0 -0
  491. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/rich/_inspect.py +0 -0
  492. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/rich/_log_render.py +0 -0
  493. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/rich/_loop.py +0 -0
  494. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/rich/_null_file.py +0 -0
  495. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/rich/_palettes.py +0 -0
  496. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/rich/_pick.py +0 -0
  497. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/rich/_ratio.py +0 -0
  498. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/rich/_spinners.py +0 -0
  499. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/rich/_stack.py +0 -0
  500. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/rich/_timer.py +0 -0
  501. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/rich/_win32_console.py +0 -0
  502. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/rich/_windows.py +0 -0
  503. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/rich/_windows_renderer.py +0 -0
  504. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/rich/_wrap.py +0 -0
  505. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/rich/abc.py +0 -0
  506. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/rich/align.py +0 -0
  507. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/rich/ansi.py +0 -0
  508. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/rich/bar.py +0 -0
  509. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/rich/box.py +0 -0
  510. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/rich/cells.py +0 -0
  511. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/rich/color.py +0 -0
  512. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/rich/color_triplet.py +0 -0
  513. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/rich/columns.py +0 -0
  514. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/rich/constrain.py +0 -0
  515. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/rich/containers.py +0 -0
  516. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/rich/control.py +0 -0
  517. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/rich/emoji.py +0 -0
  518. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/rich/errors.py +0 -0
  519. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/rich/file_proxy.py +0 -0
  520. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/rich/filesize.py +0 -0
  521. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/rich/highlighter.py +0 -0
  522. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/rich/json.py +0 -0
  523. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/rich/jupyter.py +0 -0
  524. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/rich/layout.py +0 -0
  525. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/rich/live.py +0 -0
  526. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/rich/live_render.py +0 -0
  527. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/rich/logging.py +0 -0
  528. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/rich/markup.py +0 -0
  529. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/rich/measure.py +0 -0
  530. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/rich/padding.py +0 -0
  531. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/rich/pager.py +0 -0
  532. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/rich/palette.py +0 -0
  533. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/rich/pretty.py +0 -0
  534. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/rich/progress.py +0 -0
  535. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/rich/progress_bar.py +0 -0
  536. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/rich/prompt.py +0 -0
  537. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/rich/protocol.py +0 -0
  538. {pip-25.0.1/src/pip/_vendor/truststore → pip-25.1.1/src/pip/_vendor/rich}/py.typed +0 -0
  539. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/rich/region.py +0 -0
  540. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/rich/repr.py +0 -0
  541. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/rich/rule.py +0 -0
  542. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/rich/scope.py +0 -0
  543. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/rich/screen.py +0 -0
  544. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/rich/segment.py +0 -0
  545. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/rich/spinner.py +0 -0
  546. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/rich/status.py +0 -0
  547. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/rich/styled.py +0 -0
  548. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/rich/syntax.py +0 -0
  549. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/rich/terminal_theme.py +0 -0
  550. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/rich/text.py +0 -0
  551. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/rich/theme.py +0 -0
  552. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/rich/themes.py +0 -0
  553. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/rich/tree.py +0 -0
  554. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/tomli/LICENSE +0 -0
  555. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/tomli/LICENSE-HEADER +0 -0
  556. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/tomli/__init__.py +0 -0
  557. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/tomli/_parser.py +0 -0
  558. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/tomli/_re.py +0 -0
  559. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/tomli/_types.py +0 -0
  560. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/tomli/py.typed +0 -0
  561. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/truststore/LICENSE +0 -0
  562. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/truststore/_macos.py +0 -0
  563. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/truststore/_openssl.py +0 -0
  564. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/truststore/_ssl_constants.py +0 -0
  565. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/truststore/_windows.py +0 -0
  566. /pip-25.0.1/src/pip/_vendor/resolvelib/compat/__init__.py → /pip-25.1.1/src/pip/_vendor/truststore/py.typed +0 -0
  567. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/typing_extensions.LICENSE +0 -0
  568. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/urllib3/LICENSE.txt +0 -0
  569. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/urllib3/__init__.py +0 -0
  570. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/urllib3/_collections.py +0 -0
  571. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/urllib3/_version.py +0 -0
  572. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/urllib3/connection.py +0 -0
  573. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/urllib3/connectionpool.py +0 -0
  574. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/urllib3/contrib/__init__.py +0 -0
  575. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/urllib3/contrib/_appengine_environ.py +0 -0
  576. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/urllib3/contrib/_securetransport/__init__.py +0 -0
  577. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/urllib3/contrib/_securetransport/bindings.py +0 -0
  578. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/urllib3/contrib/_securetransport/low_level.py +0 -0
  579. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/urllib3/contrib/appengine.py +0 -0
  580. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/urllib3/contrib/ntlmpool.py +0 -0
  581. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/urllib3/contrib/pyopenssl.py +0 -0
  582. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/urllib3/contrib/securetransport.py +0 -0
  583. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/urllib3/contrib/socks.py +0 -0
  584. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/urllib3/exceptions.py +0 -0
  585. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/urllib3/fields.py +0 -0
  586. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/urllib3/filepost.py +0 -0
  587. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/urllib3/packages/__init__.py +0 -0
  588. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/urllib3/packages/backports/__init__.py +0 -0
  589. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/urllib3/packages/backports/makefile.py +0 -0
  590. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/urllib3/packages/backports/weakref_finalize.py +0 -0
  591. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/urllib3/packages/six.py +0 -0
  592. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/urllib3/poolmanager.py +0 -0
  593. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/urllib3/request.py +0 -0
  594. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/urllib3/response.py +0 -0
  595. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/urllib3/util/__init__.py +0 -0
  596. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/urllib3/util/connection.py +0 -0
  597. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/urllib3/util/proxy.py +0 -0
  598. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/urllib3/util/queue.py +0 -0
  599. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/urllib3/util/request.py +0 -0
  600. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/urllib3/util/response.py +0 -0
  601. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/urllib3/util/retry.py +0 -0
  602. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/urllib3/util/ssl_.py +0 -0
  603. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/urllib3/util/ssl_match_hostname.py +0 -0
  604. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/urllib3/util/ssltransport.py +0 -0
  605. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/urllib3/util/timeout.py +0 -0
  606. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/urllib3/util/url.py +0 -0
  607. {pip-25.0.1 → pip-25.1.1}/src/pip/_vendor/urllib3/util/wait.py +0 -0
  608. {pip-25.0.1 → pip-25.1.1}/src/pip/py.typed +0 -0
  609. {pip-25.0.1 → pip-25.1.1}/src/pip.egg-info/dependency_links.txt +0 -0
  610. {pip-25.0.1 → pip-25.1.1}/src/pip.egg-info/entry_points.txt +0 -0
  611. {pip-25.0.1 → pip-25.1.1}/src/pip.egg-info/top_level.txt +0 -0
@@ -7,6 +7,7 @@ abs51295
7
7
  AceGentile
8
8
  Adam Chainz
9
9
  Adam Tse
10
+ Adam Turner
10
11
  Adam Wentz
11
12
  admin
12
13
  Adolfo Ochagavía
@@ -30,6 +31,7 @@ Alex Hedges
30
31
  Alex Loosley
31
32
  Alex Morega
32
33
  Alex Stachowiak
34
+ Alexander Regueiro
33
35
  Alexander Shtyrov
34
36
  Alexandre Conrad
35
37
  Alexey Popravka
@@ -106,6 +108,7 @@ Bogdan Opanchuk
106
108
  BorisZZZ
107
109
  Brad Erickson
108
110
  Bradley Ayers
111
+ Bradley Reynolds
109
112
  Branch Vincent
110
113
  Brandon L. Reiss
111
114
  Brandt Bucher
@@ -221,6 +224,7 @@ Denise Yu
221
224
  dependabot[bot]
222
225
  derwolfe
223
226
  Desetude
227
+ developer
224
228
  Devesh Kumar Singh
225
229
  devsagul
226
230
  Diego Caraballo
@@ -284,6 +288,7 @@ Florian Rathgeber
284
288
  Francesco
285
289
  Francesco Montesano
286
290
  Fredrik Orderud
291
+ Fredrik Roubert
287
292
  Frost Ming
288
293
  Gabriel Curio
289
294
  Gabriel de Perthuis
@@ -291,6 +296,7 @@ Garry Polley
291
296
  gavin
292
297
  gdanielson
293
298
  Geoffrey Sneddon
299
+ George Margaritis
294
300
  George Song
295
301
  Georgi Valkov
296
302
  Georgy Pchelkin
@@ -342,11 +348,13 @@ Inada Naoki
342
348
  Ionel Cristian Mărieș
343
349
  Ionel Maries Cristian
344
350
  Itamar Turner-Trauring
351
+ iTrooz
345
352
  Ivan Pozdeev
346
353
  J. Nick Koston
347
354
  Jacob Kim
348
355
  Jacob Walls
349
356
  Jaime Sanz
357
+ Jake Lishman
350
358
  jakirkham
351
359
  Jakub Kuczys
352
360
  Jakub Stasiak
@@ -383,8 +391,10 @@ Jim Garrison
383
391
  Jinzhe Zeng
384
392
  Jiun Bae
385
393
  Jivan Amara
394
+ Joa
386
395
  Joe Bylund
387
396
  Joe Michelini
397
+ Johannes Altmanninger
388
398
  John Paton
389
399
  John Sirois
390
400
  John T. Wodder II
@@ -438,6 +448,7 @@ Klaas van Schelven
438
448
  KOLANICH
439
449
  konstin
440
450
  kpinc
451
+ Krishan Bhasin
441
452
  Krishna Oza
442
453
  Kumar McMillan
443
454
  Kuntal Majumder
@@ -467,6 +478,7 @@ luojiebin
467
478
  luz.paz
468
479
  László Kiss Kollár
469
480
  M00nL1ght
481
+ Malcolm Smith
470
482
  Marc Abramowitz
471
483
  Marc Tamlyn
472
484
  Marcus Smith
@@ -507,6 +519,7 @@ Maxim Kurnikov
507
519
  Maxime Rouyrre
508
520
  mayeut
509
521
  mbaluna
522
+ Md Sujauddin Sekh
510
523
  mdebi
511
524
  memoselyk
512
525
  meowmeowcat
@@ -558,10 +571,12 @@ Noah
558
571
  Noah Gorny
559
572
  Nowell Strite
560
573
  NtaleGrey
574
+ nucccc
561
575
  nvdv
562
576
  OBITORASU
563
577
  Ofek Lev
564
578
  ofrinevo
579
+ Oleg Burnaev
565
580
  Oliver Freund
566
581
  Oliver Jeeves
567
582
  Oliver Mannion
@@ -5,9 +5,10 @@ include README.rst
5
5
  include SECURITY.md
6
6
  include pyproject.toml
7
7
 
8
- include build-requirements.in
9
- include build-requirements.txt
10
- include build-project.py
8
+ include build-project/build-requirements.in
9
+ include build-project/build-requirements.txt
10
+ include build-project/build-project.py
11
+ include build-project/.python-version
11
12
 
12
13
  include src/pip/_vendor/README.rst
13
14
  include src/pip/_vendor/vendor.txt
@@ -9,6 +9,131 @@
9
9
 
10
10
  .. towncrier release notes start
11
11
 
12
+ 25.1.1 (2025-05-02)
13
+ ===================
14
+
15
+ Bug Fixes
16
+ ---------
17
+
18
+ - Fix ``req.source_dir`` AssertionError when using the legacy resolver. (`#13353 <https://github.com/pypa/pip/issues/13353>`_)
19
+ - Fix crash on Python 3.9.6 and lower when pip failed to compile a Python module
20
+ during installation. (`#13364 <https://github.com/pypa/pip/issues/13364>`_)
21
+ - Names in dependency group includes are now normalized before lookup, which
22
+ fixes incorrect ``Dependency group '...' not found`` errors. (`#13372 <https://github.com/pypa/pip/issues/13372>`_)
23
+
24
+ Vendored Libraries
25
+ ------------------
26
+
27
+ - Fix issues with using tomllib from the stdlib if available, rather than tomli
28
+ - Upgrade dependency-groups to 1.3.1
29
+
30
+
31
+ 25.1 (2025-04-26)
32
+ =================
33
+
34
+ Deprecations and Removals
35
+ -------------------------
36
+
37
+ - Drop support for Python 3.8. (`#12989 <https://github.com/pypa/pip/issues/12989>`_)
38
+ - On python 3.14+, the ``pkg_resources`` metadata backend cannot be used anymore. (`#13010 <https://github.com/pypa/pip/issues/13010>`_)
39
+ - Hide ``--no-python-version-warning`` from CLI help and documentation
40
+ as it's useless since Python 2 support was removed. Despite being
41
+ formerly slated for removal, the flag will remain as a no-op to
42
+ avoid breakage. (`#13303 <https://github.com/pypa/pip/issues/13303>`_)
43
+ - A warning is emitted when the deprecated ``pkg_resources`` library is used to
44
+ inspect and discover installed packages. This warning should only be visible to
45
+ users who set an undocumented environment variable to disable the default
46
+ ``importlib.metadata`` backend. (`#13318 <https://github.com/pypa/pip/issues/13318>`_)
47
+ - Deprecate the legacy ``setup.py bdist_wheel`` mechanism. To silence the warning,
48
+ and future-proof their setup, users should enable ``--use-pep517`` or add a
49
+ ``pyproject.toml`` file to the projects they control. (`#13319 <https://github.com/pypa/pip/issues/13319>`_)
50
+
51
+ Features
52
+ --------
53
+
54
+ - Suggest checking "pip config debug" in case of an InvalidProxyURL error. (`#12649 <https://github.com/pypa/pip/issues/12649>`_)
55
+ - Using ``--debug`` also enables verbose logging. (`#12710 <https://github.com/pypa/pip/issues/12710>`_)
56
+ - Display a transient progress bar during package installation. (`#12712 <https://github.com/pypa/pip/issues/12712>`_)
57
+ - Minor performance improvement when installing packages with a large number
58
+ of dependencies by increasing the requirement string cache size. (`#12873 <https://github.com/pypa/pip/issues/12873>`_)
59
+ - Add a ``--group`` option which allows installation from :pep:`735` Dependency
60
+ Groups. ``--group`` accepts arguments of the form ``group`` or
61
+ ``path:group``, where the default path is ``pyproject.toml``, and installs
62
+ the named Dependency Group from the provided ``pyproject.toml`` file. (`#12963 <https://github.com/pypa/pip/issues/12963>`_)
63
+ - Add support to enable resuming incomplete downloads.
64
+
65
+ Control the number of retry attempts using the ``--resume-retries`` flag. (`#12991 <https://github.com/pypa/pip/issues/12991>`_)
66
+ - Use :pep:`753` "Well-known Project URLs in Metadata" normalization rules when
67
+ identifying an equivalent project URL to replace a missing ``Home-Page`` field
68
+ in ``pip show``. (`#13135 <https://github.com/pypa/pip/issues/13135>`_)
69
+ - Remove ``experimental`` warning from ``pip index versions`` command. (`#13188 <https://github.com/pypa/pip/issues/13188>`_)
70
+ - Add a structured ``--json`` output to ``pip index versions`` (`#13194 <https://github.com/pypa/pip/issues/13194>`_)
71
+ - Add a new, *experimental*, ``pip lock`` command, implementing :pep:`751`. (`#13213 <https://github.com/pypa/pip/issues/13213>`_)
72
+ - Speed up resolution by first only considering the preference of
73
+ candidates that must be required to complete the resolution. (`#13253 <https://github.com/pypa/pip/issues/13253>`_)
74
+ - Improved heuristics for determining the order of dependency resolution. (`#13273 <https://github.com/pypa/pip/issues/13273>`_)
75
+ - Provide hint, documentation, and link to the documentation when
76
+ resolution too deep error occurs. (`#13282 <https://github.com/pypa/pip/issues/13282>`_)
77
+ - Include traceback on failure to import ``setuptools`` when ``setup.py`` is being invoked directly. (`#13290 <https://github.com/pypa/pip/issues/13290>`_)
78
+ - Support for :pep:`738` Android wheels. (`#13299 <https://github.com/pypa/pip/issues/13299>`_)
79
+ - Display wheel build tag in ``pip list`` columns output if set. (`#5210 <https://github.com/pypa/pip/issues/5210>`_)
80
+ - Build environment dependencies are no longer compiled to bytecode during
81
+ installation for a minor performance improvement. (`#7294 <https://github.com/pypa/pip/issues/7294>`_)
82
+
83
+ Bug Fixes
84
+ ---------
85
+
86
+ - When using the ``importlib.metadata`` backend (the default on Python 3.11+),
87
+ ``pip list`` does not show installed egg distributions more than once anymore.
88
+ Additionally, egg distributions whose parent directory was in ``sys.path`` but
89
+ the egg themselves were not in ``sys.path`` are not detected anymore. (`#12308 <https://github.com/pypa/pip/issues/12308>`_)
90
+ - Disable Git and SSH prompts when ``--no-input`` is passed. (`#12718 <https://github.com/pypa/pip/issues/12718>`_)
91
+ - Gracefully handle Windows registry access errors while guessing the MIME type of a file. (`#12769 <https://github.com/pypa/pip/issues/12769>`_)
92
+ - Support multiple global configuration paths returned by ``platformdirs`` on MacOS. (`#12903 <https://github.com/pypa/pip/issues/12903>`_)
93
+ - Resolvelib 1.1.0 fixes a known issue where pip would report a
94
+ ResolutionImpossible error even though there is a valid solution.
95
+ However, some very complex dependency resolutions that previously
96
+ resolved may resolve slower or fail with an ResolutionTooDeep error. (`#13001 <https://github.com/pypa/pip/issues/13001>`_)
97
+ - Show the correct path to the interpreter also when it's a symlink in a venv in the pip upgrade prompt. (`#13156 <https://github.com/pypa/pip/issues/13156>`_)
98
+ - Parse wheel filenames according to `binary distribution format specification
99
+ <https://packaging.python.org/en/latest/specifications/binary-distribution-format/#file-format>`_.
100
+ When a filename doesn't match the spec a deprecation warning is emitted and the
101
+ filename is parsed using the old method. (`#13229 <https://github.com/pypa/pip/issues/13229>`_)
102
+ - While resolving dependencies prefer if any of the known requirements are
103
+ "direct", e.g. points to an explicit URL. (`#13244 <https://github.com/pypa/pip/issues/13244>`_)
104
+ - When choosing a preferred requirement for resolving dependencies
105
+ do not consider a specifier with a * in it, e.g. "==1.*", to be a
106
+ pinned specifier. (`#13252 <https://github.com/pypa/pip/issues/13252>`_)
107
+ - Fix a regression that causes dependencies to be checked *before* ``Requires-Python``
108
+ project metadata is checked, leading to wasted cycles when the Python version is
109
+ unsupported. (`#13270 <https://github.com/pypa/pip/issues/13270>`_)
110
+ - Don't require the ``wheel`` library to be installed to use ``--no-use-pep517``, any more. (`#13330 <https://github.com/pypa/pip/issues/13330>`_)
111
+ - Fix regression that suppressed errors indicating which packages were ignored
112
+ due to incompatible ``requires-python`` metadata. (`#13333 <https://github.com/pypa/pip/issues/13333>`_)
113
+ - Fix fish shell completion when commandline contains multiple commands. (`#9727 <https://github.com/pypa/pip/issues/9727>`_)
114
+
115
+ Vendored Libraries
116
+ ------------------
117
+
118
+ - Upgrade CacheControl to 0.14.2
119
+ - Upgrade certifi to 2025.1.31
120
+ - Upgrade packaging to 25.0
121
+ - Upgrade platformdirs to 4.3.7
122
+ - Upgrade pygments to 2.19.1
123
+ - Upgrade resolvelib to 1.1.0.
124
+ - Upgrade rich to 14.0.0
125
+ - Vendor tomli-w 1.2.0
126
+ - Upgrade truststore to 0.10.1
127
+ - Upgrade typing_extensions to 4.13.2
128
+
129
+ Improved Documentation
130
+ ----------------------
131
+
132
+ - Added support for building only the man pages with minimal dependencies using
133
+ the sphinx-build ``--tag man`` option. This enables distributors to generate man
134
+ pages without requiring HTML documentation dependencies. (`#13168 <https://github.com/pypa/pip/issues/13168>`_)
135
+
136
+
12
137
  25.0.1 (2025-02-09)
13
138
  ===================
14
139
 
@@ -1,6 +1,6 @@
1
- Metadata-Version: 2.2
1
+ Metadata-Version: 2.4
2
2
  Name: pip
3
- Version: 25.0.1
3
+ Version: 25.1.1
4
4
  Summary: The PyPA recommended tool for installing Python packages.
5
5
  Author-email: The pip developers <distutils-sig@python.org>
6
6
  License: MIT
@@ -15,7 +15,6 @@ Classifier: Topic :: Software Development :: Build Tools
15
15
  Classifier: Programming Language :: Python
16
16
  Classifier: Programming Language :: Python :: 3
17
17
  Classifier: Programming Language :: Python :: 3 :: Only
18
- Classifier: Programming Language :: Python :: 3.8
19
18
  Classifier: Programming Language :: Python :: 3.9
20
19
  Classifier: Programming Language :: Python :: 3.10
21
20
  Classifier: Programming Language :: Python :: 3.11
@@ -23,10 +22,11 @@ Classifier: Programming Language :: Python :: 3.12
23
22
  Classifier: Programming Language :: Python :: 3.13
24
23
  Classifier: Programming Language :: Python :: Implementation :: CPython
25
24
  Classifier: Programming Language :: Python :: Implementation :: PyPy
26
- Requires-Python: >=3.8
25
+ Requires-Python: >=3.9
27
26
  Description-Content-Type: text/x-rst
28
27
  License-File: LICENSE.txt
29
28
  License-File: AUTHORS.txt
29
+ Dynamic: license-file
30
30
 
31
31
  pip - The Python Package Installer
32
32
  ==================================
@@ -0,0 +1 @@
1
+ 3.12
@@ -7,13 +7,14 @@ import venv
7
7
  from os import PathLike
8
8
  from pathlib import Path
9
9
  from types import SimpleNamespace
10
+ from typing import Union
10
11
 
11
12
 
12
13
  class EnvBuilder(venv.EnvBuilder):
13
14
  """A subclass of venv.EnvBuilder that exposes the python executable command."""
14
15
 
15
16
  def ensure_directories(
16
- self, env_dir: str | bytes | PathLike[str] | PathLike[bytes]
17
+ self, env_dir: Union[str, bytes, "PathLike[str]", "PathLike[bytes]"]
17
18
  ) -> SimpleNamespace:
18
19
  context = super().ensure_directories(env_dir)
19
20
  self.env_exec_cmd = context.env_exec_cmd
@@ -63,6 +64,7 @@ def main() -> None:
63
64
  ],
64
65
  check=True,
65
66
  env={"SOURCE_DATE_EPOCH": get_git_head_timestamp()},
67
+ cwd=Path(__file__).parent.parent,
66
68
  )
67
69
 
68
70
 
@@ -18,7 +18,7 @@ pyproject-hooks==1.2.0 \
18
18
  # via build
19
19
 
20
20
  # The following packages are considered to be unsafe in a requirements file:
21
- setuptools==75.8.0 \
22
- --hash=sha256:c5afc8f407c626b8313a86e10311dd3f661c6cd9c09d4bf8c15c0e11f9f2b0e6 \
23
- --hash=sha256:e3982f444617239225d675215d51f6ba05f845d4eec313da4418fdbb56fb27e3
21
+ setuptools==79.0.0 \
22
+ --hash=sha256:9828422e7541213b0aacb6e10bbf9dd8febeaa45a48570e09b6d100e063fc9f9 \
23
+ --hash=sha256:b9ab3a104bedb292323f53797b00864e10e434a3ab3906813a7169e4745b912a
24
24
  # via -r build-requirements.in
@@ -23,6 +23,13 @@ pip_freeze
23
23
  pip_check
24
24
  ```
25
25
 
26
+ ```{toctree}
27
+ :maxdepth: 1
28
+ :caption: Resolving dependencies
29
+
30
+ pip_lock
31
+ ```
32
+
26
33
  ```{toctree}
27
34
  :maxdepth: 1
28
35
  :caption: Handling Distribution Files
@@ -37,6 +44,7 @@ pip_hash
37
44
  :caption: Package Index information
38
45
 
39
46
  pip_search
47
+ pip_index
40
48
  ```
41
49
 
42
50
  ```{toctree}
@@ -47,7 +47,12 @@ constrained download requirement. If some of your dependencies are not
47
47
  available as binaries, you can build them manually for your target platform
48
48
  and let pip download know where to find them using ``--find-links``.
49
49
 
50
+ .. note::
50
51
 
52
+ To determine the appropriate values for ``--python-version`` and ``--platform``, you can query the target system using the following commands:
53
+
54
+ - For the Python version, use :func:`sysconfig.get_python_version() <sysconfig.get_python_version>`.
55
+ - For the platform, use :func:`packaging.tags.platform_tags() <packaging.tags.platform_tags>`.
51
56
 
52
57
  Options
53
58
  =======
@@ -0,0 +1,55 @@
1
+ .. _`pip index`:
2
+
3
+ ===========
4
+ pip index
5
+ ===========
6
+
7
+
8
+
9
+ Usage
10
+ =====
11
+
12
+ .. tab:: Unix/macOS
13
+
14
+ .. pip-command-usage:: index "python -m pip"
15
+
16
+ .. tab:: Windows
17
+
18
+ .. pip-command-usage:: index "py -m pip"
19
+
20
+
21
+ Description
22
+ ===========
23
+
24
+ .. pip-command-description:: index
25
+
26
+
27
+
28
+ Options
29
+ =======
30
+
31
+ .. pip-command-options:: index
32
+
33
+
34
+
35
+ Examples
36
+ ========
37
+
38
+ #. Search for "peppercorn" versions
39
+
40
+ .. tab:: Unix/macOS
41
+
42
+ .. code-block:: console
43
+
44
+ $ python -m pip index versions peppercorn
45
+ peppercorn (0.6)
46
+ Available versions: 0.6, 0.5, 0.4, 0.3, 0.2, 0.1
47
+
48
+
49
+ .. tab:: Windows
50
+
51
+ .. code-block:: console
52
+
53
+ C:\> py -m pip index peppercorn
54
+ peppercorn (0.6)
55
+ Available versions: 0.6, 0.5, 0.4, 0.3, 0.2, 0.1
@@ -0,0 +1,50 @@
1
+
2
+ .. _`pip lock`:
3
+
4
+ ========
5
+ pip lock
6
+ ========
7
+
8
+
9
+
10
+ Usage
11
+ =====
12
+
13
+ .. tab:: Unix/macOS
14
+
15
+ .. pip-command-usage:: lock "python -m pip"
16
+
17
+ .. tab:: Windows
18
+
19
+ .. pip-command-usage:: lock "py -m pip"
20
+
21
+
22
+ Description
23
+ ===========
24
+
25
+ .. pip-command-description:: lock
26
+
27
+ Options
28
+ =======
29
+
30
+ .. pip-command-options:: lock
31
+
32
+ .. pip-index-options:: lock
33
+
34
+
35
+ Examples
36
+ ========
37
+
38
+ #. Emit a ``pylock.toml`` for the the project in the current directory
39
+
40
+ .. tab:: Unix/macOS
41
+
42
+ .. code-block:: shell
43
+
44
+ python -m pip lock -e .
45
+
46
+ .. tab:: Windows
47
+
48
+ .. code-block:: shell
49
+
50
+ py -m pip lock -e .
@@ -14,20 +14,29 @@ sys.path.insert(0, docs_dir)
14
14
  # -- General configuration ------------------------------------------------------------
15
15
 
16
16
  extensions = [
17
- # first-party extensions
18
- "sphinx.ext.autodoc",
19
- "sphinx.ext.todo",
20
- "sphinx.ext.intersphinx",
21
- # our extensions
17
+ # extensions common to all builds
22
18
  "pip_sphinxext",
23
- # third-party extensions
24
- "myst_parser",
25
- "sphinx_copybutton",
26
- "sphinx_inline_tabs",
27
- "sphinxcontrib.towncrier",
28
- "sphinx_issues",
29
19
  ]
30
20
 
21
+ # 'tags' is a injected by sphinx
22
+ # https://www.sphinx-doc.org/en/master/usage/configuration.html#project-tags
23
+ if "man" not in tags: # type: ignore[name-defined] # noqa: F821
24
+ # extensions not needed for building man pages
25
+ extensions.extend(
26
+ (
27
+ # first-party extensions
28
+ "sphinx.ext.autodoc",
29
+ "sphinx.ext.todo",
30
+ "sphinx.ext.intersphinx",
31
+ # third-party extensions
32
+ "myst_parser",
33
+ "sphinx_copybutton",
34
+ "sphinx_inline_tabs",
35
+ "sphinxcontrib.towncrier",
36
+ "sphinx_issues",
37
+ ),
38
+ )
39
+
31
40
  # General information about the project.
32
41
  project = "pip"
33
42
  copyright = "The pip developers"
@@ -69,6 +78,7 @@ smartquotes_action = "qe"
69
78
  intersphinx_mapping = {
70
79
  "python": ("https://docs.python.org/3", None),
71
80
  "pypug": ("https://packaging.python.org", None),
81
+ "packaging": ("https://packaging.pypa.io/en/stable/", None),
72
82
  }
73
83
 
74
84
  # -- Options for towncrier_draft extension --------------------------------------------
@@ -18,7 +18,6 @@ Supported interpreters
18
18
 
19
19
  pip support a variety of Python interpreters:
20
20
 
21
- - CPython 3.8
22
21
  - CPython 3.9
23
22
  - CPython 3.10
24
23
  - CPython 3.11
@@ -91,9 +90,7 @@ Actual testing
91
90
  +------------------------------+---------------+-----------------+
92
91
  | **interpreter** | **unit** | **integration** |
93
92
  +-----------+----------+-------+---------------+-----------------+
94
- | | x86 | CP3.8 | | |
95
- | | +-------+---------------+-----------------+
96
- | | | CP3.9 | | |
93
+ | | x86 | CP3.9 | | |
97
94
  | | +-------+---------------+-----------------+
98
95
  | | | CP3.10| | |
99
96
  | | +-------+---------------+-----------------+
@@ -105,9 +102,7 @@ Actual testing
105
102
  | | +-------+---------------+-----------------+
106
103
  | | | PyPy3 | | |
107
104
  | Windows +----------+-------+---------------+-----------------+
108
- | | x64 | CP3.8 | GitHub | GitHub |
109
- | | +-------+---------------+-----------------+
110
- | | | CP3.9 | | |
105
+ | | x64 | CP3.9 | GitHub | GitHub |
111
106
  | | +-------+---------------+-----------------+
112
107
  | | | CP3.10| | |
113
108
  | | +-------+---------------+-----------------+
@@ -119,9 +114,7 @@ Actual testing
119
114
  | | +-------+---------------+-----------------+
120
115
  | | | PyPy3 | | |
121
116
  +-----------+----------+-------+---------------+-----------------+
122
- | | x86 | CP3.8 | | |
123
- | | +-------+---------------+-----------------+
124
- | | | CP3.9 | | |
117
+ | | x86 | CP3.9 | | |
125
118
  | | +-------+---------------+-----------------+
126
119
  | | | CP3.10| | |
127
120
  | | +-------+---------------+-----------------+
@@ -133,9 +126,7 @@ Actual testing
133
126
  | | +-------+---------------+-----------------+
134
127
  | | | PyPy3 | | |
135
128
  | Linux +----------+-------+---------------+-----------------+
136
- | | x64 | CP3.8 | GitHub | GitHub |
137
- | | +-------+---------------+-----------------+
138
- | | | CP3.9 | GitHub | GitHub |
129
+ | | x64 | CP3.9 | GitHub | GitHub |
139
130
  | | +-------+---------------+-----------------+
140
131
  | | | CP3.10| GitHub | GitHub |
141
132
  | | +-------+---------------+-----------------+
@@ -147,9 +138,7 @@ Actual testing
147
138
  | | +-------+---------------+-----------------+
148
139
  | | | PyPy3 | | |
149
140
  +-----------+----------+-------+---------------+-----------------+
150
- | | arm64 | CP3.8 | GitHub | GitHub |
151
- | | +-------+---------------+-----------------+
152
- | | | CP3.9 | GitHub | GitHub |
141
+ | | arm64 | CP3.9 | GitHub | GitHub |
153
142
  | | +-------+---------------+-----------------+
154
143
  | | | CP3.10| GitHub | GitHub |
155
144
  | | +-------+---------------+-----------------+
@@ -161,9 +150,7 @@ Actual testing
161
150
  | | +-------+---------------+-----------------+
162
151
  | | | PyPy3 | | |
163
152
  | macOS +----------+-------+---------------+-----------------+
164
- | | x64 | CP3.8 | GitHub | GitHub |
165
- | | +-------+---------------+-----------------+
166
- | | | CP3.9 | GitHub | GitHub |
153
+ | | x64 | CP3.9 | GitHub | GitHub |
167
154
  | | +-------+---------------+-----------------+
168
155
  | | | CP3.10| GitHub | GitHub |
169
156
  | | +-------+---------------+-----------------+
@@ -126,7 +126,7 @@ $ pip install --upgrade pip
126
126
  The current version of pip works on:
127
127
 
128
128
  - Windows, Linux and macOS.
129
- - CPython 3.8, 3.9, 3.10, 3.11, 3.12, 3.13, and latest PyPy3.
129
+ - CPython 3.9, 3.10, 3.11, 3.12, 3.13, and latest PyPy3.
130
130
 
131
131
  pip is tested to work on the latest patch version of the Python interpreter,
132
132
  for each of the minor versions listed above. Previous patch versions are
@@ -0,0 +1,11 @@
1
+ :orphan:
2
+
3
+ .. meta::
4
+
5
+ :http-equiv=refresh: 3; url=../../cli/pip_index/
6
+
7
+ This page has moved
8
+ ===================
9
+
10
+ You should be redirected automatically in 3 seconds. If that didn't
11
+ work, here's a link: :doc:`../cli/pip_index`