pip 25.0__tar.gz → 25.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.
- {pip-25.0 → pip-25.1}/AUTHORS.txt +15 -0
- {pip-25.0 → pip-25.1}/MANIFEST.in +4 -3
- {pip-25.0 → pip-25.1}/NEWS.rst +115 -0
- {pip-25.0 → pip-25.1}/PKG-INFO +4 -4
- pip-25.1/build-project/.python-version +1 -0
- {pip-25.0 → pip-25.1/build-project}/build-project.py +6 -1
- {pip-25.0 → pip-25.1/build-project}/build-requirements.txt +3 -3
- {pip-25.0 → pip-25.1}/docs/html/cli/index.md +8 -0
- {pip-25.0 → pip-25.1}/docs/html/cli/pip_download.rst +5 -0
- pip-25.1/docs/html/cli/pip_index.rst +55 -0
- pip-25.1/docs/html/cli/pip_lock.rst +50 -0
- {pip-25.0 → pip-25.1}/docs/html/conf.py +21 -11
- {pip-25.0 → pip-25.1}/docs/html/development/ci.rst +6 -19
- {pip-25.0 → pip-25.1}/docs/html/development/release-process.rst +6 -1
- {pip-25.0 → pip-25.1}/docs/html/installation.md +1 -1
- pip-25.1/docs/html/reference/pip_index.rst +11 -0
- {pip-25.0 → pip-25.1}/docs/html/topics/dependency-resolution.md +66 -3
- {pip-25.0 → pip-25.1}/docs/html/topics/more-dependency-resolution.md +32 -19
- {pip-25.0 → pip-25.1}/docs/html/user_guide.rst +93 -1
- pip-25.1/docs/man/commands/index.rst +20 -0
- pip-25.1/docs/man/commands/lock.rst +20 -0
- {pip-25.0 → pip-25.1}/docs/man/index.rst +3 -0
- {pip-25.0 → pip-25.1}/pyproject.toml +8 -4
- {pip-25.0 → pip-25.1}/src/pip/__init__.py +1 -1
- {pip-25.0 → pip-25.1}/src/pip/__pip-runner__.py +1 -1
- {pip-25.0 → pip-25.1}/src/pip/_internal/build_env.py +7 -5
- {pip-25.0 → pip-25.1}/src/pip/_internal/cache.py +1 -2
- {pip-25.0 → pip-25.1}/src/pip/_internal/cli/__init__.py +1 -2
- {pip-25.0 → pip-25.1}/src/pip/_internal/cli/autocompletion.py +1 -2
- {pip-25.0 → pip-25.1}/src/pip/_internal/cli/base_command.py +2 -9
- {pip-25.0 → pip-25.1}/src/pip/_internal/cli/cmdoptions.py +64 -6
- {pip-25.0 → pip-25.1}/src/pip/_internal/cli/index_command.py +2 -0
- {pip-25.0 → pip-25.1}/src/pip/_internal/cli/main.py +1 -2
- {pip-25.0 → pip-25.1}/src/pip/_internal/cli/main_parser.py +1 -2
- {pip-25.0 → pip-25.1}/src/pip/_internal/cli/progress_bars.py +59 -9
- {pip-25.0 → pip-25.1}/src/pip/_internal/cli/req_command.py +19 -1
- {pip-25.0 → pip-25.1}/src/pip/_internal/commands/__init__.py +5 -0
- {pip-25.0 → pip-25.1}/src/pip/_internal/commands/completion.py +11 -5
- {pip-25.0 → pip-25.1}/src/pip/_internal/commands/freeze.py +0 -1
- {pip-25.0 → pip-25.1}/src/pip/_internal/commands/index.py +24 -10
- {pip-25.0 → pip-25.1}/src/pip/_internal/commands/install.py +9 -0
- {pip-25.0 → pip-25.1}/src/pip/_internal/commands/list.py +21 -5
- pip-25.1/src/pip/_internal/commands/lock.py +171 -0
- {pip-25.0 → pip-25.1}/src/pip/_internal/commands/search.py +14 -10
- {pip-25.0 → pip-25.1}/src/pip/_internal/commands/show.py +9 -5
- {pip-25.0 → pip-25.1}/src/pip/_internal/commands/wheel.py +2 -2
- {pip-25.0 → pip-25.1}/src/pip/_internal/exceptions.py +53 -0
- pip-25.1/src/pip/_internal/index/__init__.py +1 -0
- {pip-25.0 → pip-25.1}/src/pip/_internal/index/package_finder.py +37 -16
- {pip-25.0 → pip-25.1}/src/pip/_internal/locations/__init__.py +1 -18
- {pip-25.0 → pip-25.1}/src/pip/_internal/metadata/__init__.py +47 -13
- {pip-25.0 → pip-25.1}/src/pip/_internal/metadata/base.py +3 -1
- {pip-25.0 → pip-25.1}/src/pip/_internal/metadata/importlib/_dists.py +2 -1
- {pip-25.0 → pip-25.1}/src/pip/_internal/metadata/importlib/_envs.py +11 -60
- pip-25.1/src/pip/_internal/models/__init__.py +1 -0
- {pip-25.0 → pip-25.1}/src/pip/_internal/models/direct_url.py +1 -1
- {pip-25.0 → pip-25.1}/src/pip/_internal/models/link.py +7 -3
- pip-25.1/src/pip/_internal/models/pylock.py +183 -0
- pip-25.1/src/pip/_internal/models/wheel.py +139 -0
- pip-25.1/src/pip/_internal/network/__init__.py +1 -0
- {pip-25.0 → pip-25.1}/src/pip/_internal/network/cache.py +1 -2
- pip-25.1/src/pip/_internal/network/download.py +314 -0
- {pip-25.0 → pip-25.1}/src/pip/_internal/network/xmlrpc.py +1 -2
- {pip-25.0 → pip-25.1}/src/pip/_internal/operations/build/metadata.py +1 -2
- {pip-25.0 → pip-25.1}/src/pip/_internal/operations/build/metadata_editable.py +1 -2
- {pip-25.0 → pip-25.1}/src/pip/_internal/operations/build/metadata_legacy.py +1 -2
- {pip-25.0 → pip-25.1}/src/pip/_internal/operations/build/wheel_legacy.py +16 -0
- {pip-25.0 → pip-25.1}/src/pip/_internal/operations/check.py +1 -2
- pip-25.1/src/pip/_internal/operations/install/__init__.py +1 -0
- {pip-25.0 → pip-25.1}/src/pip/_internal/operations/install/editable_legacy.py +1 -2
- {pip-25.0 → pip-25.1}/src/pip/_internal/operations/install/wheel.py +10 -14
- {pip-25.0 → pip-25.1}/src/pip/_internal/operations/prepare.py +10 -5
- {pip-25.0 → pip-25.1}/src/pip/_internal/req/__init__.py +14 -1
- pip-25.1/src/pip/_internal/req/req_dependency_group.py +74 -0
- {pip-25.0 → pip-25.1}/src/pip/_internal/req/req_install.py +2 -2
- {pip-25.0 → pip-25.1}/src/pip/_internal/req/req_uninstall.py +7 -4
- {pip-25.0 → pip-25.1}/src/pip/_internal/resolution/resolvelib/candidates.py +6 -1
- {pip-25.0 → pip-25.1}/src/pip/_internal/resolution/resolvelib/factory.py +1 -1
- {pip-25.0 → pip-25.1}/src/pip/_internal/resolution/resolvelib/found_candidates.py +10 -20
- {pip-25.0 → pip-25.1}/src/pip/_internal/resolution/resolvelib/provider.py +88 -65
- {pip-25.0 → pip-25.1}/src/pip/_internal/resolution/resolvelib/reporter.py +6 -4
- {pip-25.0 → pip-25.1}/src/pip/_internal/resolution/resolvelib/resolver.py +5 -2
- {pip-25.0 → pip-25.1}/src/pip/_internal/utils/appdirs.py +2 -1
- {pip-25.0 → pip-25.1}/src/pip/_internal/utils/compatibility_tags.py +14 -2
- {pip-25.0 → pip-25.1}/src/pip/_internal/utils/datetime.py +1 -2
- {pip-25.0 → pip-25.1}/src/pip/_internal/utils/entrypoints.py +4 -1
- {pip-25.0 → pip-25.1}/src/pip/_internal/utils/filetypes.py +1 -2
- {pip-25.0 → pip-25.1}/src/pip/_internal/utils/logging.py +20 -13
- {pip-25.0 → pip-25.1}/src/pip/_internal/utils/misc.py +0 -18
- {pip-25.0 → pip-25.1}/src/pip/_internal/utils/packaging.py +2 -17
- {pip-25.0 → pip-25.1}/src/pip/_internal/utils/setuptools_build.py +5 -4
- {pip-25.0 → pip-25.1}/src/pip/_internal/utils/unpacking.py +1 -3
- {pip-25.0 → pip-25.1}/src/pip/_internal/utils/wheel.py +1 -2
- {pip-25.0 → pip-25.1}/src/pip/_internal/vcs/git.py +10 -1
- {pip-25.0 → pip-25.1}/src/pip/_internal/wheel_builder.py +5 -27
- {pip-25.0 → pip-25.1}/src/pip/_vendor/README.rst +10 -0
- {pip-25.0 → pip-25.1}/src/pip/_vendor/__init__.py +1 -0
- {pip-25.0 → pip-25.1}/src/pip/_vendor/cachecontrol/__init__.py +1 -1
- {pip-25.0 → pip-25.1}/src/pip/_vendor/cachecontrol/adapter.py +13 -6
- {pip-25.0 → pip-25.1}/src/pip/_vendor/cachecontrol/caches/file_cache.py +10 -47
- {pip-25.0 → pip-25.1}/src/pip/_vendor/cachecontrol/controller.py +12 -1
- {pip-25.0 → pip-25.1}/src/pip/_vendor/certifi/__init__.py +1 -1
- {pip-25.0 → pip-25.1}/src/pip/_vendor/certifi/cacert.pem +122 -154
- pip-25.1/src/pip/_vendor/dependency_groups/LICENSE.txt +9 -0
- pip-25.1/src/pip/_vendor/dependency_groups/__init__.py +13 -0
- pip-25.1/src/pip/_vendor/dependency_groups/__main__.py +65 -0
- pip-25.1/src/pip/_vendor/dependency_groups/_implementation.py +213 -0
- pip-25.1/src/pip/_vendor/dependency_groups/_lint_dependency_groups.py +59 -0
- pip-25.1/src/pip/_vendor/dependency_groups/_pip_wrapper.py +62 -0
- pip-25.1/src/pip/_vendor/dependency_groups/_toml_compat.py +9 -0
- {pip-25.0 → pip-25.1}/src/pip/_vendor/packaging/__init__.py +1 -1
- {pip-25.0 → pip-25.1}/src/pip/_vendor/packaging/_elffile.py +1 -2
- {pip-25.0 → pip-25.1}/src/pip/_vendor/packaging/_manylinux.py +1 -2
- {pip-25.0 → pip-25.1}/src/pip/_vendor/packaging/_parser.py +1 -2
- {pip-25.0 → pip-25.1}/src/pip/_vendor/packaging/_tokenizer.py +5 -4
- {pip-25.0 → pip-25.1}/src/pip/_vendor/packaging/markers.py +53 -22
- {pip-25.0 → pip-25.1}/src/pip/_vendor/packaging/metadata.py +1 -2
- {pip-25.0 → pip-25.1}/src/pip/_vendor/packaging/specifiers.py +1 -2
- {pip-25.0 → pip-25.1}/src/pip/_vendor/packaging/tags.py +39 -0
- {pip-25.0 → pip-25.1}/src/pip/_vendor/platformdirs/__init__.py +20 -20
- {pip-25.0 → pip-25.1}/src/pip/_vendor/platformdirs/android.py +3 -3
- {pip-25.0 → pip-25.1}/src/pip/_vendor/platformdirs/api.py +3 -2
- {pip-25.0 → pip-25.1}/src/pip/_vendor/platformdirs/unix.py +4 -1
- {pip-25.0 → pip-25.1}/src/pip/_vendor/platformdirs/version.py +9 -4
- {pip-25.0 → pip-25.1}/src/pip/_vendor/pygments/__init__.py +2 -2
- {pip-25.0 → pip-25.1}/src/pip/_vendor/pygments/__main__.py +1 -1
- {pip-25.0 → pip-25.1}/src/pip/_vendor/pygments/console.py +1 -1
- {pip-25.0 → pip-25.1}/src/pip/_vendor/pygments/filter.py +1 -1
- {pip-25.0 → pip-25.1}/src/pip/_vendor/pygments/filters/__init__.py +1 -1
- {pip-25.0 → pip-25.1}/src/pip/_vendor/pygments/formatter.py +1 -1
- {pip-25.0 → pip-25.1}/src/pip/_vendor/pygments/formatters/__init__.py +1 -1
- {pip-25.0 → pip-25.1}/src/pip/_vendor/pygments/formatters/_mapping.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_vendor/pygments/lexer.py +1 -1
- {pip-25.0 → pip-25.1}/src/pip/_vendor/pygments/lexers/__init__.py +1 -1
- {pip-25.0 → pip-25.1}/src/pip/_vendor/pygments/lexers/_mapping.py +16 -3
- {pip-25.0 → pip-25.1}/src/pip/_vendor/pygments/lexers/python.py +27 -24
- {pip-25.0 → pip-25.1}/src/pip/_vendor/pygments/modeline.py +1 -1
- {pip-25.0 → pip-25.1}/src/pip/_vendor/pygments/plugin.py +1 -1
- {pip-25.0 → pip-25.1}/src/pip/_vendor/pygments/regexopt.py +1 -1
- {pip-25.0 → pip-25.1}/src/pip/_vendor/pygments/scanner.py +1 -1
- {pip-25.0 → pip-25.1}/src/pip/_vendor/pygments/sphinxext.py +1 -1
- {pip-25.0 → pip-25.1}/src/pip/_vendor/pygments/style.py +1 -1
- {pip-25.0 → pip-25.1}/src/pip/_vendor/pygments/styles/__init__.py +1 -1
- {pip-25.0 → pip-25.1}/src/pip/_vendor/pygments/token.py +1 -1
- {pip-25.0 → pip-25.1}/src/pip/_vendor/pygments/unistring.py +1 -1
- {pip-25.0 → pip-25.1}/src/pip/_vendor/pygments/util.py +1 -1
- {pip-25.0 → pip-25.1}/src/pip/_vendor/resolvelib/__init__.py +3 -2
- pip-25.1/src/pip/_vendor/resolvelib/providers.py +196 -0
- {pip-25.0 → pip-25.1}/src/pip/_vendor/resolvelib/reporters.py +21 -9
- pip-25.1/src/pip/_vendor/resolvelib/resolvers/__init__.py +27 -0
- pip-25.1/src/pip/_vendor/resolvelib/resolvers/abstract.py +47 -0
- pip-25.1/src/pip/_vendor/resolvelib/resolvers/criterion.py +48 -0
- pip-25.1/src/pip/_vendor/resolvelib/resolvers/exceptions.py +57 -0
- pip-25.0/src/pip/_vendor/resolvelib/resolvers.py → pip-25.1/src/pip/_vendor/resolvelib/resolvers/resolution.py +211 -217
- {pip-25.0 → pip-25.1}/src/pip/_vendor/resolvelib/structs.py +93 -54
- {pip-25.0 → pip-25.1}/src/pip/_vendor/rich/console.py +21 -7
- {pip-25.0 → pip-25.1}/src/pip/_vendor/rich/default_styles.py +3 -1
- {pip-25.0 → pip-25.1}/src/pip/_vendor/rich/diagnose.py +7 -6
- {pip-25.0 → pip-25.1}/src/pip/_vendor/rich/panel.py +1 -1
- {pip-25.0 → pip-25.1}/src/pip/_vendor/rich/style.py +1 -1
- {pip-25.0 → pip-25.1}/src/pip/_vendor/rich/table.py +0 -1
- {pip-25.0 → pip-25.1}/src/pip/_vendor/rich/traceback.py +129 -42
- pip-25.1/src/pip/_vendor/tomli_w/LICENSE +21 -0
- pip-25.1/src/pip/_vendor/tomli_w/__init__.py +4 -0
- pip-25.1/src/pip/_vendor/tomli_w/_writer.py +229 -0
- pip-25.1/src/pip/_vendor/tomli_w/py.typed +1 -0
- {pip-25.0 → pip-25.1}/src/pip/_vendor/truststore/__init__.py +2 -2
- {pip-25.0 → pip-25.1}/src/pip/_vendor/truststore/_api.py +18 -1
- {pip-25.0 → pip-25.1}/src/pip/_vendor/typing_extensions.py +1027 -84
- pip-25.1/src/pip/_vendor/vendor.txt +20 -0
- {pip-25.0 → pip-25.1}/src/pip.egg-info/PKG-INFO +4 -4
- {pip-25.0 → pip-25.1}/src/pip.egg-info/SOURCES.txt +29 -19
- pip-25.0/src/pip/_internal/index/__init__.py +0 -2
- pip-25.0/src/pip/_internal/models/__init__.py +0 -2
- pip-25.0/src/pip/_internal/models/wheel.py +0 -118
- pip-25.0/src/pip/_internal/network/__init__.py +0 -2
- pip-25.0/src/pip/_internal/network/download.py +0 -187
- pip-25.0/src/pip/_internal/operations/install/__init__.py +0 -2
- pip-25.0/src/pip/_vendor/pygments/cmdline.py +0 -668
- pip-25.0/src/pip/_vendor/pygments/formatters/bbcode.py +0 -108
- pip-25.0/src/pip/_vendor/pygments/formatters/groff.py +0 -170
- pip-25.0/src/pip/_vendor/pygments/formatters/html.py +0 -987
- pip-25.0/src/pip/_vendor/pygments/formatters/img.py +0 -685
- pip-25.0/src/pip/_vendor/pygments/formatters/irc.py +0 -154
- pip-25.0/src/pip/_vendor/pygments/formatters/latex.py +0 -518
- pip-25.0/src/pip/_vendor/pygments/formatters/other.py +0 -160
- pip-25.0/src/pip/_vendor/pygments/formatters/pangomarkup.py +0 -83
- pip-25.0/src/pip/_vendor/pygments/formatters/rtf.py +0 -349
- pip-25.0/src/pip/_vendor/pygments/formatters/svg.py +0 -185
- pip-25.0/src/pip/_vendor/pygments/formatters/terminal.py +0 -127
- pip-25.0/src/pip/_vendor/pygments/formatters/terminal256.py +0 -338
- pip-25.0/src/pip/_vendor/resolvelib/compat/collections_abc.py +0 -6
- pip-25.0/src/pip/_vendor/resolvelib/providers.py +0 -133
- pip-25.0/src/pip/_vendor/vendor.txt +0 -18
- {pip-25.0 → pip-25.1}/LICENSE.txt +0 -0
- {pip-25.0 → pip-25.1}/README.rst +0 -0
- {pip-25.0 → pip-25.1}/SECURITY.md +0 -0
- {pip-25.0 → pip-25.1/build-project}/build-requirements.in +0 -0
- {pip-25.0 → pip-25.1}/docs/html/cli/pip.rst +0 -0
- {pip-25.0 → pip-25.1}/docs/html/cli/pip_cache.rst +0 -0
- {pip-25.0 → pip-25.1}/docs/html/cli/pip_check.rst +0 -0
- {pip-25.0 → pip-25.1}/docs/html/cli/pip_config.rst +0 -0
- {pip-25.0 → pip-25.1}/docs/html/cli/pip_debug.rst +0 -0
- {pip-25.0 → pip-25.1}/docs/html/cli/pip_freeze.rst +0 -0
- {pip-25.0 → pip-25.1}/docs/html/cli/pip_hash.rst +0 -0
- {pip-25.0 → pip-25.1}/docs/html/cli/pip_inspect.rst +0 -0
- {pip-25.0 → pip-25.1}/docs/html/cli/pip_install.rst +0 -0
- {pip-25.0 → pip-25.1}/docs/html/cli/pip_list.rst +0 -0
- {pip-25.0 → pip-25.1}/docs/html/cli/pip_search.rst +0 -0
- {pip-25.0 → pip-25.1}/docs/html/cli/pip_show.rst +0 -0
- {pip-25.0 → pip-25.1}/docs/html/cli/pip_uninstall.rst +0 -0
- {pip-25.0 → pip-25.1}/docs/html/cli/pip_wheel.rst +0 -0
- {pip-25.0 → pip-25.1}/docs/html/copyright.rst +0 -0
- {pip-25.0 → pip-25.1}/docs/html/development/architecture/anatomy.rst +0 -0
- {pip-25.0 → pip-25.1}/docs/html/development/architecture/command-line-interface.rst +0 -0
- {pip-25.0 → pip-25.1}/docs/html/development/architecture/configuration-files.rst +0 -0
- {pip-25.0 → pip-25.1}/docs/html/development/architecture/index.rst +0 -0
- {pip-25.0 → pip-25.1}/docs/html/development/architecture/overview.rst +0 -0
- {pip-25.0 → pip-25.1}/docs/html/development/architecture/package-finding.rst +0 -0
- {pip-25.0 → pip-25.1}/docs/html/development/architecture/upgrade-options.rst +0 -0
- {pip-25.0 → pip-25.1}/docs/html/development/contributing.rst +0 -0
- {pip-25.0 → pip-25.1}/docs/html/development/conventions.rst +0 -0
- {pip-25.0 → pip-25.1}/docs/html/development/getting-started.rst +0 -0
- {pip-25.0 → pip-25.1}/docs/html/development/index.rst +0 -0
- {pip-25.0 → pip-25.1}/docs/html/development/issue-triage.md +0 -0
- {pip-25.0 → pip-25.1}/docs/html/development/vendoring-policy.rst +0 -0
- {pip-25.0 → pip-25.1}/docs/html/getting-started.md +0 -0
- {pip-25.0 → pip-25.1}/docs/html/index.md +0 -0
- {pip-25.0 → pip-25.1}/docs/html/installing.rst +0 -0
- {pip-25.0 → pip-25.1}/docs/html/news.rst +0 -0
- {pip-25.0 → pip-25.1}/docs/html/quickstart.rst +0 -0
- {pip-25.0 → pip-25.1}/docs/html/reference/build-system/index.md +0 -0
- {pip-25.0 → pip-25.1}/docs/html/reference/build-system/pyproject-toml.md +0 -0
- {pip-25.0 → pip-25.1}/docs/html/reference/build-system/setup-py.md +0 -0
- {pip-25.0 → pip-25.1}/docs/html/reference/index.md +0 -0
- {pip-25.0 → pip-25.1}/docs/html/reference/inspect-report.md +0 -0
- {pip-25.0 → pip-25.1}/docs/html/reference/installation-report.md +0 -0
- {pip-25.0 → pip-25.1}/docs/html/reference/pip.rst +0 -0
- {pip-25.0 → pip-25.1}/docs/html/reference/pip_cache.rst +0 -0
- {pip-25.0 → pip-25.1}/docs/html/reference/pip_check.rst +0 -0
- {pip-25.0 → pip-25.1}/docs/html/reference/pip_config.rst +0 -0
- {pip-25.0 → pip-25.1}/docs/html/reference/pip_debug.rst +0 -0
- {pip-25.0 → pip-25.1}/docs/html/reference/pip_download.rst +0 -0
- {pip-25.0 → pip-25.1}/docs/html/reference/pip_freeze.rst +0 -0
- {pip-25.0 → pip-25.1}/docs/html/reference/pip_hash.rst +0 -0
- {pip-25.0 → pip-25.1}/docs/html/reference/pip_install.rst +0 -0
- {pip-25.0 → pip-25.1}/docs/html/reference/pip_list.rst +0 -0
- {pip-25.0 → pip-25.1}/docs/html/reference/pip_search.rst +0 -0
- {pip-25.0 → pip-25.1}/docs/html/reference/pip_show.rst +0 -0
- {pip-25.0 → pip-25.1}/docs/html/reference/pip_uninstall.rst +0 -0
- {pip-25.0 → pip-25.1}/docs/html/reference/pip_wheel.rst +0 -0
- {pip-25.0 → pip-25.1}/docs/html/reference/requirement-specifiers.md +0 -0
- {pip-25.0 → pip-25.1}/docs/html/reference/requirements-file-format.md +0 -0
- {pip-25.0 → pip-25.1}/docs/html/topics/authentication.md +0 -0
- {pip-25.0 → pip-25.1}/docs/html/topics/caching.md +0 -0
- {pip-25.0 → pip-25.1}/docs/html/topics/configuration.md +0 -0
- {pip-25.0 → pip-25.1}/docs/html/topics/deps.dot +0 -0
- {pip-25.0 → pip-25.1}/docs/html/topics/deps.png +0 -0
- {pip-25.0 → pip-25.1}/docs/html/topics/https-certificates.md +0 -0
- {pip-25.0 → pip-25.1}/docs/html/topics/index.md +0 -0
- {pip-25.0 → pip-25.1}/docs/html/topics/local-project-installs.md +0 -0
- {pip-25.0 → pip-25.1}/docs/html/topics/python-option.md +0 -0
- {pip-25.0 → pip-25.1}/docs/html/topics/repeatable-installs.md +0 -0
- {pip-25.0 → pip-25.1}/docs/html/topics/secure-installs.md +0 -0
- {pip-25.0 → pip-25.1}/docs/html/topics/vcs-support.md +0 -0
- {pip-25.0 → pip-25.1}/docs/html/topics/workflow.md +0 -0
- {pip-25.0 → pip-25.1}/docs/html/ux-research-design/contribute.md +0 -0
- {pip-25.0 → pip-25.1}/docs/html/ux-research-design/guidance.md +0 -0
- {pip-25.0 → pip-25.1}/docs/html/ux-research-design/index.md +0 -0
- {pip-25.0 → pip-25.1}/docs/html/ux-research-design/research-results/about-our-users.md +0 -0
- {pip-25.0 → pip-25.1}/docs/html/ux-research-design/research-results/ci-cd.md +0 -0
- {pip-25.0 → pip-25.1}/docs/html/ux-research-design/research-results/improving-pips-documentation.md +0 -0
- {pip-25.0 → pip-25.1}/docs/html/ux-research-design/research-results/index.md +0 -0
- {pip-25.0 → pip-25.1}/docs/html/ux-research-design/research-results/mental-models.md +0 -0
- {pip-25.0 → pip-25.1}/docs/html/ux-research-design/research-results/override-conflicting-dependencies.md +0 -0
- {pip-25.0 → pip-25.1}/docs/html/ux-research-design/research-results/personas.md +0 -0
- {pip-25.0 → pip-25.1}/docs/html/ux-research-design/research-results/pip-force-reinstall.md +0 -0
- {pip-25.0 → pip-25.1}/docs/html/ux-research-design/research-results/pip-search.md +0 -0
- {pip-25.0 → pip-25.1}/docs/html/ux-research-design/research-results/pip-upgrade-conflict.md +0 -0
- {pip-25.0 → pip-25.1}/docs/html/ux-research-design/research-results/prioritizing-features.md +0 -0
- {pip-25.0 → pip-25.1}/docs/html/ux-research-design/research-results/users-and-security.md +0 -0
- {pip-25.0 → pip-25.1}/docs/man/commands/cache.rst +0 -0
- {pip-25.0 → pip-25.1}/docs/man/commands/check.rst +0 -0
- {pip-25.0 → pip-25.1}/docs/man/commands/config.rst +0 -0
- {pip-25.0 → pip-25.1}/docs/man/commands/debug.rst +0 -0
- {pip-25.0 → pip-25.1}/docs/man/commands/download.rst +0 -0
- {pip-25.0 → pip-25.1}/docs/man/commands/freeze.rst +0 -0
- {pip-25.0 → pip-25.1}/docs/man/commands/hash.rst +0 -0
- {pip-25.0 → pip-25.1}/docs/man/commands/help.rst +0 -0
- {pip-25.0 → pip-25.1}/docs/man/commands/install.rst +0 -0
- {pip-25.0 → pip-25.1}/docs/man/commands/list.rst +0 -0
- {pip-25.0 → pip-25.1}/docs/man/commands/search.rst +0 -0
- {pip-25.0 → pip-25.1}/docs/man/commands/show.rst +0 -0
- {pip-25.0 → pip-25.1}/docs/man/commands/uninstall.rst +0 -0
- {pip-25.0 → pip-25.1}/docs/man/commands/wheel.rst +0 -0
- {pip-25.0 → pip-25.1}/docs/pip_sphinxext.py +0 -0
- {pip-25.0 → pip-25.1}/docs/requirements.txt +0 -0
- {pip-25.0 → pip-25.1}/setup.cfg +0 -0
- {pip-25.0 → pip-25.1}/src/pip/__main__.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_internal/__init__.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_internal/cli/command_context.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_internal/cli/parser.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_internal/cli/spinners.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_internal/cli/status_codes.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_internal/commands/cache.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_internal/commands/check.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_internal/commands/configuration.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_internal/commands/debug.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_internal/commands/download.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_internal/commands/hash.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_internal/commands/help.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_internal/commands/inspect.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_internal/commands/uninstall.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_internal/configuration.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_internal/distributions/__init__.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_internal/distributions/base.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_internal/distributions/installed.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_internal/distributions/sdist.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_internal/distributions/wheel.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_internal/index/collector.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_internal/index/sources.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_internal/locations/_distutils.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_internal/locations/_sysconfig.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_internal/locations/base.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_internal/main.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_internal/metadata/_json.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_internal/metadata/importlib/__init__.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_internal/metadata/importlib/_compat.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_internal/metadata/pkg_resources.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_internal/models/candidate.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_internal/models/format_control.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_internal/models/index.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_internal/models/installation_report.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_internal/models/scheme.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_internal/models/search_scope.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_internal/models/selection_prefs.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_internal/models/target_python.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_internal/network/auth.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_internal/network/lazy_wheel.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_internal/network/session.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_internal/network/utils.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_internal/operations/__init__.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_internal/operations/build/__init__.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_internal/operations/build/build_tracker.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_internal/operations/build/wheel.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_internal/operations/build/wheel_editable.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_internal/operations/freeze.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_internal/pyproject.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_internal/req/constructors.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_internal/req/req_file.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_internal/req/req_set.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_internal/resolution/__init__.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_internal/resolution/base.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_internal/resolution/legacy/__init__.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_internal/resolution/legacy/resolver.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_internal/resolution/resolvelib/__init__.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_internal/resolution/resolvelib/base.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_internal/resolution/resolvelib/requirements.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_internal/self_outdated_check.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_internal/utils/__init__.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_internal/utils/_jaraco_text.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_internal/utils/_log.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_internal/utils/compat.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_internal/utils/deprecation.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_internal/utils/direct_url_helpers.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_internal/utils/egg_link.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_internal/utils/filesystem.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_internal/utils/glibc.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_internal/utils/hashes.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_internal/utils/retry.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_internal/utils/subprocess.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_internal/utils/temp_dir.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_internal/utils/urls.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_internal/utils/virtualenv.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_internal/vcs/__init__.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_internal/vcs/bazaar.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_internal/vcs/mercurial.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_internal/vcs/subversion.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_internal/vcs/versioncontrol.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_vendor/cachecontrol/LICENSE.txt +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_vendor/cachecontrol/_cmd.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_vendor/cachecontrol/cache.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_vendor/cachecontrol/caches/__init__.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_vendor/cachecontrol/caches/redis_cache.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_vendor/cachecontrol/filewrapper.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_vendor/cachecontrol/heuristics.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_vendor/cachecontrol/py.typed +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_vendor/cachecontrol/serialize.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_vendor/cachecontrol/wrapper.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_vendor/certifi/LICENSE +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_vendor/certifi/__main__.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_vendor/certifi/core.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_vendor/certifi/py.typed +0 -0
- {pip-25.0/src/pip/_vendor/distro → pip-25.1/src/pip/_vendor/dependency_groups}/py.typed +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_vendor/distlib/LICENSE.txt +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_vendor/distlib/__init__.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_vendor/distlib/compat.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_vendor/distlib/database.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_vendor/distlib/index.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_vendor/distlib/locators.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_vendor/distlib/manifest.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_vendor/distlib/markers.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_vendor/distlib/metadata.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_vendor/distlib/resources.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_vendor/distlib/scripts.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_vendor/distlib/t32.exe +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_vendor/distlib/t64-arm.exe +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_vendor/distlib/t64.exe +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_vendor/distlib/util.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_vendor/distlib/version.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_vendor/distlib/w32.exe +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_vendor/distlib/w64-arm.exe +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_vendor/distlib/w64.exe +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_vendor/distlib/wheel.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_vendor/distro/LICENSE +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_vendor/distro/__init__.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_vendor/distro/__main__.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_vendor/distro/distro.py +0 -0
- {pip-25.0/src/pip/_vendor/idna → pip-25.1/src/pip/_vendor/distro}/py.typed +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_vendor/idna/LICENSE.md +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_vendor/idna/__init__.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_vendor/idna/codec.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_vendor/idna/compat.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_vendor/idna/core.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_vendor/idna/idnadata.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_vendor/idna/intranges.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_vendor/idna/package_data.py +0 -0
- {pip-25.0/src/pip/_vendor/packaging → pip-25.1/src/pip/_vendor/idna}/py.typed +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_vendor/idna/uts46data.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_vendor/msgpack/COPYING +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_vendor/msgpack/__init__.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_vendor/msgpack/exceptions.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_vendor/msgpack/ext.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_vendor/msgpack/fallback.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_vendor/packaging/LICENSE +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_vendor/packaging/LICENSE.APACHE +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_vendor/packaging/LICENSE.BSD +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_vendor/packaging/_musllinux.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_vendor/packaging/_structures.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_vendor/packaging/licenses/__init__.py +1 -1
- {pip-25.0 → pip-25.1}/src/pip/_vendor/packaging/licenses/_spdx.py +0 -0
- {pip-25.0/src/pip/_vendor/platformdirs → pip-25.1/src/pip/_vendor/packaging}/py.typed +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_vendor/packaging/requirements.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_vendor/packaging/utils.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_vendor/packaging/version.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_vendor/pkg_resources/LICENSE +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_vendor/pkg_resources/__init__.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_vendor/platformdirs/LICENSE +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_vendor/platformdirs/__main__.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_vendor/platformdirs/macos.py +0 -0
- {pip-25.0/src/pip/_vendor/pyproject_hooks → pip-25.1/src/pip/_vendor/platformdirs}/py.typed +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_vendor/platformdirs/windows.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_vendor/pygments/LICENSE +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_vendor/pygments/styles/_mapping.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_vendor/pyproject_hooks/LICENSE +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_vendor/pyproject_hooks/__init__.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_vendor/pyproject_hooks/_impl.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_vendor/pyproject_hooks/_in_process/__init__.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_vendor/pyproject_hooks/_in_process/_in_process.py +0 -0
- {pip-25.0/src/pip/_vendor/resolvelib → pip-25.1/src/pip/_vendor/pyproject_hooks}/py.typed +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_vendor/requests/LICENSE +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_vendor/requests/__init__.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_vendor/requests/__version__.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_vendor/requests/_internal_utils.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_vendor/requests/adapters.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_vendor/requests/api.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_vendor/requests/auth.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_vendor/requests/certs.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_vendor/requests/compat.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_vendor/requests/cookies.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_vendor/requests/exceptions.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_vendor/requests/help.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_vendor/requests/hooks.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_vendor/requests/models.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_vendor/requests/packages.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_vendor/requests/sessions.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_vendor/requests/status_codes.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_vendor/requests/structures.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_vendor/requests/utils.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_vendor/resolvelib/LICENSE +0 -0
- {pip-25.0/src/pip/_vendor/rich → pip-25.1/src/pip/_vendor/resolvelib}/py.typed +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_vendor/rich/LICENSE +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_vendor/rich/__init__.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_vendor/rich/__main__.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_vendor/rich/_cell_widths.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_vendor/rich/_emoji_codes.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_vendor/rich/_emoji_replace.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_vendor/rich/_export_format.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_vendor/rich/_extension.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_vendor/rich/_fileno.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_vendor/rich/_inspect.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_vendor/rich/_log_render.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_vendor/rich/_loop.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_vendor/rich/_null_file.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_vendor/rich/_palettes.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_vendor/rich/_pick.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_vendor/rich/_ratio.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_vendor/rich/_spinners.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_vendor/rich/_stack.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_vendor/rich/_timer.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_vendor/rich/_win32_console.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_vendor/rich/_windows.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_vendor/rich/_windows_renderer.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_vendor/rich/_wrap.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_vendor/rich/abc.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_vendor/rich/align.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_vendor/rich/ansi.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_vendor/rich/bar.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_vendor/rich/box.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_vendor/rich/cells.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_vendor/rich/color.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_vendor/rich/color_triplet.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_vendor/rich/columns.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_vendor/rich/constrain.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_vendor/rich/containers.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_vendor/rich/control.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_vendor/rich/emoji.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_vendor/rich/errors.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_vendor/rich/file_proxy.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_vendor/rich/filesize.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_vendor/rich/highlighter.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_vendor/rich/json.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_vendor/rich/jupyter.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_vendor/rich/layout.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_vendor/rich/live.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_vendor/rich/live_render.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_vendor/rich/logging.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_vendor/rich/markup.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_vendor/rich/measure.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_vendor/rich/padding.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_vendor/rich/pager.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_vendor/rich/palette.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_vendor/rich/pretty.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_vendor/rich/progress.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_vendor/rich/progress_bar.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_vendor/rich/prompt.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_vendor/rich/protocol.py +0 -0
- {pip-25.0/src/pip/_vendor/truststore → pip-25.1/src/pip/_vendor/rich}/py.typed +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_vendor/rich/region.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_vendor/rich/repr.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_vendor/rich/rule.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_vendor/rich/scope.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_vendor/rich/screen.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_vendor/rich/segment.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_vendor/rich/spinner.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_vendor/rich/status.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_vendor/rich/styled.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_vendor/rich/syntax.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_vendor/rich/terminal_theme.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_vendor/rich/text.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_vendor/rich/theme.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_vendor/rich/themes.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_vendor/rich/tree.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_vendor/tomli/LICENSE +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_vendor/tomli/LICENSE-HEADER +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_vendor/tomli/__init__.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_vendor/tomli/_parser.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_vendor/tomli/_re.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_vendor/tomli/_types.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_vendor/tomli/py.typed +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_vendor/truststore/LICENSE +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_vendor/truststore/_macos.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_vendor/truststore/_openssl.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_vendor/truststore/_ssl_constants.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_vendor/truststore/_windows.py +0 -0
- /pip-25.0/src/pip/_vendor/resolvelib/compat/__init__.py → /pip-25.1/src/pip/_vendor/truststore/py.typed +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_vendor/typing_extensions.LICENSE +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_vendor/urllib3/LICENSE.txt +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_vendor/urllib3/__init__.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_vendor/urllib3/_collections.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_vendor/urllib3/_version.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_vendor/urllib3/connection.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_vendor/urllib3/connectionpool.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_vendor/urllib3/contrib/__init__.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_vendor/urllib3/contrib/_appengine_environ.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_vendor/urllib3/contrib/_securetransport/__init__.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_vendor/urllib3/contrib/_securetransport/bindings.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_vendor/urllib3/contrib/_securetransport/low_level.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_vendor/urllib3/contrib/appengine.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_vendor/urllib3/contrib/ntlmpool.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_vendor/urllib3/contrib/pyopenssl.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_vendor/urllib3/contrib/securetransport.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_vendor/urllib3/contrib/socks.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_vendor/urllib3/exceptions.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_vendor/urllib3/fields.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_vendor/urllib3/filepost.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_vendor/urllib3/packages/__init__.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_vendor/urllib3/packages/backports/__init__.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_vendor/urllib3/packages/backports/makefile.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_vendor/urllib3/packages/backports/weakref_finalize.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_vendor/urllib3/packages/six.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_vendor/urllib3/poolmanager.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_vendor/urllib3/request.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_vendor/urllib3/response.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_vendor/urllib3/util/__init__.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_vendor/urllib3/util/connection.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_vendor/urllib3/util/proxy.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_vendor/urllib3/util/queue.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_vendor/urllib3/util/request.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_vendor/urllib3/util/response.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_vendor/urllib3/util/retry.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_vendor/urllib3/util/ssl_.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_vendor/urllib3/util/ssl_match_hostname.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_vendor/urllib3/util/ssltransport.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_vendor/urllib3/util/timeout.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_vendor/urllib3/util/url.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/_vendor/urllib3/util/wait.py +0 -0
- {pip-25.0 → pip-25.1}/src/pip/py.typed +0 -0
- {pip-25.0 → pip-25.1}/src/pip.egg-info/dependency_links.txt +0 -0
- {pip-25.0 → pip-25.1}/src/pip.egg-info/entry_points.txt +0 -0
- {pip-25.0 → pip-25.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
|
{pip-25.0 → pip-25.1}/NEWS.rst
RENAMED
|
@@ -9,6 +9,121 @@
|
|
|
9
9
|
|
|
10
10
|
.. towncrier release notes start
|
|
11
11
|
|
|
12
|
+
25.1 (2025-04-26)
|
|
13
|
+
=================
|
|
14
|
+
|
|
15
|
+
Deprecations and Removals
|
|
16
|
+
-------------------------
|
|
17
|
+
|
|
18
|
+
- Drop support for Python 3.8. (`#12989 <https://github.com/pypa/pip/issues/12989>`_)
|
|
19
|
+
- On python 3.14+, the ``pkg_resources`` metadata backend cannot be used anymore. (`#13010 <https://github.com/pypa/pip/issues/13010>`_)
|
|
20
|
+
- Hide ``--no-python-version-warning`` from CLI help and documentation
|
|
21
|
+
as it's useless since Python 2 support was removed. Despite being
|
|
22
|
+
formerly slated for removal, the flag will remain as a no-op to
|
|
23
|
+
avoid breakage. (`#13303 <https://github.com/pypa/pip/issues/13303>`_)
|
|
24
|
+
- A warning is emitted when the deprecated ``pkg_resources`` library is used to
|
|
25
|
+
inspect and discover installed packages. This warning should only be visible to
|
|
26
|
+
users who set an undocumented environment variable to disable the default
|
|
27
|
+
``importlib.metadata`` backend. (`#13318 <https://github.com/pypa/pip/issues/13318>`_)
|
|
28
|
+
- Deprecate the legacy ``setup.py bdist_wheel`` mechanism. To silence the warning,
|
|
29
|
+
and future-proof their setup, users should enable ``--use-pep517`` or add a
|
|
30
|
+
``pyproject.toml`` file to the projects they control. (`#13319 <https://github.com/pypa/pip/issues/13319>`_)
|
|
31
|
+
|
|
32
|
+
Features
|
|
33
|
+
--------
|
|
34
|
+
|
|
35
|
+
- Suggest checking "pip config debug" in case of an InvalidProxyURL error. (`#12649 <https://github.com/pypa/pip/issues/12649>`_)
|
|
36
|
+
- Using ``--debug`` also enables verbose logging. (`#12710 <https://github.com/pypa/pip/issues/12710>`_)
|
|
37
|
+
- Display a transient progress bar during package installation. (`#12712 <https://github.com/pypa/pip/issues/12712>`_)
|
|
38
|
+
- Minor performance improvement when installing packages with a large number
|
|
39
|
+
of dependencies by increasing the requirement string cache size. (`#12873 <https://github.com/pypa/pip/issues/12873>`_)
|
|
40
|
+
- Add a ``--group`` option which allows installation from :pep:`735` Dependency
|
|
41
|
+
Groups. ``--group`` accepts arguments of the form ``group`` or
|
|
42
|
+
``path:group``, where the default path is ``pyproject.toml``, and installs
|
|
43
|
+
the named Dependency Group from the provided ``pyproject.toml`` file. (`#12963 <https://github.com/pypa/pip/issues/12963>`_)
|
|
44
|
+
- Add support to enable resuming incomplete downloads.
|
|
45
|
+
|
|
46
|
+
Control the number of retry attempts using the ``--resume-retries`` flag. (`#12991 <https://github.com/pypa/pip/issues/12991>`_)
|
|
47
|
+
- Use :pep:`753` "Well-known Project URLs in Metadata" normalization rules when
|
|
48
|
+
identifying an equivalent project URL to replace a missing ``Home-Page`` field
|
|
49
|
+
in ``pip show``. (`#13135 <https://github.com/pypa/pip/issues/13135>`_)
|
|
50
|
+
- Remove ``experimental`` warning from ``pip index versions`` command. (`#13188 <https://github.com/pypa/pip/issues/13188>`_)
|
|
51
|
+
- Add a structured ``--json`` output to ``pip index versions`` (`#13194 <https://github.com/pypa/pip/issues/13194>`_)
|
|
52
|
+
- Add a new, *experimental*, ``pip lock`` command, implementing :pep:`751`. (`#13213 <https://github.com/pypa/pip/issues/13213>`_)
|
|
53
|
+
- Speed up resolution by first only considering the preference of
|
|
54
|
+
candidates that must be required to complete the resolution. (`#13253 <https://github.com/pypa/pip/issues/13253>`_)
|
|
55
|
+
- Improved heuristics for determining the order of dependency resolution. (`#13273 <https://github.com/pypa/pip/issues/13273>`_)
|
|
56
|
+
- Provide hint, documentation, and link to the documentation when
|
|
57
|
+
resolution too deep error occurs. (`#13282 <https://github.com/pypa/pip/issues/13282>`_)
|
|
58
|
+
- Include traceback on failure to import ``setuptools`` when ``setup.py`` is being invoked directly. (`#13290 <https://github.com/pypa/pip/issues/13290>`_)
|
|
59
|
+
- Support for :pep:`738` Android wheels. (`#13299 <https://github.com/pypa/pip/issues/13299>`_)
|
|
60
|
+
- Display wheel build tag in ``pip list`` columns output if set. (`#5210 <https://github.com/pypa/pip/issues/5210>`_)
|
|
61
|
+
- Build environment dependencies are no longer compiled to bytecode during
|
|
62
|
+
installation for a minor performance improvement. (`#7294 <https://github.com/pypa/pip/issues/7294>`_)
|
|
63
|
+
|
|
64
|
+
Bug Fixes
|
|
65
|
+
---------
|
|
66
|
+
|
|
67
|
+
- When using the ``importlib.metadata`` backend (the default on Python 3.11+),
|
|
68
|
+
``pip list`` does not show installed egg distributions more than once anymore.
|
|
69
|
+
Additionally, egg distributions whose parent directory was in ``sys.path`` but
|
|
70
|
+
the egg themselves were not in ``sys.path`` are not detected anymore. (`#12308 <https://github.com/pypa/pip/issues/12308>`_)
|
|
71
|
+
- Disable Git and SSH prompts when ``--no-input`` is passed. (`#12718 <https://github.com/pypa/pip/issues/12718>`_)
|
|
72
|
+
- Gracefully handle Windows registry access errors while guessing the MIME type of a file. (`#12769 <https://github.com/pypa/pip/issues/12769>`_)
|
|
73
|
+
- Support multiple global configuration paths returned by ``platformdirs`` on MacOS. (`#12903 <https://github.com/pypa/pip/issues/12903>`_)
|
|
74
|
+
- Resolvelib 1.1.0 fixes a known issue where pip would report a
|
|
75
|
+
ResolutionImpossible error even though there is a valid solution.
|
|
76
|
+
However, some very complex dependency resolutions that previously
|
|
77
|
+
resolved may resolve slower or fail with an ResolutionTooDeep error. (`#13001 <https://github.com/pypa/pip/issues/13001>`_)
|
|
78
|
+
- 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>`_)
|
|
79
|
+
- Parse wheel filenames according to `binary distribution format specification
|
|
80
|
+
<https://packaging.python.org/en/latest/specifications/binary-distribution-format/#file-format>`_.
|
|
81
|
+
When a filename doesn't match the spec a deprecation warning is emitted and the
|
|
82
|
+
filename is parsed using the old method. (`#13229 <https://github.com/pypa/pip/issues/13229>`_)
|
|
83
|
+
- While resolving dependencies prefer if any of the known requirements are
|
|
84
|
+
"direct", e.g. points to an explicit URL. (`#13244 <https://github.com/pypa/pip/issues/13244>`_)
|
|
85
|
+
- When choosing a preferred requirement for resolving dependencies
|
|
86
|
+
do not consider a specifier with a * in it, e.g. "==1.*", to be a
|
|
87
|
+
pinned specifier. (`#13252 <https://github.com/pypa/pip/issues/13252>`_)
|
|
88
|
+
- Fix a regression that causes dependencies to be checked *before* ``Requires-Python``
|
|
89
|
+
project metadata is checked, leading to wasted cycles when the Python version is
|
|
90
|
+
unsupported. (`#13270 <https://github.com/pypa/pip/issues/13270>`_)
|
|
91
|
+
- Don't require the ``wheel`` library to be installed to use ``--no-use-pep517``, any more. (`#13330 <https://github.com/pypa/pip/issues/13330>`_)
|
|
92
|
+
- Fix regression that suppressed errors indicating which packages were ignored
|
|
93
|
+
due to incompatible ``requires-python`` metadata. (`#13333 <https://github.com/pypa/pip/issues/13333>`_)
|
|
94
|
+
- Fix fish shell completion when commandline contains multiple commands. (`#9727 <https://github.com/pypa/pip/issues/9727>`_)
|
|
95
|
+
|
|
96
|
+
Vendored Libraries
|
|
97
|
+
------------------
|
|
98
|
+
|
|
99
|
+
- Upgrade CacheControl to 0.14.2
|
|
100
|
+
- Upgrade certifi to 2025.1.31
|
|
101
|
+
- Upgrade packaging to 25.0
|
|
102
|
+
- Upgrade platformdirs to 4.3.7
|
|
103
|
+
- Upgrade pygments to 2.19.1
|
|
104
|
+
- Upgrade resolvelib to 1.1.0.
|
|
105
|
+
- Upgrade rich to 14.0.0
|
|
106
|
+
- Vendor tomli-w 1.2.0
|
|
107
|
+
- Upgrade truststore to 0.10.1
|
|
108
|
+
- Upgrade typing_extensions to 4.13.2
|
|
109
|
+
|
|
110
|
+
Improved Documentation
|
|
111
|
+
----------------------
|
|
112
|
+
|
|
113
|
+
- Added support for building only the man pages with minimal dependencies using
|
|
114
|
+
the sphinx-build ``--tag man`` option. This enables distributors to generate man
|
|
115
|
+
pages without requiring HTML documentation dependencies. (`#13168 <https://github.com/pypa/pip/issues/13168>`_)
|
|
116
|
+
|
|
117
|
+
|
|
118
|
+
25.0.1 (2025-02-09)
|
|
119
|
+
===================
|
|
120
|
+
|
|
121
|
+
Bug Fixes
|
|
122
|
+
---------
|
|
123
|
+
|
|
124
|
+
- Fix an unsupported type annotation on Python 3.10 and earlier. (`#13181 <https://github.com/pypa/pip/issues/13181>`_)
|
|
125
|
+
- Fix a regression where truststore would never be used while installing build dependencies. (`#13186 <https://github.com/pypa/pip/issues/13186>`_)
|
|
126
|
+
|
|
12
127
|
25.0 (2025-01-26)
|
|
13
128
|
=================
|
|
14
129
|
|
{pip-25.0 → pip-25.1}/PKG-INFO
RENAMED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
2
|
Name: pip
|
|
3
|
-
Version: 25.
|
|
3
|
+
Version: 25.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.
|
|
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
|
|
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
|
|
@@ -36,6 +37,9 @@ def get_git_head_timestamp() -> str:
|
|
|
36
37
|
def main() -> None:
|
|
37
38
|
with tempfile.TemporaryDirectory() as build_env:
|
|
38
39
|
env_builder = EnvBuilder(with_pip=True)
|
|
40
|
+
# If this venv creation step fails, you may be hitting
|
|
41
|
+
# https://github.com/astral-sh/python-build-standalone/issues/381
|
|
42
|
+
# Try running with a another Python distribution.
|
|
39
43
|
env_builder.create(build_env)
|
|
40
44
|
subprocess.run(
|
|
41
45
|
[
|
|
@@ -60,6 +64,7 @@ def main() -> None:
|
|
|
60
64
|
],
|
|
61
65
|
check=True,
|
|
62
66
|
env={"SOURCE_DATE_EPOCH": get_git_head_timestamp()},
|
|
67
|
+
cwd=Path(__file__).parent.parent,
|
|
63
68
|
)
|
|
64
69
|
|
|
65
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==
|
|
22
|
-
--hash=sha256:
|
|
23
|
-
--hash=sha256:
|
|
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
|
-
#
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
165
|
-
| | +-------+---------------+-----------------+
|
|
166
|
-
| | | CP3.9 | GitHub | GitHub |
|
|
153
|
+
| | x64 | CP3.9 | GitHub | GitHub |
|
|
167
154
|
| | +-------+---------------+-----------------+
|
|
168
155
|
| | | CP3.10| GitHub | GitHub |
|
|
169
156
|
| | +-------+---------------+-----------------+
|
|
@@ -147,7 +147,12 @@ Creating a new release
|
|
|
147
147
|
#. Submit the ``release/YY.N`` branch as a pull request and ensure CI passes.
|
|
148
148
|
Merge the changes back into ``main`` and pull them back locally.
|
|
149
149
|
#. Push the tag created by ``prepare-release``. This will trigger the release
|
|
150
|
-
workflow on GitHub
|
|
150
|
+
workflow on GitHub.
|
|
151
|
+
#. Go to https://github.com/pypa/pip/actions, find the latest ``Publish Python
|
|
152
|
+
🐍 distribution 📦 to PyPI`` workflow run, open it, wait for the build step
|
|
153
|
+
to complete, then approve the PyPI environment to let the publishing step
|
|
154
|
+
run. If you desire, you have the possibility to download and inspect the
|
|
155
|
+
artifacts before approving.
|
|
151
156
|
#. Regenerate the ``get-pip.py`` script in the `get-pip repository`_ (as
|
|
152
157
|
documented there) and commit the results.
|
|
153
158
|
#. Submit a Pull Request to `CPython`_ adding the new version of pip
|
|
@@ -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.
|
|
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
|