From ef510bbf00185f2e1f6aedd9a0af2826c51a906f Mon Sep 17 00:00:00 2001 From: tegwick Date: Tue, 23 Sep 2025 01:19:57 +0200 Subject: [PATCH] chore: Updated to Ubuntu 24.04 and created new .venv --- .venv/bin/Activate.ps1 | 247 + .venv/bin/activate | 70 + .venv/bin/activate.csh | 27 + .venv/bin/activate.fish | 69 + .venv/bin/pip | 8 + .venv/bin/pip3 | 8 + .venv/bin/pip3.12 | 8 + .venv/bin/python | 1 + .venv/bin/python3 | 1 + .venv/bin/python3.12 | 1 + .../pip-24.0.dist-info/AUTHORS.txt | 760 ++ .../pip-24.0.dist-info/INSTALLER | 1 + .../pip-24.0.dist-info/LICENSE.txt | 20 + .../site-packages/pip-24.0.dist-info/METADATA | 88 + .../site-packages/pip-24.0.dist-info/RECORD | 1005 ++ .../pip-24.0.dist-info/REQUESTED | 0 .../site-packages/pip-24.0.dist-info/WHEEL | 5 + .../pip-24.0.dist-info/entry_points.txt | 4 + .../pip-24.0.dist-info/top_level.txt | 1 + .../python3.12/site-packages/pip/__init__.py | 13 + .../python3.12/site-packages/pip/__main__.py | 24 + .../site-packages/pip/__pip-runner__.py | 50 + .../pip/__pycache__/__init__.cpython-312.pyc | Bin 0 -> 761 bytes .../pip/__pycache__/__main__.cpython-312.pyc | Bin 0 -> 917 bytes .../__pip-runner__.cpython-312.pyc | Bin 0 -> 2280 bytes .../site-packages/pip/_internal/__init__.py | 18 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 863 bytes .../__pycache__/build_env.cpython-312.pyc | Bin 0 -> 14370 bytes .../__pycache__/cache.cpython-312.pyc | Bin 0 -> 12741 bytes .../__pycache__/configuration.cpython-312.pyc | Bin 0 -> 17742 bytes .../__pycache__/exceptions.cpython-312.pyc | Bin 0 -> 33360 bytes .../__pycache__/main.cpython-312.pyc | Bin 0 -> 746 bytes .../__pycache__/pyproject.cpython-312.pyc | Bin 0 -> 5047 bytes .../self_outdated_check.cpython-312.pyc | Bin 0 -> 10628 bytes .../__pycache__/wheel_builder.cpython-312.pyc | Bin 0 -> 13725 bytes .../site-packages/pip/_internal/build_env.py | 311 + .../site-packages/pip/_internal/cache.py | 290 + .../pip/_internal/cli/__init__.py | 4 + .../cli/__pycache__/__init__.cpython-312.pyc | Bin 0 -> 354 bytes .../autocompletion.cpython-312.pyc | Bin 0 -> 8541 bytes .../__pycache__/base_command.cpython-312.pyc | Bin 0 -> 10531 bytes .../__pycache__/cmdoptions.cpython-312.pyc | Bin 0 -> 30450 bytes .../command_context.cpython-312.pyc | Bin 0 -> 1857 bytes .../cli/__pycache__/main.cpython-312.pyc | Bin 0 -> 2374 bytes .../__pycache__/main_parser.cpython-312.pyc | Bin 0 -> 4981 bytes .../cli/__pycache__/parser.cpython-312.pyc | Bin 0 -> 15098 bytes .../__pycache__/progress_bars.cpython-312.pyc | Bin 0 -> 2696 bytes .../__pycache__/req_command.cpython-312.pyc | Bin 0 -> 18928 bytes .../cli/__pycache__/spinners.cpython-312.pyc | Bin 0 -> 7916 bytes .../__pycache__/status_codes.cpython-312.pyc | Bin 0 -> 451 bytes .../pip/_internal/cli/autocompletion.py | 172 + .../pip/_internal/cli/base_command.py | 236 + .../pip/_internal/cli/cmdoptions.py | 1074 ++ .../pip/_internal/cli/command_context.py | 27 + .../site-packages/pip/_internal/cli/main.py | 79 + .../pip/_internal/cli/main_parser.py | 134 + .../site-packages/pip/_internal/cli/parser.py | 294 + .../pip/_internal/cli/progress_bars.py | 68 + .../pip/_internal/cli/req_command.py | 505 + .../pip/_internal/cli/spinners.py | 159 + .../pip/_internal/cli/status_codes.py | 6 + .../pip/_internal/commands/__init__.py | 132 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 4078 bytes .../__pycache__/cache.cpython-312.pyc | Bin 0 -> 9787 bytes .../__pycache__/check.cpython-312.pyc | Bin 0 -> 2166 bytes .../__pycache__/completion.cpython-312.pyc | Bin 0 -> 5268 bytes .../__pycache__/configuration.cpython-312.pyc | Bin 0 -> 13288 bytes .../__pycache__/debug.cpython-312.pyc | Bin 0 -> 10237 bytes .../__pycache__/download.cpython-312.pyc | Bin 0 -> 7665 bytes .../__pycache__/freeze.cpython-312.pyc | Bin 0 -> 4492 bytes .../commands/__pycache__/hash.cpython-312.pyc | Bin 0 -> 3059 bytes .../commands/__pycache__/help.cpython-312.pyc | Bin 0 -> 1749 bytes .../__pycache__/index.cpython-312.pyc | Bin 0 -> 6796 bytes .../__pycache__/inspect.cpython-312.pyc | Bin 0 -> 4051 bytes .../__pycache__/install.cpython-312.pyc | Bin 0 -> 28989 bytes .../commands/__pycache__/list.cpython-312.pyc | Bin 0 -> 15732 bytes .../__pycache__/search.cpython-312.pyc | Bin 0 -> 7697 bytes .../commands/__pycache__/show.cpython-312.pyc | Bin 0 -> 9804 bytes .../__pycache__/uninstall.cpython-312.pyc | Bin 0 -> 4802 bytes .../__pycache__/wheel.cpython-312.pyc | Bin 0 -> 9032 bytes .../pip/_internal/commands/cache.py | 225 + .../pip/_internal/commands/check.py | 54 + .../pip/_internal/commands/completion.py | 130 + .../pip/_internal/commands/configuration.py | 280 + .../pip/_internal/commands/debug.py | 201 + .../pip/_internal/commands/download.py | 147 + .../pip/_internal/commands/freeze.py | 109 + .../pip/_internal/commands/hash.py | 59 + .../pip/_internal/commands/help.py | 41 + .../pip/_internal/commands/index.py | 139 + .../pip/_internal/commands/inspect.py | 92 + .../pip/_internal/commands/install.py | 774 ++ .../pip/_internal/commands/list.py | 370 + .../pip/_internal/commands/search.py | 174 + .../pip/_internal/commands/show.py | 189 + .../pip/_internal/commands/uninstall.py | 113 + .../pip/_internal/commands/wheel.py | 183 + .../pip/_internal/configuration.py | 383 + .../pip/_internal/distributions/__init__.py | 21 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 1017 bytes .../__pycache__/base.cpython-312.pyc | Bin 0 -> 2938 bytes .../__pycache__/installed.cpython-312.pyc | Bin 0 -> 1776 bytes .../__pycache__/sdist.cpython-312.pyc | Bin 0 -> 8564 bytes .../__pycache__/wheel.cpython-312.pyc | Bin 0 -> 2324 bytes .../pip/_internal/distributions/base.py | 51 + .../pip/_internal/distributions/installed.py | 29 + .../pip/_internal/distributions/sdist.py | 156 + .../pip/_internal/distributions/wheel.py | 40 + .../site-packages/pip/_internal/exceptions.py | 728 ++ .../pip/_internal/index/__init__.py | 2 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 308 bytes .../__pycache__/collector.cpython-312.pyc | Bin 0 -> 21962 bytes .../package_finder.cpython-312.pyc | Bin 0 -> 40811 bytes .../index/__pycache__/sources.cpython-312.pyc | Bin 0 -> 12680 bytes .../pip/_internal/index/collector.py | 507 + .../pip/_internal/index/package_finder.py | 1027 ++ .../pip/_internal/index/sources.py | 285 + .../pip/_internal/locations/__init__.py | 467 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 16852 bytes .../__pycache__/_distutils.cpython-312.pyc | Bin 0 -> 6932 bytes .../__pycache__/_sysconfig.cpython-312.pyc | Bin 0 -> 8087 bytes .../__pycache__/base.cpython-312.pyc | Bin 0 -> 3857 bytes .../pip/_internal/locations/_distutils.py | 172 + .../pip/_internal/locations/_sysconfig.py | 213 + .../pip/_internal/locations/base.py | 81 + .../site-packages/pip/_internal/main.py | 12 + .../pip/_internal/metadata/__init__.py | 128 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 5958 bytes .../__pycache__/_json.cpython-312.pyc | Bin 0 -> 2951 bytes .../metadata/__pycache__/base.cpython-312.pyc | Bin 0 -> 35788 bytes .../__pycache__/pkg_resources.cpython-312.pyc | Bin 0 -> 15866 bytes .../pip/_internal/metadata/_json.py | 84 + .../pip/_internal/metadata/base.py | 702 ++ .../_internal/metadata/importlib/__init__.py | 6 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 434 bytes .../__pycache__/_compat.cpython-312.pyc | Bin 0 -> 3409 bytes .../__pycache__/_dists.cpython-312.pyc | Bin 0 -> 13501 bytes .../__pycache__/_envs.cpython-312.pyc | Bin 0 -> 11256 bytes .../_internal/metadata/importlib/_compat.py | 55 + .../_internal/metadata/importlib/_dists.py | 227 + .../pip/_internal/metadata/importlib/_envs.py | 189 + .../pip/_internal/metadata/pkg_resources.py | 278 + .../pip/_internal/models/__init__.py | 2 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 342 bytes .../__pycache__/candidate.cpython-312.pyc | Bin 0 -> 1981 bytes .../__pycache__/direct_url.cpython-312.pyc | Bin 0 -> 11275 bytes .../format_control.cpython-312.pyc | Bin 0 -> 4303 bytes .../models/__pycache__/index.cpython-312.pyc | Bin 0 -> 1770 bytes .../installation_report.cpython-312.pyc | Bin 0 -> 2348 bytes .../models/__pycache__/link.cpython-312.pyc | Bin 0 -> 26078 bytes .../models/__pycache__/scheme.cpython-312.pyc | Bin 0 -> 1245 bytes .../__pycache__/search_scope.cpython-312.pyc | Bin 0 -> 5164 bytes .../selection_prefs.cpython-312.pyc | Bin 0 -> 1927 bytes .../__pycache__/target_python.cpython-312.pyc | Bin 0 -> 5030 bytes .../models/__pycache__/wheel.cpython-312.pyc | Bin 0 -> 5856 bytes .../pip/_internal/models/candidate.py | 30 + .../pip/_internal/models/direct_url.py | 235 + .../pip/_internal/models/format_control.py | 78 + .../pip/_internal/models/index.py | 28 + .../_internal/models/installation_report.py | 56 + .../pip/_internal/models/link.py | 579 ++ .../pip/_internal/models/scheme.py | 31 + .../pip/_internal/models/search_scope.py | 132 + .../pip/_internal/models/selection_prefs.py | 51 + .../pip/_internal/models/target_python.py | 122 + .../pip/_internal/models/wheel.py | 92 + .../pip/_internal/network/__init__.py | 2 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 330 bytes .../network/__pycache__/auth.cpython-312.pyc | Bin 0 -> 22072 bytes .../network/__pycache__/cache.cpython-312.pyc | Bin 0 -> 6594 bytes .../__pycache__/download.cpython-312.pyc | Bin 0 -> 8629 bytes .../__pycache__/lazy_wheel.cpython-312.pyc | Bin 0 -> 11739 bytes .../__pycache__/session.cpython-312.pyc | Bin 0 -> 18850 bytes .../network/__pycache__/utils.cpython-312.pyc | Bin 0 -> 2329 bytes .../__pycache__/xmlrpc.cpython-312.pyc | Bin 0 -> 3025 bytes .../pip/_internal/network/auth.py | 561 ++ .../pip/_internal/network/cache.py | 106 + .../pip/_internal/network/download.py | 186 + .../pip/_internal/network/lazy_wheel.py | 210 + .../pip/_internal/network/session.py | 520 + .../pip/_internal/network/utils.py | 96 + .../pip/_internal/network/xmlrpc.py | 62 + .../pip/_internal/operations/__init__.py | 0 .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 273 bytes .../__pycache__/check.cpython-312.pyc | Bin 0 -> 7655 bytes .../__pycache__/freeze.cpython-312.pyc | Bin 0 -> 10193 bytes .../__pycache__/prepare.cpython-312.pyc | Bin 0 -> 25823 bytes .../_internal/operations/build/__init__.py | 0 .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 279 bytes .../__pycache__/build_tracker.cpython-312.pyc | Bin 0 -> 7899 bytes .../__pycache__/metadata.cpython-312.pyc | Bin 0 -> 1956 bytes .../metadata_editable.cpython-312.pyc | Bin 0 -> 1990 bytes .../metadata_legacy.cpython-312.pyc | Bin 0 -> 3141 bytes .../build/__pycache__/wheel.cpython-312.pyc | Bin 0 -> 1760 bytes .../wheel_editable.cpython-312.pyc | Bin 0 -> 2101 bytes .../__pycache__/wheel_legacy.cpython-312.pyc | Bin 0 -> 4005 bytes .../operations/build/build_tracker.py | 139 + .../_internal/operations/build/metadata.py | 39 + .../operations/build/metadata_editable.py | 41 + .../operations/build/metadata_legacy.py | 74 + .../pip/_internal/operations/build/wheel.py | 37 + .../operations/build/wheel_editable.py | 46 + .../operations/build/wheel_legacy.py | 102 + .../pip/_internal/operations/check.py | 187 + .../pip/_internal/operations/freeze.py | 255 + .../_internal/operations/install/__init__.py | 2 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 342 bytes .../editable_legacy.cpython-312.pyc | Bin 0 -> 1893 bytes .../install/__pycache__/wheel.cpython-312.pyc | Bin 0 -> 33935 bytes .../operations/install/editable_legacy.py | 46 + .../pip/_internal/operations/install/wheel.py | 734 ++ .../pip/_internal/operations/prepare.py | 730 ++ .../site-packages/pip/_internal/pyproject.py | 179 + .../pip/_internal/req/__init__.py | 92 + .../req/__pycache__/__init__.cpython-312.pyc | Bin 0 -> 3819 bytes .../__pycache__/constructors.cpython-312.pyc | Bin 0 -> 21658 bytes .../req/__pycache__/req_file.cpython-312.pyc | Bin 0 -> 21537 bytes .../__pycache__/req_install.cpython-312.pyc | Bin 0 -> 38490 bytes .../req/__pycache__/req_set.cpython-312.pyc | Bin 0 -> 7294 bytes .../__pycache__/req_uninstall.cpython-312.pyc | Bin 0 -> 33053 bytes .../pip/_internal/req/constructors.py | 576 ++ .../pip/_internal/req/req_file.py | 554 ++ .../pip/_internal/req/req_install.py | 923 ++ .../pip/_internal/req/req_set.py | 119 + .../pip/_internal/req/req_uninstall.py | 649 ++ .../pip/_internal/resolution/__init__.py | 0 .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 273 bytes .../__pycache__/base.cpython-312.pyc | Bin 0 -> 1261 bytes .../pip/_internal/resolution/base.py | 20 + .../_internal/resolution/legacy/__init__.py | 0 .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 280 bytes .../__pycache__/resolver.cpython-312.pyc | Bin 0 -> 22515 bytes .../_internal/resolution/legacy/resolver.py | 598 ++ .../resolution/resolvelib/__init__.py | 0 .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 284 bytes .../__pycache__/base.cpython-312.pyc | Bin 0 -> 8413 bytes .../__pycache__/candidates.cpython-312.pyc | Bin 0 -> 30474 bytes .../__pycache__/factory.cpython-312.pyc | Bin 0 -> 32190 bytes .../found_candidates.cpython-312.pyc | Bin 0 -> 6284 bytes .../__pycache__/provider.cpython-312.pyc | Bin 0 -> 10454 bytes .../__pycache__/reporter.cpython-312.pyc | Bin 0 -> 5011 bytes .../__pycache__/requirements.cpython-312.pyc | Bin 0 -> 11505 bytes .../__pycache__/resolver.cpython-312.pyc | Bin 0 -> 12427 bytes .../_internal/resolution/resolvelib/base.py | 141 + .../resolution/resolvelib/candidates.py | 597 ++ .../resolution/resolvelib/factory.py | 812 ++ .../resolution/resolvelib/found_candidates.py | 155 + .../resolution/resolvelib/provider.py | 255 + .../resolution/resolvelib/reporter.py | 80 + .../resolution/resolvelib/requirements.py | 166 + .../resolution/resolvelib/resolver.py | 317 + .../pip/_internal/self_outdated_check.py | 248 + .../pip/_internal/utils/__init__.py | 0 .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 268 bytes .../__pycache__/_jaraco_text.cpython-312.pyc | Bin 0 -> 4609 bytes .../utils/__pycache__/_log.cpython-312.pyc | Bin 0 -> 1939 bytes .../utils/__pycache__/appdirs.cpython-312.pyc | Bin 0 -> 2483 bytes .../utils/__pycache__/compat.cpython-312.pyc | Bin 0 -> 2286 bytes .../compatibility_tags.cpython-312.pyc | Bin 0 -> 5634 bytes .../__pycache__/datetime.cpython-312.pyc | Bin 0 -> 757 bytes .../__pycache__/deprecation.cpython-312.pyc | Bin 0 -> 4259 bytes .../direct_url_helpers.cpython-312.pyc | Bin 0 -> 3636 bytes .../__pycache__/egg_link.cpython-312.pyc | Bin 0 -> 3299 bytes .../__pycache__/encoding.cpython-312.pyc | Bin 0 -> 2231 bytes .../__pycache__/entrypoints.cpython-312.pyc | Bin 0 -> 4066 bytes .../__pycache__/filesystem.cpython-312.pyc | Bin 0 -> 7531 bytes .../__pycache__/filetypes.cpython-312.pyc | Bin 0 -> 1237 bytes .../utils/__pycache__/glibc.cpython-312.pyc | Bin 0 -> 2415 bytes .../utils/__pycache__/hashes.cpython-312.pyc | Bin 0 -> 7627 bytes .../utils/__pycache__/logging.cpython-312.pyc | Bin 0 -> 13630 bytes .../utils/__pycache__/misc.cpython-312.pyc | Bin 0 -> 34194 bytes .../utils/__pycache__/models.cpython-312.pyc | Bin 0 -> 2785 bytes .../__pycache__/packaging.cpython-312.pyc | Bin 0 -> 2656 bytes .../setuptools_build.cpython-312.pyc | Bin 0 -> 4623 bytes .../__pycache__/subprocess.cpython-312.pyc | Bin 0 -> 8791 bytes .../__pycache__/temp_dir.cpython-312.pyc | Bin 0 -> 12135 bytes .../__pycache__/unpacking.cpython-312.pyc | Bin 0 -> 11181 bytes .../utils/__pycache__/urls.cpython-312.pyc | Bin 0 -> 2478 bytes .../__pycache__/virtualenv.cpython-312.pyc | Bin 0 -> 4553 bytes .../utils/__pycache__/wheel.cpython-312.pyc | Bin 0 -> 5999 bytes .../pip/_internal/utils/_jaraco_text.py | 109 + .../site-packages/pip/_internal/utils/_log.py | 38 + .../pip/_internal/utils/appdirs.py | 52 + .../pip/_internal/utils/compat.py | 63 + .../pip/_internal/utils/compatibility_tags.py | 165 + .../pip/_internal/utils/datetime.py | 11 + .../pip/_internal/utils/deprecation.py | 120 + .../pip/_internal/utils/direct_url_helpers.py | 87 + .../pip/_internal/utils/egg_link.py | 80 + .../pip/_internal/utils/encoding.py | 36 + .../pip/_internal/utils/entrypoints.py | 84 + .../pip/_internal/utils/filesystem.py | 153 + .../pip/_internal/utils/filetypes.py | 27 + .../pip/_internal/utils/glibc.py | 88 + .../pip/_internal/utils/hashes.py | 151 + .../pip/_internal/utils/logging.py | 348 + .../site-packages/pip/_internal/utils/misc.py | 783 ++ .../pip/_internal/utils/models.py | 39 + .../pip/_internal/utils/packaging.py | 57 + .../pip/_internal/utils/setuptools_build.py | 146 + .../pip/_internal/utils/subprocess.py | 260 + .../pip/_internal/utils/temp_dir.py | 296 + .../pip/_internal/utils/unpacking.py | 257 + .../site-packages/pip/_internal/utils/urls.py | 62 + .../pip/_internal/utils/virtualenv.py | 104 + .../pip/_internal/utils/wheel.py | 134 + .../pip/_internal/vcs/__init__.py | 15 + .../vcs/__pycache__/__init__.cpython-312.pyc | Bin 0 -> 607 bytes .../vcs/__pycache__/bazaar.cpython-312.pyc | Bin 0 -> 5099 bytes .../vcs/__pycache__/git.cpython-312.pyc | Bin 0 -> 19068 bytes .../vcs/__pycache__/mercurial.cpython-312.pyc | Bin 0 -> 7688 bytes .../__pycache__/subversion.cpython-312.pyc | Bin 0 -> 12560 bytes .../versioncontrol.cpython-312.pyc | Bin 0 -> 29086 bytes .../site-packages/pip/_internal/vcs/bazaar.py | 112 + .../site-packages/pip/_internal/vcs/git.py | 526 + .../pip/_internal/vcs/mercurial.py | 163 + .../pip/_internal/vcs/subversion.py | 324 + .../pip/_internal/vcs/versioncontrol.py | 705 ++ .../pip/_internal/wheel_builder.py | 354 + .../site-packages/pip/_vendor/__init__.py | 121 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 4769 bytes .../_vendor/__pycache__/six.cpython-312.pyc | Bin 0 -> 41346 bytes .../typing_extensions.cpython-312.pyc | Bin 0 -> 122126 bytes .../pip/_vendor/cachecontrol/__init__.py | 28 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 979 bytes .../__pycache__/_cmd.cpython-312.pyc | Bin 0 -> 2723 bytes .../__pycache__/adapter.cpython-312.pyc | Bin 0 -> 6541 bytes .../__pycache__/cache.cpython-312.pyc | Bin 0 -> 3886 bytes .../__pycache__/controller.cpython-312.pyc | Bin 0 -> 16244 bytes .../__pycache__/filewrapper.cpython-312.pyc | Bin 0 -> 4424 bytes .../__pycache__/heuristics.cpython-312.pyc | Bin 0 -> 6771 bytes .../__pycache__/serialize.cpython-312.pyc | Bin 0 -> 6482 bytes .../__pycache__/wrapper.cpython-312.pyc | Bin 0 -> 1751 bytes .../pip/_vendor/cachecontrol/_cmd.py | 70 + .../pip/_vendor/cachecontrol/adapter.py | 161 + .../pip/_vendor/cachecontrol/cache.py | 74 + .../_vendor/cachecontrol/caches/__init__.py | 8 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 512 bytes .../__pycache__/file_cache.cpython-312.pyc | Bin 0 -> 7787 bytes .../__pycache__/redis_cache.cpython-312.pyc | Bin 0 -> 2815 bytes .../_vendor/cachecontrol/caches/file_cache.py | 181 + .../cachecontrol/caches/redis_cache.py | 48 + .../pip/_vendor/cachecontrol/controller.py | 494 + .../pip/_vendor/cachecontrol/filewrapper.py | 119 + .../pip/_vendor/cachecontrol/heuristics.py | 154 + .../pip/_vendor/cachecontrol/serialize.py | 206 + .../pip/_vendor/cachecontrol/wrapper.py | 43 + .../pip/_vendor/certifi/__init__.py | 4 + .../pip/_vendor/certifi/__main__.py | 12 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 395 bytes .../__pycache__/__main__.cpython-312.pyc | Bin 0 -> 722 bytes .../certifi/__pycache__/core.cpython-312.pyc | Bin 0 -> 3404 bytes .../pip/_vendor/certifi/cacert.pem | 4635 +++++++++ .../site-packages/pip/_vendor/certifi/core.py | 119 + .../pip/_vendor/chardet/__init__.py | 115 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 4645 bytes .../__pycache__/big5freq.cpython-312.pyc | Bin 0 -> 27276 bytes .../__pycache__/big5prober.cpython-312.pyc | Bin 0 -> 1464 bytes .../chardistribution.cpython-312.pyc | Bin 0 -> 9715 bytes .../charsetgroupprober.cpython-312.pyc | Bin 0 -> 4199 bytes .../__pycache__/charsetprober.cpython-312.pyc | Bin 0 -> 5095 bytes .../codingstatemachine.cpython-312.pyc | Bin 0 -> 3955 bytes .../codingstatemachinedict.cpython-312.pyc | Bin 0 -> 866 bytes .../__pycache__/cp949prober.cpython-312.pyc | Bin 0 -> 1473 bytes .../chardet/__pycache__/enums.cpython-312.pyc | Bin 0 -> 3073 bytes .../__pycache__/escprober.cpython-312.pyc | Bin 0 -> 4643 bytes .../chardet/__pycache__/escsm.cpython-312.pyc | Bin 0 -> 15387 bytes .../__pycache__/eucjpprober.cpython-312.pyc | Bin 0 -> 4460 bytes .../__pycache__/euckrfreq.cpython-312.pyc | Bin 0 -> 12159 bytes .../__pycache__/euckrprober.cpython-312.pyc | Bin 0 -> 1467 bytes .../__pycache__/euctwfreq.cpython-312.pyc | Bin 0 -> 27281 bytes .../__pycache__/euctwprober.cpython-312.pyc | Bin 0 -> 1467 bytes .../__pycache__/gb2312freq.cpython-312.pyc | Bin 0 -> 19203 bytes .../__pycache__/gb2312prober.cpython-312.pyc | Bin 0 -> 1480 bytes .../__pycache__/hebrewprober.cpython-312.pyc | Bin 0 -> 5899 bytes .../__pycache__/jisfreq.cpython-312.pyc | Bin 0 -> 22232 bytes .../__pycache__/johabfreq.cpython-312.pyc | Bin 0 -> 83080 bytes .../__pycache__/johabprober.cpython-312.pyc | Bin 0 -> 1471 bytes .../__pycache__/jpcntx.cpython-312.pyc | Bin 0 -> 39626 bytes .../langbulgarianmodel.cpython-312.pyc | Bin 0 -> 83199 bytes .../langgreekmodel.cpython-312.pyc | Bin 0 -> 77065 bytes .../langhebrewmodel.cpython-312.pyc | Bin 0 -> 77576 bytes .../langhungarianmodel.cpython-312.pyc | Bin 0 -> 83153 bytes .../langrussianmodel.cpython-312.pyc | Bin 0 -> 105328 bytes .../__pycache__/langthaimodel.cpython-312.pyc | Bin 0 -> 77754 bytes .../langturkishmodel.cpython-312.pyc | Bin 0 -> 77593 bytes .../__pycache__/latin1prober.cpython-312.pyc | Bin 0 -> 7079 bytes .../macromanprober.cpython-312.pyc | Bin 0 -> 7259 bytes .../mbcharsetprober.cpython-312.pyc | Bin 0 -> 3980 bytes .../mbcsgroupprober.cpython-312.pyc | Bin 0 -> 1665 bytes .../__pycache__/mbcssm.cpython-312.pyc | Bin 0 -> 38722 bytes .../__pycache__/resultdict.cpython-312.pyc | Bin 0 -> 709 bytes .../sbcharsetprober.cpython-312.pyc | Bin 0 -> 6464 bytes .../sbcsgroupprober.cpython-312.pyc | Bin 0 -> 2434 bytes .../__pycache__/sjisprober.cpython-312.pyc | Bin 0 -> 4572 bytes .../universaldetector.cpython-312.pyc | Bin 0 -> 12346 bytes .../__pycache__/utf1632prober.cpython-312.pyc | Bin 0 -> 10056 bytes .../__pycache__/utf8prober.cpython-312.pyc | Bin 0 -> 3252 bytes .../__pycache__/version.cpython-312.pyc | Bin 0 -> 565 bytes .../pip/_vendor/chardet/big5freq.py | 386 + .../pip/_vendor/chardet/big5prober.py | 47 + .../pip/_vendor/chardet/chardistribution.py | 261 + .../pip/_vendor/chardet/charsetgroupprober.py | 106 + .../pip/_vendor/chardet/charsetprober.py | 147 + .../pip/_vendor/chardet/cli/__init__.py | 0 .../cli/__pycache__/__init__.cpython-312.pyc | Bin 0 -> 272 bytes .../__pycache__/chardetect.cpython-312.pyc | Bin 0 -> 4089 bytes .../pip/_vendor/chardet/cli/chardetect.py | 112 + .../pip/_vendor/chardet/codingstatemachine.py | 90 + .../_vendor/chardet/codingstatemachinedict.py | 19 + .../pip/_vendor/chardet/cp949prober.py | 49 + .../pip/_vendor/chardet/enums.py | 85 + .../pip/_vendor/chardet/escprober.py | 102 + .../pip/_vendor/chardet/escsm.py | 261 + .../pip/_vendor/chardet/eucjpprober.py | 102 + .../pip/_vendor/chardet/euckrfreq.py | 196 + .../pip/_vendor/chardet/euckrprober.py | 47 + .../pip/_vendor/chardet/euctwfreq.py | 388 + .../pip/_vendor/chardet/euctwprober.py | 47 + .../pip/_vendor/chardet/gb2312freq.py | 284 + .../pip/_vendor/chardet/gb2312prober.py | 47 + .../pip/_vendor/chardet/hebrewprober.py | 316 + .../pip/_vendor/chardet/jisfreq.py | 325 + .../pip/_vendor/chardet/johabfreq.py | 2382 +++++ .../pip/_vendor/chardet/johabprober.py | 47 + .../pip/_vendor/chardet/jpcntx.py | 238 + .../pip/_vendor/chardet/langbulgarianmodel.py | 4649 +++++++++ .../pip/_vendor/chardet/langgreekmodel.py | 4397 +++++++++ .../pip/_vendor/chardet/langhebrewmodel.py | 4380 +++++++++ .../pip/_vendor/chardet/langhungarianmodel.py | 4649 +++++++++ .../pip/_vendor/chardet/langrussianmodel.py | 5725 +++++++++++ .../pip/_vendor/chardet/langthaimodel.py | 4380 +++++++++ .../pip/_vendor/chardet/langturkishmodel.py | 4380 +++++++++ .../pip/_vendor/chardet/latin1prober.py | 147 + .../pip/_vendor/chardet/macromanprober.py | 162 + .../pip/_vendor/chardet/mbcharsetprober.py | 95 + .../pip/_vendor/chardet/mbcsgroupprober.py | 57 + .../pip/_vendor/chardet/mbcssm.py | 661 ++ .../pip/_vendor/chardet/metadata/__init__.py | 0 .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 277 bytes .../__pycache__/languages.cpython-312.pyc | Bin 0 -> 9832 bytes .../pip/_vendor/chardet/metadata/languages.py | 352 + .../pip/_vendor/chardet/resultdict.py | 16 + .../pip/_vendor/chardet/sbcharsetprober.py | 162 + .../pip/_vendor/chardet/sbcsgroupprober.py | 88 + .../pip/_vendor/chardet/sjisprober.py | 105 + .../pip/_vendor/chardet/universaldetector.py | 362 + .../pip/_vendor/chardet/utf1632prober.py | 225 + .../pip/_vendor/chardet/utf8prober.py | 82 + .../pip/_vendor/chardet/version.py | 9 + .../pip/_vendor/colorama/__init__.py | 7 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 569 bytes .../colorama/__pycache__/ansi.cpython-312.pyc | Bin 0 -> 4027 bytes .../__pycache__/ansitowin32.cpython-312.pyc | Bin 0 -> 16498 bytes .../__pycache__/initialise.cpython-312.pyc | Bin 0 -> 3627 bytes .../__pycache__/win32.cpython-312.pyc | Bin 0 -> 8203 bytes .../__pycache__/winterm.cpython-312.pyc | Bin 0 -> 9165 bytes .../pip/_vendor/colorama/ansi.py | 102 + .../pip/_vendor/colorama/ansitowin32.py | 277 + .../pip/_vendor/colorama/initialise.py | 121 + .../pip/_vendor/colorama/tests/__init__.py | 1 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 275 bytes .../__pycache__/ansi_test.cpython-312.pyc | Bin 0 -> 5544 bytes .../ansitowin32_test.cpython-312.pyc | Bin 0 -> 18180 bytes .../initialise_test.cpython-312.pyc | Bin 0 -> 11825 bytes .../__pycache__/isatty_test.cpython-312.pyc | Bin 0 -> 4981 bytes .../tests/__pycache__/utils.cpython-312.pyc | Bin 0 -> 2565 bytes .../__pycache__/winterm_test.cpython-312.pyc | Bin 0 -> 6689 bytes .../pip/_vendor/colorama/tests/ansi_test.py | 76 + .../colorama/tests/ansitowin32_test.py | 294 + .../_vendor/colorama/tests/initialise_test.py | 189 + .../pip/_vendor/colorama/tests/isatty_test.py | 57 + .../pip/_vendor/colorama/tests/utils.py | 49 + .../_vendor/colorama/tests/winterm_test.py | 131 + .../pip/_vendor/colorama/win32.py | 180 + .../pip/_vendor/colorama/winterm.py | 195 + .../pip/_vendor/distlib/__init__.py | 33 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 1346 bytes .../__pycache__/compat.cpython-312.pyc | Bin 0 -> 45682 bytes .../__pycache__/database.cpython-312.pyc | Bin 0 -> 66104 bytes .../distlib/__pycache__/index.cpython-312.pyc | Bin 0 -> 24443 bytes .../__pycache__/locators.cpython-312.pyc | Bin 0 -> 60235 bytes .../__pycache__/manifest.cpython-312.pyc | Bin 0 -> 15202 bytes .../__pycache__/markers.cpython-312.pyc | Bin 0 -> 7759 bytes .../__pycache__/metadata.cpython-312.pyc | Bin 0 -> 41876 bytes .../__pycache__/resources.cpython-312.pyc | Bin 0 -> 17402 bytes .../__pycache__/scripts.cpython-312.pyc | Bin 0 -> 19657 bytes .../distlib/__pycache__/util.cpython-312.pyc | Bin 0 -> 88333 bytes .../__pycache__/version.cpython-312.pyc | Bin 0 -> 30443 bytes .../distlib/__pycache__/wheel.cpython-312.pyc | Bin 0 -> 51938 bytes .../pip/_vendor/distlib/compat.py | 1138 +++ .../pip/_vendor/distlib/database.py | 1359 +++ .../pip/_vendor/distlib/index.py | 508 + .../pip/_vendor/distlib/locators.py | 1303 +++ .../pip/_vendor/distlib/manifest.py | 384 + .../pip/_vendor/distlib/markers.py | 167 + .../pip/_vendor/distlib/metadata.py | 1068 ++ .../pip/_vendor/distlib/resources.py | 358 + .../pip/_vendor/distlib/scripts.py | 452 + .../site-packages/pip/_vendor/distlib/util.py | 2025 ++++ .../pip/_vendor/distlib/version.py | 751 ++ .../pip/_vendor/distlib/wheel.py | 1099 +++ .../pip/_vendor/distro/__init__.py | 54 + .../pip/_vendor/distro/__main__.py | 4 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 1037 bytes .../__pycache__/__main__.cpython-312.pyc | Bin 0 -> 369 bytes .../distro/__pycache__/distro.cpython-312.pyc | Bin 0 -> 53831 bytes .../pip/_vendor/distro/distro.py | 1399 +++ .../pip/_vendor/idna/__init__.py | 44 + .../idna/__pycache__/__init__.cpython-312.pyc | Bin 0 -> 958 bytes .../idna/__pycache__/codec.cpython-312.pyc | Bin 0 -> 4710 bytes .../idna/__pycache__/compat.cpython-312.pyc | Bin 0 -> 964 bytes .../idna/__pycache__/core.cpython-312.pyc | Bin 0 -> 16359 bytes .../idna/__pycache__/idnadata.cpython-312.pyc | Bin 0 -> 38459 bytes .../__pycache__/intranges.cpython-312.pyc | Bin 0 -> 2715 bytes .../__pycache__/package_data.cpython-312.pyc | Bin 0 -> 293 bytes .../__pycache__/uts46data.cpython-312.pyc | Bin 0 -> 158947 bytes .../site-packages/pip/_vendor/idna/codec.py | 112 + .../site-packages/pip/_vendor/idna/compat.py | 13 + .../site-packages/pip/_vendor/idna/core.py | 400 + .../pip/_vendor/idna/idnadata.py | 2151 +++++ .../pip/_vendor/idna/intranges.py | 54 + .../pip/_vendor/idna/package_data.py | 2 + .../pip/_vendor/idna/uts46data.py | 8600 +++++++++++++++++ .../pip/_vendor/msgpack/__init__.py | 57 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 1908 bytes .../__pycache__/exceptions.cpython-312.pyc | Bin 0 -> 2102 bytes .../msgpack/__pycache__/ext.cpython-312.pyc | Bin 0 -> 8745 bytes .../__pycache__/fallback.cpython-312.pyc | Bin 0 -> 43653 bytes .../pip/_vendor/msgpack/exceptions.py | 48 + .../site-packages/pip/_vendor/msgpack/ext.py | 193 + .../pip/_vendor/msgpack/fallback.py | 1010 ++ .../pip/_vendor/packaging/__about__.py | 26 + .../pip/_vendor/packaging/__init__.py | 25 + .../__pycache__/__about__.cpython-312.pyc | Bin 0 -> 707 bytes .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 543 bytes .../__pycache__/_manylinux.cpython-312.pyc | Bin 0 -> 12153 bytes .../__pycache__/_musllinux.cpython-312.pyc | Bin 0 -> 6987 bytes .../__pycache__/_structures.cpython-312.pyc | Bin 0 -> 3318 bytes .../__pycache__/markers.cpython-312.pyc | Bin 0 -> 14135 bytes .../__pycache__/requirements.cpython-312.pyc | Bin 0 -> 7023 bytes .../__pycache__/specifiers.cpython-312.pyc | Bin 0 -> 31324 bytes .../__pycache__/tags.cpython-312.pyc | Bin 0 -> 19033 bytes .../__pycache__/utils.cpython-312.pyc | Bin 0 -> 5945 bytes .../__pycache__/version.cpython-312.pyc | Bin 0 -> 20016 bytes .../pip/_vendor/packaging/_manylinux.py | 301 + .../pip/_vendor/packaging/_musllinux.py | 136 + .../pip/_vendor/packaging/_structures.py | 61 + .../pip/_vendor/packaging/markers.py | 304 + .../pip/_vendor/packaging/requirements.py | 146 + .../pip/_vendor/packaging/specifiers.py | 802 ++ .../pip/_vendor/packaging/tags.py | 487 + .../pip/_vendor/packaging/utils.py | 136 + .../pip/_vendor/packaging/version.py | 504 + .../pip/_vendor/pkg_resources/__init__.py | 3361 +++++++ .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 146551 bytes .../pip/_vendor/platformdirs/__init__.py | 566 ++ .../pip/_vendor/platformdirs/__main__.py | 53 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 18106 bytes .../__pycache__/__main__.cpython-312.pyc | Bin 0 -> 2023 bytes .../__pycache__/android.cpython-312.pyc | Bin 0 -> 9521 bytes .../__pycache__/api.cpython-312.pyc | Bin 0 -> 9749 bytes .../__pycache__/macos.cpython-312.pyc | Bin 0 -> 5714 bytes .../__pycache__/unix.cpython-312.pyc | Bin 0 -> 12518 bytes .../__pycache__/version.cpython-312.pyc | Bin 0 -> 388 bytes .../__pycache__/windows.cpython-312.pyc | Bin 0 -> 13076 bytes .../pip/_vendor/platformdirs/android.py | 210 + .../pip/_vendor/platformdirs/api.py | 223 + .../pip/_vendor/platformdirs/macos.py | 91 + .../pip/_vendor/platformdirs/unix.py | 223 + .../pip/_vendor/platformdirs/version.py | 4 + .../pip/_vendor/platformdirs/windows.py | 255 + .../pip/_vendor/pygments/__init__.py | 82 + .../pip/_vendor/pygments/__main__.py | 17 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 3566 bytes .../__pycache__/__main__.cpython-312.pyc | Bin 0 -> 812 bytes .../__pycache__/cmdline.cpython-312.pyc | Bin 0 -> 26683 bytes .../__pycache__/console.cpython-312.pyc | Bin 0 -> 2704 bytes .../__pycache__/filter.cpython-312.pyc | Bin 0 -> 3310 bytes .../__pycache__/formatter.cpython-312.pyc | Bin 0 -> 4647 bytes .../__pycache__/lexer.cpython-312.pyc | Bin 0 -> 38407 bytes .../__pycache__/modeline.cpython-312.pyc | Bin 0 -> 1646 bytes .../__pycache__/plugin.cpython-312.pyc | Bin 0 -> 3474 bytes .../__pycache__/regexopt.cpython-312.pyc | Bin 0 -> 4159 bytes .../__pycache__/scanner.cpython-312.pyc | Bin 0 -> 4834 bytes .../__pycache__/sphinxext.cpython-312.pyc | Bin 0 -> 11124 bytes .../__pycache__/style.cpython-312.pyc | Bin 0 -> 6752 bytes .../__pycache__/token.cpython-312.pyc | Bin 0 -> 8220 bytes .../__pycache__/unistring.cpython-312.pyc | Bin 0 -> 33066 bytes .../pygments/__pycache__/util.cpython-312.pyc | Bin 0 -> 14059 bytes .../pip/_vendor/pygments/cmdline.py | 668 ++ .../pip/_vendor/pygments/console.py | 70 + .../pip/_vendor/pygments/filter.py | 71 + .../pip/_vendor/pygments/filters/__init__.py | 940 ++ .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 38014 bytes .../pip/_vendor/pygments/formatter.py | 124 + .../_vendor/pygments/formatters/__init__.py | 158 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 7004 bytes .../__pycache__/_mapping.cpython-312.pyc | Bin 0 -> 4293 bytes .../__pycache__/bbcode.cpython-312.pyc | Bin 0 -> 4272 bytes .../__pycache__/groff.cpython-312.pyc | Bin 0 -> 7342 bytes .../__pycache__/html.cpython-312.pyc | Bin 0 -> 40650 bytes .../__pycache__/img.cpython-312.pyc | Bin 0 -> 27121 bytes .../__pycache__/irc.cpython-312.pyc | Bin 0 -> 6143 bytes .../__pycache__/latex.cpython-312.pyc | Bin 0 -> 20032 bytes .../__pycache__/other.cpython-312.pyc | Bin 0 -> 6962 bytes .../__pycache__/pangomarkup.cpython-312.pyc | Bin 0 -> 3008 bytes .../__pycache__/rtf.cpython-312.pyc | Bin 0 -> 6204 bytes .../__pycache__/svg.cpython-312.pyc | Bin 0 -> 9144 bytes .../__pycache__/terminal.cpython-312.pyc | Bin 0 -> 5907 bytes .../__pycache__/terminal256.cpython-312.pyc | Bin 0 -> 15235 bytes .../_vendor/pygments/formatters/_mapping.py | 23 + .../pip/_vendor/pygments/formatters/bbcode.py | 108 + .../pip/_vendor/pygments/formatters/groff.py | 170 + .../pip/_vendor/pygments/formatters/html.py | 989 ++ .../pip/_vendor/pygments/formatters/img.py | 645 ++ .../pip/_vendor/pygments/formatters/irc.py | 154 + .../pip/_vendor/pygments/formatters/latex.py | 521 + .../pip/_vendor/pygments/formatters/other.py | 161 + .../pygments/formatters/pangomarkup.py | 83 + .../pip/_vendor/pygments/formatters/rtf.py | 146 + .../pip/_vendor/pygments/formatters/svg.py | 188 + .../_vendor/pygments/formatters/terminal.py | 127 + .../pygments/formatters/terminal256.py | 338 + .../pip/_vendor/pygments/lexer.py | 943 ++ .../pip/_vendor/pygments/lexers/__init__.py | 362 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 14730 bytes .../__pycache__/_mapping.cpython-312.pyc | Bin 0 -> 64482 bytes .../lexers/__pycache__/python.cpython-312.pyc | Bin 0 -> 42717 bytes .../pip/_vendor/pygments/lexers/_mapping.py | 559 ++ .../pip/_vendor/pygments/lexers/python.py | 1198 +++ .../pip/_vendor/pygments/modeline.py | 43 + .../pip/_vendor/pygments/plugin.py | 88 + .../pip/_vendor/pygments/regexopt.py | 91 + .../pip/_vendor/pygments/scanner.py | 104 + .../pip/_vendor/pygments/sphinxext.py | 217 + .../pip/_vendor/pygments/style.py | 197 + .../pip/_vendor/pygments/styles/__init__.py | 103 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 4526 bytes .../pip/_vendor/pygments/token.py | 213 + .../pip/_vendor/pygments/unistring.py | 153 + .../pip/_vendor/pygments/util.py | 330 + .../pip/_vendor/pyparsing/__init__.py | 322 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 7989 bytes .../__pycache__/actions.cpython-312.pyc | Bin 0 -> 8473 bytes .../__pycache__/common.cpython-312.pyc | Bin 0 -> 13492 bytes .../__pycache__/core.cpython-312.pyc | Bin 0 -> 267786 bytes .../__pycache__/exceptions.cpython-312.pyc | Bin 0 -> 13072 bytes .../__pycache__/helpers.cpython-312.pyc | Bin 0 -> 48579 bytes .../__pycache__/results.cpython-312.pyc | Bin 0 -> 34188 bytes .../__pycache__/testing.cpython-312.pyc | Bin 0 -> 17266 bytes .../__pycache__/unicode.cpython-312.pyc | Bin 0 -> 13262 bytes .../__pycache__/util.cpython-312.pyc | Bin 0 -> 14982 bytes .../pip/_vendor/pyparsing/actions.py | 217 + .../pip/_vendor/pyparsing/common.py | 432 + .../pip/_vendor/pyparsing/core.py | 6115 ++++++++++++ .../pip/_vendor/pyparsing/diagram/__init__.py | 656 ++ .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 26891 bytes .../pip/_vendor/pyparsing/exceptions.py | 299 + .../pip/_vendor/pyparsing/helpers.py | 1100 +++ .../pip/_vendor/pyparsing/results.py | 796 ++ .../pip/_vendor/pyparsing/testing.py | 331 + .../pip/_vendor/pyparsing/unicode.py | 361 + .../pip/_vendor/pyparsing/util.py | 284 + .../pip/_vendor/pyproject_hooks/__init__.py | 23 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 691 bytes .../__pycache__/_compat.cpython-312.pyc | Bin 0 -> 452 bytes .../__pycache__/_impl.cpython-312.pyc | Bin 0 -> 14803 bytes .../pip/_vendor/pyproject_hooks/_compat.py | 8 + .../pip/_vendor/pyproject_hooks/_impl.py | 330 + .../pyproject_hooks/_in_process/__init__.py | 18 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 1158 bytes .../__pycache__/_in_process.cpython-312.pyc | Bin 0 -> 14475 bytes .../_in_process/_in_process.py | 353 + .../pip/_vendor/requests/__init__.py | 182 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 5531 bytes .../__pycache__/__version__.cpython-312.pyc | Bin 0 -> 662 bytes .../_internal_utils.cpython-312.pyc | Bin 0 -> 2102 bytes .../__pycache__/adapters.cpython-312.pyc | Bin 0 -> 21358 bytes .../requests/__pycache__/api.cpython-312.pyc | Bin 0 -> 7282 bytes .../requests/__pycache__/auth.cpython-312.pyc | Bin 0 -> 14001 bytes .../__pycache__/certs.cpython-312.pyc | Bin 0 -> 1000 bytes .../__pycache__/compat.cpython-312.pyc | Bin 0 -> 1585 bytes .../__pycache__/cookies.cpython-312.pyc | Bin 0 -> 25324 bytes .../__pycache__/exceptions.cpython-312.pyc | Bin 0 -> 7125 bytes .../requests/__pycache__/help.cpython-312.pyc | Bin 0 -> 4390 bytes .../__pycache__/hooks.cpython-312.pyc | Bin 0 -> 1130 bytes .../__pycache__/models.cpython-312.pyc | Bin 0 -> 35526 bytes .../__pycache__/packages.cpython-312.pyc | Bin 0 -> 850 bytes .../__pycache__/sessions.cpython-312.pyc | Bin 0 -> 27835 bytes .../__pycache__/status_codes.cpython-312.pyc | Bin 0 -> 6037 bytes .../__pycache__/structures.cpython-312.pyc | Bin 0 -> 5695 bytes .../__pycache__/utils.cpython-312.pyc | Bin 0 -> 36347 bytes .../pip/_vendor/requests/__version__.py | 14 + .../pip/_vendor/requests/_internal_utils.py | 50 + .../pip/_vendor/requests/adapters.py | 538 ++ .../site-packages/pip/_vendor/requests/api.py | 157 + .../pip/_vendor/requests/auth.py | 315 + .../pip/_vendor/requests/certs.py | 24 + .../pip/_vendor/requests/compat.py | 67 + .../pip/_vendor/requests/cookies.py | 561 ++ .../pip/_vendor/requests/exceptions.py | 141 + .../pip/_vendor/requests/help.py | 131 + .../pip/_vendor/requests/hooks.py | 33 + .../pip/_vendor/requests/models.py | 1034 ++ .../pip/_vendor/requests/packages.py | 16 + .../pip/_vendor/requests/sessions.py | 833 ++ .../pip/_vendor/requests/status_codes.py | 128 + .../pip/_vendor/requests/structures.py | 99 + .../pip/_vendor/requests/utils.py | 1094 +++ .../pip/_vendor/resolvelib/__init__.py | 26 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 712 bytes .../__pycache__/providers.cpython-312.pyc | Bin 0 -> 6929 bytes .../__pycache__/reporters.cpython-312.pyc | Bin 0 -> 2732 bytes .../__pycache__/resolvers.cpython-312.pyc | Bin 0 -> 25975 bytes .../__pycache__/structs.cpython-312.pyc | Bin 0 -> 10584 bytes .../pip/_vendor/resolvelib/compat/__init__.py | 0 .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 278 bytes .../collections_abc.cpython-312.pyc | Bin 0 -> 498 bytes .../resolvelib/compat/collections_abc.py | 6 + .../pip/_vendor/resolvelib/providers.py | 133 + .../pip/_vendor/resolvelib/reporters.py | 43 + .../pip/_vendor/resolvelib/resolvers.py | 547 ++ .../pip/_vendor/resolvelib/structs.py | 170 + .../pip/_vendor/rich/__init__.py | 177 + .../pip/_vendor/rich/__main__.py | 274 + .../rich/__pycache__/__init__.cpython-312.pyc | Bin 0 -> 7093 bytes .../rich/__pycache__/__main__.cpython-312.pyc | Bin 0 -> 10382 bytes .../__pycache__/_cell_widths.cpython-312.pyc | Bin 0 -> 7899 bytes .../__pycache__/_emoji_codes.cpython-312.pyc | Bin 0 -> 206054 bytes .../_emoji_replace.cpython-312.pyc | Bin 0 -> 1807 bytes .../_export_format.cpython-312.pyc | Bin 0 -> 2399 bytes .../__pycache__/_extension.cpython-312.pyc | Bin 0 -> 615 bytes .../rich/__pycache__/_fileno.cpython-312.pyc | Bin 0 -> 933 bytes .../rich/__pycache__/_inspect.cpython-312.pyc | Bin 0 -> 12155 bytes .../__pycache__/_log_render.cpython-312.pyc | Bin 0 -> 4225 bytes .../rich/__pycache__/_loop.cpython-312.pyc | Bin 0 -> 1963 bytes .../__pycache__/_null_file.cpython-312.pyc | Bin 0 -> 3698 bytes .../__pycache__/_palettes.cpython-312.pyc | Bin 0 -> 5238 bytes .../rich/__pycache__/_pick.cpython-312.pyc | Bin 0 -> 804 bytes .../rich/__pycache__/_ratio.cpython-312.pyc | Bin 0 -> 6657 bytes .../__pycache__/_spinners.cpython-312.pyc | Bin 0 -> 13257 bytes .../rich/__pycache__/_stack.cpython-312.pyc | Bin 0 -> 1043 bytes .../rich/__pycache__/_timer.cpython-312.pyc | Bin 0 -> 943 bytes .../_win32_console.cpython-312.pyc | Bin 0 -> 29054 bytes .../rich/__pycache__/_windows.cpython-312.pyc | Bin 0 -> 2568 bytes .../_windows_renderer.cpython-312.pyc | Bin 0 -> 3651 bytes .../rich/__pycache__/_wrap.cpython-312.pyc | Bin 0 -> 2438 bytes .../rich/__pycache__/abc.cpython-312.pyc | Bin 0 -> 1686 bytes .../rich/__pycache__/align.cpython-312.pyc | Bin 0 -> 12400 bytes .../rich/__pycache__/ansi.cpython-312.pyc | Bin 0 -> 9184 bytes .../rich/__pycache__/bar.cpython-312.pyc | Bin 0 -> 4350 bytes .../rich/__pycache__/box.cpython-312.pyc | Bin 0 -> 11936 bytes .../rich/__pycache__/cells.cpython-312.pyc | Bin 0 -> 5696 bytes .../rich/__pycache__/color.cpython-312.pyc | Bin 0 -> 26648 bytes .../__pycache__/color_triplet.cpython-312.pyc | Bin 0 -> 1779 bytes .../rich/__pycache__/columns.cpython-312.pyc | Bin 0 -> 8665 bytes .../rich/__pycache__/console.cpython-312.pyc | Bin 0 -> 113871 bytes .../__pycache__/constrain.cpython-312.pyc | Bin 0 -> 2336 bytes .../__pycache__/containers.cpython-312.pyc | Bin 0 -> 9304 bytes .../rich/__pycache__/control.cpython-312.pyc | Bin 0 -> 11007 bytes .../default_styles.cpython-312.pyc | Bin 0 -> 10451 bytes .../rich/__pycache__/diagnose.cpython-312.pyc | Bin 0 -> 1565 bytes .../rich/__pycache__/emoji.cpython-312.pyc | Bin 0 -> 4287 bytes .../rich/__pycache__/errors.cpython-312.pyc | Bin 0 -> 1923 bytes .../__pycache__/file_proxy.cpython-312.pyc | Bin 0 -> 3655 bytes .../rich/__pycache__/filesize.cpython-312.pyc | Bin 0 -> 3160 bytes .../__pycache__/highlighter.cpython-312.pyc | Bin 0 -> 9976 bytes .../rich/__pycache__/json.cpython-312.pyc | Bin 0 -> 6113 bytes .../rich/__pycache__/jupyter.cpython-312.pyc | Bin 0 -> 5287 bytes .../rich/__pycache__/layout.cpython-312.pyc | Bin 0 -> 20298 bytes .../rich/__pycache__/live.cpython-312.pyc | Bin 0 -> 19221 bytes .../__pycache__/live_render.cpython-312.pyc | Bin 0 -> 4972 bytes .../rich/__pycache__/logging.cpython-312.pyc | Bin 0 -> 13632 bytes .../rich/__pycache__/markup.cpython-312.pyc | Bin 0 -> 9376 bytes .../rich/__pycache__/measure.cpython-312.pyc | Bin 0 -> 6454 bytes .../rich/__pycache__/padding.cpython-312.pyc | Bin 0 -> 7212 bytes .../rich/__pycache__/pager.cpython-312.pyc | Bin 0 -> 1898 bytes .../rich/__pycache__/palette.cpython-312.pyc | Bin 0 -> 5392 bytes .../rich/__pycache__/panel.cpython-312.pyc | Bin 0 -> 12175 bytes .../rich/__pycache__/pretty.cpython-312.pyc | Bin 0 -> 40134 bytes .../rich/__pycache__/progress.cpython-312.pyc | Bin 0 -> 75156 bytes .../__pycache__/progress_bar.cpython-312.pyc | Bin 0 -> 10467 bytes .../rich/__pycache__/prompt.cpython-312.pyc | Bin 0 -> 14859 bytes .../rich/__pycache__/protocol.cpython-312.pyc | Bin 0 -> 1870 bytes .../rich/__pycache__/region.cpython-312.pyc | Bin 0 -> 645 bytes .../rich/__pycache__/repr.cpython-312.pyc | Bin 0 -> 6704 bytes .../rich/__pycache__/rule.cpython-312.pyc | Bin 0 -> 6646 bytes .../rich/__pycache__/scope.cpython-312.pyc | Bin 0 -> 3908 bytes .../rich/__pycache__/screen.cpython-312.pyc | Bin 0 -> 2562 bytes .../rich/__pycache__/segment.cpython-312.pyc | Bin 0 -> 28239 bytes .../rich/__pycache__/spinner.cpython-312.pyc | Bin 0 -> 6142 bytes .../rich/__pycache__/status.cpython-312.pyc | Bin 0 -> 6146 bytes .../rich/__pycache__/style.cpython-312.pyc | Bin 0 -> 33592 bytes .../rich/__pycache__/styled.cpython-312.pyc | Bin 0 -> 2217 bytes .../rich/__pycache__/syntax.cpython-312.pyc | Bin 0 -> 39690 bytes .../rich/__pycache__/table.cpython-312.pyc | Bin 0 -> 43662 bytes .../terminal_theme.cpython-312.pyc | Bin 0 -> 3426 bytes .../rich/__pycache__/text.cpython-312.pyc | Bin 0 -> 59041 bytes .../rich/__pycache__/theme.cpython-312.pyc | Bin 0 -> 6418 bytes .../rich/__pycache__/themes.cpython-312.pyc | Bin 0 -> 392 bytes .../__pycache__/traceback.cpython-312.pyc | Bin 0 -> 31626 bytes .../rich/__pycache__/tree.cpython-312.pyc | Bin 0 -> 11517 bytes .../pip/_vendor/rich/_cell_widths.py | 451 + .../pip/_vendor/rich/_emoji_codes.py | 3610 +++++++ .../pip/_vendor/rich/_emoji_replace.py | 32 + .../pip/_vendor/rich/_export_format.py | 76 + .../pip/_vendor/rich/_extension.py | 10 + .../site-packages/pip/_vendor/rich/_fileno.py | 24 + .../pip/_vendor/rich/_inspect.py | 270 + .../pip/_vendor/rich/_log_render.py | 94 + .../site-packages/pip/_vendor/rich/_loop.py | 43 + .../pip/_vendor/rich/_null_file.py | 69 + .../pip/_vendor/rich/_palettes.py | 309 + .../site-packages/pip/_vendor/rich/_pick.py | 17 + .../site-packages/pip/_vendor/rich/_ratio.py | 160 + .../pip/_vendor/rich/_spinners.py | 482 + .../site-packages/pip/_vendor/rich/_stack.py | 16 + .../site-packages/pip/_vendor/rich/_timer.py | 19 + .../pip/_vendor/rich/_win32_console.py | 662 ++ .../pip/_vendor/rich/_windows.py | 72 + .../pip/_vendor/rich/_windows_renderer.py | 56 + .../site-packages/pip/_vendor/rich/_wrap.py | 56 + .../site-packages/pip/_vendor/rich/abc.py | 33 + .../site-packages/pip/_vendor/rich/align.py | 311 + .../site-packages/pip/_vendor/rich/ansi.py | 240 + .../site-packages/pip/_vendor/rich/bar.py | 94 + .../site-packages/pip/_vendor/rich/box.py | 517 + .../site-packages/pip/_vendor/rich/cells.py | 154 + .../site-packages/pip/_vendor/rich/color.py | 622 ++ .../pip/_vendor/rich/color_triplet.py | 38 + .../site-packages/pip/_vendor/rich/columns.py | 187 + .../site-packages/pip/_vendor/rich/console.py | 2633 +++++ .../pip/_vendor/rich/constrain.py | 37 + .../pip/_vendor/rich/containers.py | 167 + .../site-packages/pip/_vendor/rich/control.py | 225 + .../pip/_vendor/rich/default_styles.py | 190 + .../pip/_vendor/rich/diagnose.py | 37 + .../site-packages/pip/_vendor/rich/emoji.py | 96 + .../site-packages/pip/_vendor/rich/errors.py | 34 + .../pip/_vendor/rich/file_proxy.py | 57 + .../pip/_vendor/rich/filesize.py | 89 + .../pip/_vendor/rich/highlighter.py | 232 + .../site-packages/pip/_vendor/rich/json.py | 140 + .../site-packages/pip/_vendor/rich/jupyter.py | 101 + .../site-packages/pip/_vendor/rich/layout.py | 443 + .../site-packages/pip/_vendor/rich/live.py | 375 + .../pip/_vendor/rich/live_render.py | 113 + .../site-packages/pip/_vendor/rich/logging.py | 289 + .../site-packages/pip/_vendor/rich/markup.py | 246 + .../site-packages/pip/_vendor/rich/measure.py | 151 + .../site-packages/pip/_vendor/rich/padding.py | 141 + .../site-packages/pip/_vendor/rich/pager.py | 34 + .../site-packages/pip/_vendor/rich/palette.py | 100 + .../site-packages/pip/_vendor/rich/panel.py | 308 + .../site-packages/pip/_vendor/rich/pretty.py | 994 ++ .../pip/_vendor/rich/progress.py | 1702 ++++ .../pip/_vendor/rich/progress_bar.py | 224 + .../site-packages/pip/_vendor/rich/prompt.py | 376 + .../pip/_vendor/rich/protocol.py | 42 + .../site-packages/pip/_vendor/rich/region.py | 10 + .../site-packages/pip/_vendor/rich/repr.py | 149 + .../site-packages/pip/_vendor/rich/rule.py | 130 + .../site-packages/pip/_vendor/rich/scope.py | 86 + .../site-packages/pip/_vendor/rich/screen.py | 54 + .../site-packages/pip/_vendor/rich/segment.py | 739 ++ .../site-packages/pip/_vendor/rich/spinner.py | 137 + .../site-packages/pip/_vendor/rich/status.py | 132 + .../site-packages/pip/_vendor/rich/style.py | 796 ++ .../site-packages/pip/_vendor/rich/styled.py | 42 + .../site-packages/pip/_vendor/rich/syntax.py | 948 ++ .../site-packages/pip/_vendor/rich/table.py | 1002 ++ .../pip/_vendor/rich/terminal_theme.py | 153 + .../site-packages/pip/_vendor/rich/text.py | 1307 +++ .../site-packages/pip/_vendor/rich/theme.py | 115 + .../site-packages/pip/_vendor/rich/themes.py | 5 + .../pip/_vendor/rich/traceback.py | 756 ++ .../site-packages/pip/_vendor/rich/tree.py | 251 + .../site-packages/pip/_vendor/six.py | 998 ++ .../pip/_vendor/tenacity/__init__.py | 608 ++ .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 27164 bytes .../__pycache__/_asyncio.cpython-312.pyc | Bin 0 -> 4884 bytes .../__pycache__/_utils.cpython-312.pyc | Bin 0 -> 2393 bytes .../__pycache__/after.cpython-312.pyc | Bin 0 -> 1702 bytes .../__pycache__/before.cpython-312.pyc | Bin 0 -> 1542 bytes .../__pycache__/before_sleep.cpython-312.pyc | Bin 0 -> 2380 bytes .../tenacity/__pycache__/nap.cpython-312.pyc | Bin 0 -> 1490 bytes .../__pycache__/retry.cpython-312.pyc | Bin 0 -> 14359 bytes .../tenacity/__pycache__/stop.cpython-312.pyc | Bin 0 -> 5646 bytes .../__pycache__/tornadoweb.cpython-312.pyc | Bin 0 -> 2664 bytes .../tenacity/__pycache__/wait.cpython-312.pyc | Bin 0 -> 12491 bytes .../pip/_vendor/tenacity/_asyncio.py | 94 + .../pip/_vendor/tenacity/_utils.py | 76 + .../pip/_vendor/tenacity/after.py | 51 + .../pip/_vendor/tenacity/before.py | 46 + .../pip/_vendor/tenacity/before_sleep.py | 71 + .../site-packages/pip/_vendor/tenacity/nap.py | 43 + .../pip/_vendor/tenacity/retry.py | 272 + .../pip/_vendor/tenacity/stop.py | 103 + .../pip/_vendor/tenacity/tornadoweb.py | 59 + .../pip/_vendor/tenacity/wait.py | 228 + .../pip/_vendor/tomli/__init__.py | 11 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 462 bytes .../tomli/__pycache__/_parser.cpython-312.pyc | Bin 0 -> 27005 bytes .../tomli/__pycache__/_re.cpython-312.pyc | Bin 0 -> 3986 bytes .../tomli/__pycache__/_types.cpython-312.pyc | Bin 0 -> 444 bytes .../pip/_vendor/tomli/_parser.py | 691 ++ .../site-packages/pip/_vendor/tomli/_re.py | 107 + .../site-packages/pip/_vendor/tomli/_types.py | 10 + .../pip/_vendor/truststore/__init__.py | 13 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 696 bytes .../__pycache__/_api.cpython-312.pyc | Bin 0 -> 15875 bytes .../__pycache__/_macos.cpython-312.pyc | Bin 0 -> 16740 bytes .../__pycache__/_openssl.cpython-312.pyc | Bin 0 -> 2293 bytes .../_ssl_constants.cpython-312.pyc | Bin 0 -> 1177 bytes .../__pycache__/_windows.cpython-312.pyc | Bin 0 -> 15584 bytes .../pip/_vendor/truststore/_api.py | 302 + .../pip/_vendor/truststore/_macos.py | 501 + .../pip/_vendor/truststore/_openssl.py | 66 + .../pip/_vendor/truststore/_ssl_constants.py | 31 + .../pip/_vendor/truststore/_windows.py | 554 ++ .../pip/_vendor/typing_extensions.py | 3072 ++++++ .../pip/_vendor/urllib3/__init__.py | 102 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 3483 bytes .../__pycache__/_collections.cpython-312.pyc | Bin 0 -> 16009 bytes .../__pycache__/_version.cpython-312.pyc | Bin 0 -> 296 bytes .../__pycache__/connection.cpython-312.pyc | Bin 0 -> 20485 bytes .../connectionpool.cpython-312.pyc | Bin 0 -> 36357 bytes .../__pycache__/exceptions.cpython-312.pyc | Bin 0 -> 13571 bytes .../__pycache__/fields.cpython-312.pyc | Bin 0 -> 10491 bytes .../__pycache__/filepost.cpython-312.pyc | Bin 0 -> 4096 bytes .../__pycache__/poolmanager.cpython-312.pyc | Bin 0 -> 20708 bytes .../__pycache__/request.cpython-312.pyc | Bin 0 -> 7372 bytes .../__pycache__/response.cpython-312.pyc | Bin 0 -> 34046 bytes .../pip/_vendor/urllib3/_collections.py | 337 + .../pip/_vendor/urllib3/_version.py | 2 + .../pip/_vendor/urllib3/connection.py | 572 ++ .../pip/_vendor/urllib3/connectionpool.py | 1132 +++ .../pip/_vendor/urllib3/contrib/__init__.py | 0 .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 276 bytes .../_appengine_environ.cpython-312.pyc | Bin 0 -> 1926 bytes .../__pycache__/appengine.cpython-312.pyc | Bin 0 -> 11642 bytes .../__pycache__/ntlmpool.cpython-312.pyc | Bin 0 -> 5797 bytes .../__pycache__/pyopenssl.cpython-312.pyc | Bin 0 -> 24528 bytes .../securetransport.cpython-312.pyc | Bin 0 -> 35634 bytes .../contrib/__pycache__/socks.cpython-312.pyc | Bin 0 -> 7589 bytes .../urllib3/contrib/_appengine_environ.py | 36 + .../contrib/_securetransport/__init__.py | 0 .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 293 bytes .../__pycache__/bindings.cpython-312.pyc | Bin 0 -> 17505 bytes .../__pycache__/low_level.cpython-312.pyc | Bin 0 -> 14879 bytes .../contrib/_securetransport/bindings.py | 519 + .../contrib/_securetransport/low_level.py | 397 + .../pip/_vendor/urllib3/contrib/appengine.py | 314 + .../pip/_vendor/urllib3/contrib/ntlmpool.py | 130 + .../pip/_vendor/urllib3/contrib/pyopenssl.py | 518 + .../urllib3/contrib/securetransport.py | 921 ++ .../pip/_vendor/urllib3/contrib/socks.py | 216 + .../pip/_vendor/urllib3/exceptions.py | 323 + .../pip/_vendor/urllib3/fields.py | 274 + .../pip/_vendor/urllib3/filepost.py | 98 + .../pip/_vendor/urllib3/packages/__init__.py | 0 .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 277 bytes .../packages/__pycache__/six.cpython-312.pyc | Bin 0 -> 41397 bytes .../urllib3/packages/backports/__init__.py | 0 .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 287 bytes .../__pycache__/makefile.cpython-312.pyc | Bin 0 -> 1903 bytes .../weakref_finalize.cpython-312.pyc | Bin 0 -> 7409 bytes .../urllib3/packages/backports/makefile.py | 51 + .../packages/backports/weakref_finalize.py | 155 + .../pip/_vendor/urllib3/packages/six.py | 1076 +++ .../pip/_vendor/urllib3/poolmanager.py | 553 ++ .../pip/_vendor/urllib3/request.py | 191 + .../pip/_vendor/urllib3/response.py | 879 ++ .../pip/_vendor/urllib3/util/__init__.py | 49 + .../util/__pycache__/__init__.cpython-312.pyc | Bin 0 -> 1224 bytes .../__pycache__/connection.cpython-312.pyc | Bin 0 -> 4834 bytes .../util/__pycache__/proxy.cpython-312.pyc | Bin 0 -> 1630 bytes .../util/__pycache__/queue.cpython-312.pyc | Bin 0 -> 1430 bytes .../util/__pycache__/request.cpython-312.pyc | Bin 0 -> 4261 bytes .../util/__pycache__/response.cpython-312.pyc | Bin 0 -> 3067 bytes .../util/__pycache__/retry.cpython-312.pyc | Bin 0 -> 21796 bytes .../util/__pycache__/ssl_.cpython-312.pyc | Bin 0 -> 15181 bytes .../ssl_match_hostname.cpython-312.pyc | Bin 0 -> 5149 bytes .../__pycache__/ssltransport.cpython-312.pyc | Bin 0 -> 10850 bytes .../util/__pycache__/timeout.cpython-312.pyc | Bin 0 -> 11217 bytes .../util/__pycache__/url.cpython-312.pyc | Bin 0 -> 15873 bytes .../util/__pycache__/wait.cpython-312.pyc | Bin 0 -> 4481 bytes .../pip/_vendor/urllib3/util/connection.py | 149 + .../pip/_vendor/urllib3/util/proxy.py | 57 + .../pip/_vendor/urllib3/util/queue.py | 22 + .../pip/_vendor/urllib3/util/request.py | 137 + .../pip/_vendor/urllib3/util/response.py | 107 + .../pip/_vendor/urllib3/util/retry.py | 622 ++ .../pip/_vendor/urllib3/util/ssl_.py | 495 + .../urllib3/util/ssl_match_hostname.py | 159 + .../pip/_vendor/urllib3/util/ssltransport.py | 221 + .../pip/_vendor/urllib3/util/timeout.py | 271 + .../pip/_vendor/urllib3/util/url.py | 435 + .../pip/_vendor/urllib3/util/wait.py | 152 + .../site-packages/pip/_vendor/vendor.txt | 24 + .../pip/_vendor/webencodings/__init__.py | 342 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 12079 bytes .../__pycache__/labels.cpython-312.pyc | Bin 0 -> 7210 bytes .../__pycache__/mklabels.cpython-312.pyc | Bin 0 -> 2777 bytes .../__pycache__/tests.cpython-312.pyc | Bin 0 -> 9329 bytes .../x_user_defined.cpython-312.pyc | Bin 0 -> 3373 bytes .../pip/_vendor/webencodings/labels.py | 231 + .../pip/_vendor/webencodings/mklabels.py | 59 + .../pip/_vendor/webencodings/tests.py | 153 + .../_vendor/webencodings/x_user_defined.py | 325 + .../lib/python3.12/site-packages/pip/py.typed | 4 + .venv/lib64 | 1 + .venv/pyvenv.cfg | 5 + 1014 files changed, 189979 insertions(+) create mode 100644 .venv/bin/Activate.ps1 create mode 100644 .venv/bin/activate create mode 100644 .venv/bin/activate.csh create mode 100644 .venv/bin/activate.fish create mode 100644 .venv/bin/pip create mode 100644 .venv/bin/pip3 create mode 100644 .venv/bin/pip3.12 create mode 120000 .venv/bin/python create mode 120000 .venv/bin/python3 create mode 120000 .venv/bin/python3.12 create mode 100644 .venv/lib/python3.12/site-packages/pip-24.0.dist-info/AUTHORS.txt create mode 100644 .venv/lib/python3.12/site-packages/pip-24.0.dist-info/INSTALLER create mode 100644 .venv/lib/python3.12/site-packages/pip-24.0.dist-info/LICENSE.txt create mode 100644 .venv/lib/python3.12/site-packages/pip-24.0.dist-info/METADATA create mode 100644 .venv/lib/python3.12/site-packages/pip-24.0.dist-info/RECORD create mode 100644 .venv/lib/python3.12/site-packages/pip-24.0.dist-info/REQUESTED create mode 100644 .venv/lib/python3.12/site-packages/pip-24.0.dist-info/WHEEL create mode 100644 .venv/lib/python3.12/site-packages/pip-24.0.dist-info/entry_points.txt create mode 100644 .venv/lib/python3.12/site-packages/pip-24.0.dist-info/top_level.txt create mode 100644 .venv/lib/python3.12/site-packages/pip/__init__.py create mode 100644 .venv/lib/python3.12/site-packages/pip/__main__.py create mode 100644 .venv/lib/python3.12/site-packages/pip/__pip-runner__.py create mode 100644 .venv/lib/python3.12/site-packages/pip/__pycache__/__init__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/__pycache__/__main__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/__pycache__/__pip-runner__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/__init__.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/__pycache__/__init__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/__pycache__/build_env.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/__pycache__/cache.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/__pycache__/configuration.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/__pycache__/exceptions.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/__pycache__/main.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/__pycache__/pyproject.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/__pycache__/self_outdated_check.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/__pycache__/wheel_builder.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/build_env.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/cache.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/cli/__init__.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/__init__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/autocompletion.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/base_command.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/cmdoptions.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/command_context.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/main.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/main_parser.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/parser.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/progress_bars.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/req_command.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/spinners.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/status_codes.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/cli/autocompletion.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/cli/base_command.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/cli/cmdoptions.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/cli/command_context.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/cli/main.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/cli/main_parser.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/cli/parser.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/cli/progress_bars.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/cli/req_command.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/cli/spinners.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/cli/status_codes.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/commands/__init__.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/__init__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/cache.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/check.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/completion.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/configuration.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/debug.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/download.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/freeze.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/hash.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/help.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/index.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/inspect.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/install.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/list.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/search.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/show.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/uninstall.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/wheel.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/commands/cache.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/commands/check.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/commands/completion.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/commands/configuration.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/commands/debug.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/commands/download.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/commands/freeze.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/commands/hash.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/commands/help.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/commands/index.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/commands/inspect.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/commands/install.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/commands/list.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/commands/search.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/commands/show.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/commands/uninstall.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/commands/wheel.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/configuration.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/distributions/__init__.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/distributions/__pycache__/__init__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/distributions/__pycache__/base.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/distributions/__pycache__/installed.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/distributions/__pycache__/sdist.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/distributions/__pycache__/wheel.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/distributions/base.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/distributions/installed.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/distributions/sdist.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/distributions/wheel.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/exceptions.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/index/__init__.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/index/__pycache__/__init__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/index/__pycache__/collector.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/index/__pycache__/package_finder.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/index/__pycache__/sources.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/index/collector.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/index/package_finder.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/index/sources.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/locations/__init__.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/locations/__pycache__/__init__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/locations/__pycache__/_distutils.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/locations/__pycache__/_sysconfig.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/locations/__pycache__/base.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/locations/_distutils.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/locations/_sysconfig.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/locations/base.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/main.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/metadata/__init__.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/metadata/__pycache__/__init__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/metadata/__pycache__/_json.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/metadata/__pycache__/base.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/metadata/__pycache__/pkg_resources.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/metadata/_json.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/metadata/base.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/metadata/importlib/__init__.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/metadata/importlib/__pycache__/__init__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/metadata/importlib/__pycache__/_compat.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/metadata/importlib/__pycache__/_dists.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/metadata/importlib/__pycache__/_envs.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/metadata/importlib/_compat.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/metadata/importlib/_dists.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/metadata/importlib/_envs.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/metadata/pkg_resources.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/models/__init__.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/models/__pycache__/__init__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/models/__pycache__/candidate.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/models/__pycache__/direct_url.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/models/__pycache__/format_control.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/models/__pycache__/index.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/models/__pycache__/installation_report.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/models/__pycache__/link.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/models/__pycache__/scheme.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/models/__pycache__/search_scope.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/models/__pycache__/selection_prefs.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/models/__pycache__/target_python.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/models/__pycache__/wheel.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/models/candidate.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/models/direct_url.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/models/format_control.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/models/index.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/models/installation_report.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/models/link.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/models/scheme.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/models/search_scope.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/models/selection_prefs.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/models/target_python.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/models/wheel.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/network/__init__.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/network/__pycache__/__init__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/network/__pycache__/auth.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/network/__pycache__/cache.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/network/__pycache__/download.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/network/__pycache__/lazy_wheel.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/network/__pycache__/session.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/network/__pycache__/utils.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/network/__pycache__/xmlrpc.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/network/auth.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/network/cache.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/network/download.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/network/lazy_wheel.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/network/session.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/network/utils.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/network/xmlrpc.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/operations/__init__.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/operations/__pycache__/__init__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/operations/__pycache__/check.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/operations/__pycache__/freeze.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/operations/__pycache__/prepare.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/operations/build/__init__.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/operations/build/__pycache__/__init__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/operations/build/__pycache__/build_tracker.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/operations/build/__pycache__/metadata.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/operations/build/__pycache__/metadata_editable.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/operations/build/__pycache__/metadata_legacy.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/operations/build/__pycache__/wheel.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/operations/build/__pycache__/wheel_editable.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/operations/build/__pycache__/wheel_legacy.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/operations/build/build_tracker.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/operations/build/metadata.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/operations/build/metadata_editable.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/operations/build/metadata_legacy.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/operations/build/wheel.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/operations/build/wheel_editable.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/operations/build/wheel_legacy.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/operations/check.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/operations/freeze.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/operations/install/__init__.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/operations/install/__pycache__/__init__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/operations/install/__pycache__/editable_legacy.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/operations/install/__pycache__/wheel.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/operations/install/editable_legacy.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/operations/install/wheel.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/operations/prepare.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/pyproject.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/req/__init__.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/req/__pycache__/__init__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/req/__pycache__/constructors.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/req/__pycache__/req_file.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/req/__pycache__/req_install.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/req/__pycache__/req_set.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/req/__pycache__/req_uninstall.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/req/constructors.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/req/req_file.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/req/req_install.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/req/req_set.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/req/req_uninstall.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/resolution/__init__.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/resolution/__pycache__/__init__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/resolution/__pycache__/base.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/resolution/base.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/resolution/legacy/__init__.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/resolution/legacy/__pycache__/__init__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/resolution/legacy/__pycache__/resolver.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/resolution/legacy/resolver.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__init__.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/__init__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/base.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/candidates.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/factory.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/found_candidates.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/provider.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/reporter.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/requirements.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/resolver.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/base.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/candidates.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/factory.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/found_candidates.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/provider.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/reporter.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/requirements.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/resolver.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/self_outdated_check.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/utils/__init__.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/__init__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/_jaraco_text.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/_log.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/appdirs.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/compat.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/compatibility_tags.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/datetime.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/deprecation.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/direct_url_helpers.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/egg_link.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/encoding.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/entrypoints.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/filesystem.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/filetypes.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/glibc.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/hashes.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/logging.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/misc.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/models.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/packaging.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/setuptools_build.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/subprocess.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/temp_dir.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/unpacking.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/urls.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/virtualenv.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/wheel.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/utils/_jaraco_text.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/utils/_log.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/utils/appdirs.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/utils/compat.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/utils/compatibility_tags.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/utils/datetime.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/utils/deprecation.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/utils/direct_url_helpers.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/utils/egg_link.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/utils/encoding.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/utils/entrypoints.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/utils/filesystem.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/utils/filetypes.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/utils/glibc.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/utils/hashes.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/utils/logging.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/utils/misc.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/utils/models.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/utils/packaging.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/utils/setuptools_build.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/utils/subprocess.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/utils/temp_dir.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/utils/unpacking.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/utils/urls.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/utils/virtualenv.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/utils/wheel.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/vcs/__init__.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/vcs/__pycache__/__init__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/vcs/__pycache__/bazaar.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/vcs/__pycache__/git.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/vcs/__pycache__/mercurial.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/vcs/__pycache__/subversion.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/vcs/__pycache__/versioncontrol.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/vcs/bazaar.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/vcs/git.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/vcs/mercurial.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/vcs/subversion.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/vcs/versioncontrol.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/wheel_builder.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/__init__.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/__pycache__/__init__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/__pycache__/six.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/__pycache__/typing_extensions.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__init__.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/__init__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/_cmd.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/adapter.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/cache.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/controller.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/filewrapper.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/heuristics.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/serialize.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/wrapper.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/_cmd.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/adapter.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/cache.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/caches/__init__.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/__init__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/file_cache.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/redis_cache.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/caches/file_cache.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/caches/redis_cache.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/controller.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/filewrapper.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/heuristics.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/serialize.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/wrapper.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/certifi/__init__.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/certifi/__main__.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/certifi/__pycache__/__init__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/certifi/__pycache__/__main__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/certifi/__pycache__/core.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/certifi/cacert.pem create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/certifi/core.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/chardet/__init__.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/__init__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/big5freq.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/big5prober.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/chardistribution.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/charsetgroupprober.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/charsetprober.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/codingstatemachine.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/codingstatemachinedict.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/cp949prober.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/enums.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/escprober.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/escsm.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/eucjpprober.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/euckrfreq.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/euckrprober.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/euctwfreq.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/euctwprober.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/gb2312freq.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/gb2312prober.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/hebrewprober.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/jisfreq.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/johabfreq.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/johabprober.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/jpcntx.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/langbulgarianmodel.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/langgreekmodel.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/langhebrewmodel.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/langhungarianmodel.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/langrussianmodel.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/langthaimodel.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/langturkishmodel.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/latin1prober.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/macromanprober.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/mbcharsetprober.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/mbcsgroupprober.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/mbcssm.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/resultdict.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/sbcharsetprober.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/sbcsgroupprober.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/sjisprober.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/universaldetector.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/utf1632prober.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/utf8prober.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/version.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/chardet/big5freq.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/chardet/big5prober.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/chardet/chardistribution.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/chardet/charsetgroupprober.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/chardet/charsetprober.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/chardet/cli/__init__.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/chardet/cli/__pycache__/__init__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/chardet/cli/__pycache__/chardetect.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/chardet/cli/chardetect.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/chardet/codingstatemachine.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/chardet/codingstatemachinedict.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/chardet/cp949prober.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/chardet/enums.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/chardet/escprober.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/chardet/escsm.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/chardet/eucjpprober.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/chardet/euckrfreq.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/chardet/euckrprober.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/chardet/euctwfreq.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/chardet/euctwprober.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/chardet/gb2312freq.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/chardet/gb2312prober.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/chardet/hebrewprober.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/chardet/jisfreq.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/chardet/johabfreq.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/chardet/johabprober.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/chardet/jpcntx.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/chardet/langbulgarianmodel.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/chardet/langgreekmodel.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/chardet/langhebrewmodel.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/chardet/langhungarianmodel.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/chardet/langrussianmodel.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/chardet/langthaimodel.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/chardet/langturkishmodel.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/chardet/latin1prober.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/chardet/macromanprober.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/chardet/mbcharsetprober.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/chardet/mbcsgroupprober.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/chardet/mbcssm.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/chardet/metadata/__init__.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/chardet/metadata/__pycache__/__init__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/chardet/metadata/__pycache__/languages.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/chardet/metadata/languages.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/chardet/resultdict.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/chardet/sbcharsetprober.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/chardet/sbcsgroupprober.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/chardet/sjisprober.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/chardet/universaldetector.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/chardet/utf1632prober.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/chardet/utf8prober.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/chardet/version.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/colorama/__init__.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/colorama/__pycache__/__init__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/colorama/__pycache__/ansi.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/colorama/__pycache__/ansitowin32.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/colorama/__pycache__/initialise.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/colorama/__pycache__/win32.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/colorama/__pycache__/winterm.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/colorama/ansi.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/colorama/ansitowin32.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/colorama/initialise.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/colorama/tests/__init__.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/colorama/tests/__pycache__/__init__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/colorama/tests/__pycache__/ansi_test.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/colorama/tests/__pycache__/ansitowin32_test.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/colorama/tests/__pycache__/initialise_test.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/colorama/tests/__pycache__/isatty_test.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/colorama/tests/__pycache__/utils.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/colorama/tests/__pycache__/winterm_test.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/colorama/tests/ansi_test.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/colorama/tests/ansitowin32_test.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/colorama/tests/initialise_test.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/colorama/tests/isatty_test.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/colorama/tests/utils.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/colorama/tests/winterm_test.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/colorama/win32.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/colorama/winterm.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/distlib/__init__.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/__init__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/compat.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/database.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/index.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/locators.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/manifest.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/markers.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/metadata.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/resources.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/scripts.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/util.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/version.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/wheel.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/distlib/compat.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/distlib/database.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/distlib/index.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/distlib/locators.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/distlib/manifest.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/distlib/markers.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/distlib/metadata.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/distlib/resources.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/distlib/scripts.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/distlib/util.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/distlib/version.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/distlib/wheel.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/distro/__init__.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/distro/__main__.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/distro/__pycache__/__init__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/distro/__pycache__/__main__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/distro/__pycache__/distro.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/distro/distro.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/idna/__init__.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/idna/__pycache__/__init__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/idna/__pycache__/codec.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/idna/__pycache__/compat.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/idna/__pycache__/core.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/idna/__pycache__/idnadata.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/idna/__pycache__/intranges.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/idna/__pycache__/package_data.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/idna/__pycache__/uts46data.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/idna/codec.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/idna/compat.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/idna/core.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/idna/idnadata.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/idna/intranges.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/idna/package_data.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/idna/uts46data.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/msgpack/__init__.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/msgpack/__pycache__/__init__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/msgpack/__pycache__/exceptions.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/msgpack/__pycache__/ext.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/msgpack/__pycache__/fallback.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/msgpack/exceptions.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/msgpack/ext.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/msgpack/fallback.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/packaging/__about__.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/packaging/__init__.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/__about__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/__init__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/_manylinux.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/_musllinux.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/_structures.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/markers.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/requirements.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/specifiers.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/tags.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/utils.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/version.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/packaging/_manylinux.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/packaging/_musllinux.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/packaging/_structures.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/packaging/markers.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/packaging/requirements.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/packaging/specifiers.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/packaging/tags.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/packaging/utils.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/packaging/version.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/pkg_resources/__init__.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/pkg_resources/__pycache__/__init__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/platformdirs/__init__.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/platformdirs/__main__.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/platformdirs/__pycache__/__init__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/platformdirs/__pycache__/__main__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/platformdirs/__pycache__/android.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/platformdirs/__pycache__/api.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/platformdirs/__pycache__/macos.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/platformdirs/__pycache__/unix.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/platformdirs/__pycache__/version.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/platformdirs/__pycache__/windows.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/platformdirs/android.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/platformdirs/api.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/platformdirs/macos.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/platformdirs/unix.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/platformdirs/version.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/platformdirs/windows.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/pygments/__init__.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/pygments/__main__.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/__init__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/__main__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/cmdline.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/console.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/filter.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/formatter.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/lexer.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/modeline.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/plugin.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/regexopt.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/scanner.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/sphinxext.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/style.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/token.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/unistring.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/util.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/pygments/cmdline.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/pygments/console.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/pygments/filter.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/pygments/filters/__init__.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/pygments/filters/__pycache__/__init__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatter.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__init__.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/__init__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/_mapping.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/bbcode.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/groff.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/html.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/img.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/irc.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/latex.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/other.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/pangomarkup.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/rtf.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/svg.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/terminal.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/terminal256.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/_mapping.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/bbcode.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/groff.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/html.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/img.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/irc.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/latex.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/other.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/pangomarkup.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/rtf.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/svg.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/terminal.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/terminal256.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/pygments/lexer.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/pygments/lexers/__init__.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/pygments/lexers/__pycache__/__init__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/pygments/lexers/__pycache__/_mapping.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/pygments/lexers/__pycache__/python.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/pygments/lexers/_mapping.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/pygments/lexers/python.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/pygments/modeline.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/pygments/plugin.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/pygments/regexopt.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/pygments/scanner.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/pygments/sphinxext.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/pygments/style.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/pygments/styles/__init__.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/pygments/styles/__pycache__/__init__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/pygments/token.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/pygments/unistring.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/pygments/util.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/pyparsing/__init__.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/pyparsing/__pycache__/__init__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/pyparsing/__pycache__/actions.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/pyparsing/__pycache__/common.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/pyparsing/__pycache__/core.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/pyparsing/__pycache__/exceptions.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/pyparsing/__pycache__/helpers.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/pyparsing/__pycache__/results.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/pyparsing/__pycache__/testing.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/pyparsing/__pycache__/unicode.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/pyparsing/__pycache__/util.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/pyparsing/actions.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/pyparsing/common.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/pyparsing/core.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/pyparsing/diagram/__init__.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/pyparsing/diagram/__pycache__/__init__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/pyparsing/exceptions.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/pyparsing/helpers.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/pyparsing/results.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/pyparsing/testing.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/pyparsing/unicode.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/pyparsing/util.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/__init__.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/__pycache__/__init__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/__pycache__/_compat.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/__pycache__/_impl.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/_compat.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/_impl.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/_in_process/__init__.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/_in_process/__pycache__/__init__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/_in_process/__pycache__/_in_process.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/_in_process/_in_process.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/requests/__init__.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/__init__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/__version__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/_internal_utils.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/adapters.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/api.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/auth.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/certs.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/compat.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/cookies.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/exceptions.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/help.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/hooks.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/models.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/packages.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/sessions.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/status_codes.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/structures.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/utils.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/requests/__version__.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/requests/_internal_utils.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/requests/adapters.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/requests/api.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/requests/auth.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/requests/certs.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/requests/compat.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/requests/cookies.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/requests/exceptions.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/requests/help.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/requests/hooks.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/requests/models.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/requests/packages.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/requests/sessions.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/requests/status_codes.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/requests/structures.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/requests/utils.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/resolvelib/__init__.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/resolvelib/__pycache__/__init__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/resolvelib/__pycache__/providers.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/resolvelib/__pycache__/reporters.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/resolvelib/__pycache__/resolvers.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/resolvelib/__pycache__/structs.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/resolvelib/compat/__init__.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/resolvelib/compat/__pycache__/__init__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/resolvelib/compat/__pycache__/collections_abc.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/resolvelib/compat/collections_abc.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/resolvelib/providers.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/resolvelib/reporters.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/resolvelib/resolvers.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/resolvelib/structs.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/__init__.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/__main__.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/__init__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/__main__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_cell_widths.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_emoji_codes.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_emoji_replace.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_export_format.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_extension.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_fileno.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_inspect.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_log_render.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_loop.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_null_file.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_palettes.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_pick.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_ratio.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_spinners.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_stack.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_timer.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_win32_console.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_windows.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_windows_renderer.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_wrap.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/abc.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/align.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/ansi.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/bar.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/box.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/cells.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/color.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/color_triplet.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/columns.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/console.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/constrain.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/containers.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/control.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/default_styles.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/diagnose.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/emoji.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/errors.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/file_proxy.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/filesize.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/highlighter.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/json.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/jupyter.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/layout.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/live.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/live_render.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/logging.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/markup.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/measure.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/padding.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/pager.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/palette.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/panel.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/pretty.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/progress.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/progress_bar.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/prompt.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/protocol.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/region.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/repr.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/rule.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/scope.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/screen.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/segment.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/spinner.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/status.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/style.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/styled.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/syntax.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/table.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/terminal_theme.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/text.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/theme.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/themes.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/traceback.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/tree.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/_cell_widths.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/_emoji_codes.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/_emoji_replace.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/_export_format.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/_extension.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/_fileno.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/_inspect.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/_log_render.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/_loop.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/_null_file.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/_palettes.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/_pick.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/_ratio.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/_spinners.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/_stack.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/_timer.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/_win32_console.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/_windows.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/_windows_renderer.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/_wrap.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/abc.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/align.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/ansi.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/bar.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/box.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/cells.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/color.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/color_triplet.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/columns.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/console.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/constrain.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/containers.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/control.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/default_styles.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/diagnose.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/emoji.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/errors.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/file_proxy.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/filesize.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/highlighter.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/json.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/jupyter.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/layout.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/live.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/live_render.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/logging.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/markup.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/measure.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/padding.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/pager.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/palette.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/panel.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/pretty.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/progress.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/progress_bar.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/prompt.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/protocol.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/region.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/repr.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/rule.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/scope.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/screen.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/segment.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/spinner.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/status.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/style.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/styled.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/syntax.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/table.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/terminal_theme.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/text.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/theme.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/themes.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/traceback.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/tree.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/six.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/tenacity/__init__.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/tenacity/__pycache__/__init__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/tenacity/__pycache__/_asyncio.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/tenacity/__pycache__/_utils.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/tenacity/__pycache__/after.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/tenacity/__pycache__/before.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/tenacity/__pycache__/before_sleep.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/tenacity/__pycache__/nap.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/tenacity/__pycache__/retry.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/tenacity/__pycache__/stop.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/tenacity/__pycache__/tornadoweb.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/tenacity/__pycache__/wait.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/tenacity/_asyncio.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/tenacity/_utils.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/tenacity/after.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/tenacity/before.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/tenacity/before_sleep.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/tenacity/nap.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/tenacity/retry.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/tenacity/stop.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/tenacity/tornadoweb.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/tenacity/wait.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/tomli/__init__.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/tomli/__pycache__/__init__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/tomli/__pycache__/_parser.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/tomli/__pycache__/_re.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/tomli/__pycache__/_types.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/tomli/_parser.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/tomli/_re.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/tomli/_types.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/truststore/__init__.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/truststore/__pycache__/__init__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/truststore/__pycache__/_api.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/truststore/__pycache__/_macos.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/truststore/__pycache__/_openssl.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/truststore/__pycache__/_ssl_constants.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/truststore/__pycache__/_windows.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/truststore/_api.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/truststore/_macos.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/truststore/_openssl.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/truststore/_ssl_constants.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/truststore/_windows.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/typing_extensions.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/urllib3/__init__.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/__init__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/_collections.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/_version.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/connection.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/connectionpool.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/exceptions.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/fields.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/filepost.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/poolmanager.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/request.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/response.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/urllib3/_collections.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/urllib3/_version.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/urllib3/connection.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/urllib3/connectionpool.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/__init__.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/__pycache__/__init__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/__pycache__/_appengine_environ.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/__pycache__/appengine.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/__pycache__/ntlmpool.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/__pycache__/pyopenssl.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/__pycache__/securetransport.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/__pycache__/socks.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/_appengine_environ.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__init__.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__pycache__/__init__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__pycache__/bindings.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__pycache__/low_level.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/_securetransport/bindings.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/_securetransport/low_level.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/appengine.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/ntlmpool.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/pyopenssl.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/securetransport.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/socks.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/urllib3/exceptions.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/urllib3/fields.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/urllib3/filepost.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/urllib3/packages/__init__.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/urllib3/packages/__pycache__/__init__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/urllib3/packages/__pycache__/six.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/urllib3/packages/backports/__init__.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/urllib3/packages/backports/__pycache__/__init__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/urllib3/packages/backports/__pycache__/makefile.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/urllib3/packages/backports/__pycache__/weakref_finalize.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/urllib3/packages/backports/makefile.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/urllib3/packages/backports/weakref_finalize.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/urllib3/packages/six.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/urllib3/poolmanager.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/urllib3/request.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/urllib3/response.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__init__.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/__init__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/connection.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/proxy.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/queue.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/request.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/response.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/retry.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/ssl_.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/ssl_match_hostname.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/ssltransport.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/timeout.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/url.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/wait.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/connection.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/proxy.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/queue.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/request.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/response.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/retry.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/ssl_.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/ssl_match_hostname.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/ssltransport.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/timeout.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/url.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/wait.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/vendor.txt create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/webencodings/__init__.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/webencodings/__pycache__/__init__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/webencodings/__pycache__/labels.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/webencodings/__pycache__/mklabels.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/webencodings/__pycache__/tests.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/webencodings/__pycache__/x_user_defined.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/webencodings/labels.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/webencodings/mklabels.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/webencodings/tests.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/webencodings/x_user_defined.py create mode 100644 .venv/lib/python3.12/site-packages/pip/py.typed create mode 120000 .venv/lib64 create mode 100644 .venv/pyvenv.cfg diff --git a/.venv/bin/Activate.ps1 b/.venv/bin/Activate.ps1 new file mode 100644 index 00000000..b49d77ba --- /dev/null +++ b/.venv/bin/Activate.ps1 @@ -0,0 +1,247 @@ +<# +.Synopsis +Activate a Python virtual environment for the current PowerShell session. + +.Description +Pushes the python executable for a virtual environment to the front of the +$Env:PATH environment variable and sets the prompt to signify that you are +in a Python virtual environment. Makes use of the command line switches as +well as the `pyvenv.cfg` file values present in the virtual environment. + +.Parameter VenvDir +Path to the directory that contains the virtual environment to activate. The +default value for this is the parent of the directory that the Activate.ps1 +script is located within. + +.Parameter Prompt +The prompt prefix to display when this virtual environment is activated. By +default, this prompt is the name of the virtual environment folder (VenvDir) +surrounded by parentheses and followed by a single space (ie. '(.venv) '). + +.Example +Activate.ps1 +Activates the Python virtual environment that contains the Activate.ps1 script. + +.Example +Activate.ps1 -Verbose +Activates the Python virtual environment that contains the Activate.ps1 script, +and shows extra information about the activation as it executes. + +.Example +Activate.ps1 -VenvDir C:\Users\MyUser\Common\.venv +Activates the Python virtual environment located in the specified location. + +.Example +Activate.ps1 -Prompt "MyPython" +Activates the Python virtual environment that contains the Activate.ps1 script, +and prefixes the current prompt with the specified string (surrounded in +parentheses) while the virtual environment is active. + +.Notes +On Windows, it may be required to enable this Activate.ps1 script by setting the +execution policy for the user. You can do this by issuing the following PowerShell +command: + +PS C:\> Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope CurrentUser + +For more information on Execution Policies: +https://go.microsoft.com/fwlink/?LinkID=135170 + +#> +Param( + [Parameter(Mandatory = $false)] + [String] + $VenvDir, + [Parameter(Mandatory = $false)] + [String] + $Prompt +) + +<# Function declarations --------------------------------------------------- #> + +<# +.Synopsis +Remove all shell session elements added by the Activate script, including the +addition of the virtual environment's Python executable from the beginning of +the PATH variable. + +.Parameter NonDestructive +If present, do not remove this function from the global namespace for the +session. + +#> +function global:deactivate ([switch]$NonDestructive) { + # Revert to original values + + # The prior prompt: + if (Test-Path -Path Function:_OLD_VIRTUAL_PROMPT) { + Copy-Item -Path Function:_OLD_VIRTUAL_PROMPT -Destination Function:prompt + Remove-Item -Path Function:_OLD_VIRTUAL_PROMPT + } + + # The prior PYTHONHOME: + if (Test-Path -Path Env:_OLD_VIRTUAL_PYTHONHOME) { + Copy-Item -Path Env:_OLD_VIRTUAL_PYTHONHOME -Destination Env:PYTHONHOME + Remove-Item -Path Env:_OLD_VIRTUAL_PYTHONHOME + } + + # The prior PATH: + if (Test-Path -Path Env:_OLD_VIRTUAL_PATH) { + Copy-Item -Path Env:_OLD_VIRTUAL_PATH -Destination Env:PATH + Remove-Item -Path Env:_OLD_VIRTUAL_PATH + } + + # Just remove the VIRTUAL_ENV altogether: + if (Test-Path -Path Env:VIRTUAL_ENV) { + Remove-Item -Path env:VIRTUAL_ENV + } + + # Just remove VIRTUAL_ENV_PROMPT altogether. + if (Test-Path -Path Env:VIRTUAL_ENV_PROMPT) { + Remove-Item -Path env:VIRTUAL_ENV_PROMPT + } + + # Just remove the _PYTHON_VENV_PROMPT_PREFIX altogether: + if (Get-Variable -Name "_PYTHON_VENV_PROMPT_PREFIX" -ErrorAction SilentlyContinue) { + Remove-Variable -Name _PYTHON_VENV_PROMPT_PREFIX -Scope Global -Force + } + + # Leave deactivate function in the global namespace if requested: + if (-not $NonDestructive) { + Remove-Item -Path function:deactivate + } +} + +<# +.Description +Get-PyVenvConfig parses the values from the pyvenv.cfg file located in the +given folder, and returns them in a map. + +For each line in the pyvenv.cfg file, if that line can be parsed into exactly +two strings separated by `=` (with any amount of whitespace surrounding the =) +then it is considered a `key = value` line. The left hand string is the key, +the right hand is the value. + +If the value starts with a `'` or a `"` then the first and last character is +stripped from the value before being captured. + +.Parameter ConfigDir +Path to the directory that contains the `pyvenv.cfg` file. +#> +function Get-PyVenvConfig( + [String] + $ConfigDir +) { + Write-Verbose "Given ConfigDir=$ConfigDir, obtain values in pyvenv.cfg" + + # Ensure the file exists, and issue a warning if it doesn't (but still allow the function to continue). + $pyvenvConfigPath = Join-Path -Resolve -Path $ConfigDir -ChildPath 'pyvenv.cfg' -ErrorAction Continue + + # An empty map will be returned if no config file is found. + $pyvenvConfig = @{ } + + if ($pyvenvConfigPath) { + + Write-Verbose "File exists, parse `key = value` lines" + $pyvenvConfigContent = Get-Content -Path $pyvenvConfigPath + + $pyvenvConfigContent | ForEach-Object { + $keyval = $PSItem -split "\s*=\s*", 2 + if ($keyval[0] -and $keyval[1]) { + $val = $keyval[1] + + # Remove extraneous quotations around a string value. + if ("'""".Contains($val.Substring(0, 1))) { + $val = $val.Substring(1, $val.Length - 2) + } + + $pyvenvConfig[$keyval[0]] = $val + Write-Verbose "Adding Key: '$($keyval[0])'='$val'" + } + } + } + return $pyvenvConfig +} + + +<# Begin Activate script --------------------------------------------------- #> + +# Determine the containing directory of this script +$VenvExecPath = Split-Path -Parent $MyInvocation.MyCommand.Definition +$VenvExecDir = Get-Item -Path $VenvExecPath + +Write-Verbose "Activation script is located in path: '$VenvExecPath'" +Write-Verbose "VenvExecDir Fullname: '$($VenvExecDir.FullName)" +Write-Verbose "VenvExecDir Name: '$($VenvExecDir.Name)" + +# Set values required in priority: CmdLine, ConfigFile, Default +# First, get the location of the virtual environment, it might not be +# VenvExecDir if specified on the command line. +if ($VenvDir) { + Write-Verbose "VenvDir given as parameter, using '$VenvDir' to determine values" +} +else { + Write-Verbose "VenvDir not given as a parameter, using parent directory name as VenvDir." + $VenvDir = $VenvExecDir.Parent.FullName.TrimEnd("\\/") + Write-Verbose "VenvDir=$VenvDir" +} + +# Next, read the `pyvenv.cfg` file to determine any required value such +# as `prompt`. +$pyvenvCfg = Get-PyVenvConfig -ConfigDir $VenvDir + +# Next, set the prompt from the command line, or the config file, or +# just use the name of the virtual environment folder. +if ($Prompt) { + Write-Verbose "Prompt specified as argument, using '$Prompt'" +} +else { + Write-Verbose "Prompt not specified as argument to script, checking pyvenv.cfg value" + if ($pyvenvCfg -and $pyvenvCfg['prompt']) { + Write-Verbose " Setting based on value in pyvenv.cfg='$($pyvenvCfg['prompt'])'" + $Prompt = $pyvenvCfg['prompt']; + } + else { + Write-Verbose " Setting prompt based on parent's directory's name. (Is the directory name passed to venv module when creating the virtual environment)" + Write-Verbose " Got leaf-name of $VenvDir='$(Split-Path -Path $venvDir -Leaf)'" + $Prompt = Split-Path -Path $venvDir -Leaf + } +} + +Write-Verbose "Prompt = '$Prompt'" +Write-Verbose "VenvDir='$VenvDir'" + +# Deactivate any currently active virtual environment, but leave the +# deactivate function in place. +deactivate -nondestructive + +# Now set the environment variable VIRTUAL_ENV, used by many tools to determine +# that there is an activated venv. +$env:VIRTUAL_ENV = $VenvDir + +if (-not $Env:VIRTUAL_ENV_DISABLE_PROMPT) { + + Write-Verbose "Setting prompt to '$Prompt'" + + # Set the prompt to include the env name + # Make sure _OLD_VIRTUAL_PROMPT is global + function global:_OLD_VIRTUAL_PROMPT { "" } + Copy-Item -Path function:prompt -Destination function:_OLD_VIRTUAL_PROMPT + New-Variable -Name _PYTHON_VENV_PROMPT_PREFIX -Description "Python virtual environment prompt prefix" -Scope Global -Option ReadOnly -Visibility Public -Value $Prompt + + function global:prompt { + Write-Host -NoNewline -ForegroundColor Green "($_PYTHON_VENV_PROMPT_PREFIX) " + _OLD_VIRTUAL_PROMPT + } + $env:VIRTUAL_ENV_PROMPT = $Prompt +} + +# Clear PYTHONHOME +if (Test-Path -Path Env:PYTHONHOME) { + Copy-Item -Path Env:PYTHONHOME -Destination Env:_OLD_VIRTUAL_PYTHONHOME + Remove-Item -Path Env:PYTHONHOME +} + +# Add the venv to the PATH +Copy-Item -Path Env:PATH -Destination Env:_OLD_VIRTUAL_PATH +$Env:PATH = "$VenvExecDir$([System.IO.Path]::PathSeparator)$Env:PATH" diff --git a/.venv/bin/activate b/.venv/bin/activate new file mode 100644 index 00000000..892263e0 --- /dev/null +++ b/.venv/bin/activate @@ -0,0 +1,70 @@ +# This file must be used with "source bin/activate" *from bash* +# You cannot run it directly + +deactivate () { + # reset old environment variables + if [ -n "${_OLD_VIRTUAL_PATH:-}" ] ; then + PATH="${_OLD_VIRTUAL_PATH:-}" + export PATH + unset _OLD_VIRTUAL_PATH + fi + if [ -n "${_OLD_VIRTUAL_PYTHONHOME:-}" ] ; then + PYTHONHOME="${_OLD_VIRTUAL_PYTHONHOME:-}" + export PYTHONHOME + unset _OLD_VIRTUAL_PYTHONHOME + fi + + # Call hash to forget past commands. Without forgetting + # past commands the $PATH changes we made may not be respected + hash -r 2> /dev/null + + if [ -n "${_OLD_VIRTUAL_PS1:-}" ] ; then + PS1="${_OLD_VIRTUAL_PS1:-}" + export PS1 + unset _OLD_VIRTUAL_PS1 + fi + + unset VIRTUAL_ENV + unset VIRTUAL_ENV_PROMPT + if [ ! "${1:-}" = "nondestructive" ] ; then + # Self destruct! + unset -f deactivate + fi +} + +# unset irrelevant variables +deactivate nondestructive + +# on Windows, a path can contain colons and backslashes and has to be converted: +if [ "${OSTYPE:-}" = "cygwin" ] || [ "${OSTYPE:-}" = "msys" ] ; then + # transform D:\path\to\venv to /d/path/to/venv on MSYS + # and to /cygdrive/d/path/to/venv on Cygwin + export VIRTUAL_ENV=$(cygpath /mnt/c/Users/bernd.worsch/Documents/binky/2025/250915b-markitectAdvancedMarkdownEngine/markitect_project/.venv) +else + # use the path as-is + export VIRTUAL_ENV=/mnt/c/Users/bernd.worsch/Documents/binky/2025/250915b-markitectAdvancedMarkdownEngine/markitect_project/.venv +fi + +_OLD_VIRTUAL_PATH="$PATH" +PATH="$VIRTUAL_ENV/"bin":$PATH" +export PATH + +# unset PYTHONHOME if set +# this will fail if PYTHONHOME is set to the empty string (which is bad anyway) +# could use `if (set -u; : $PYTHONHOME) ;` in bash +if [ -n "${PYTHONHOME:-}" ] ; then + _OLD_VIRTUAL_PYTHONHOME="${PYTHONHOME:-}" + unset PYTHONHOME +fi + +if [ -z "${VIRTUAL_ENV_DISABLE_PROMPT:-}" ] ; then + _OLD_VIRTUAL_PS1="${PS1:-}" + PS1='(.venv) '"${PS1:-}" + export PS1 + VIRTUAL_ENV_PROMPT='(.venv) ' + export VIRTUAL_ENV_PROMPT +fi + +# Call hash to forget past commands. Without forgetting +# past commands the $PATH changes we made may not be respected +hash -r 2> /dev/null diff --git a/.venv/bin/activate.csh b/.venv/bin/activate.csh new file mode 100644 index 00000000..82d138ab --- /dev/null +++ b/.venv/bin/activate.csh @@ -0,0 +1,27 @@ +# This file must be used with "source bin/activate.csh" *from csh*. +# You cannot run it directly. + +# Created by Davide Di Blasi . +# Ported to Python 3.3 venv by Andrew Svetlov + +alias deactivate 'test $?_OLD_VIRTUAL_PATH != 0 && setenv PATH "$_OLD_VIRTUAL_PATH" && unset _OLD_VIRTUAL_PATH; rehash; test $?_OLD_VIRTUAL_PROMPT != 0 && set prompt="$_OLD_VIRTUAL_PROMPT" && unset _OLD_VIRTUAL_PROMPT; unsetenv VIRTUAL_ENV; unsetenv VIRTUAL_ENV_PROMPT; test "\!:*" != "nondestructive" && unalias deactivate' + +# Unset irrelevant variables. +deactivate nondestructive + +setenv VIRTUAL_ENV /mnt/c/Users/bernd.worsch/Documents/binky/2025/250915b-markitectAdvancedMarkdownEngine/markitect_project/.venv + +set _OLD_VIRTUAL_PATH="$PATH" +setenv PATH "$VIRTUAL_ENV/"bin":$PATH" + + +set _OLD_VIRTUAL_PROMPT="$prompt" + +if (! "$?VIRTUAL_ENV_DISABLE_PROMPT") then + set prompt = '(.venv) '"$prompt" + setenv VIRTUAL_ENV_PROMPT '(.venv) ' +endif + +alias pydoc python -m pydoc + +rehash diff --git a/.venv/bin/activate.fish b/.venv/bin/activate.fish new file mode 100644 index 00000000..20dbe58b --- /dev/null +++ b/.venv/bin/activate.fish @@ -0,0 +1,69 @@ +# This file must be used with "source /bin/activate.fish" *from fish* +# (https://fishshell.com/). You cannot run it directly. + +function deactivate -d "Exit virtual environment and return to normal shell environment" + # reset old environment variables + if test -n "$_OLD_VIRTUAL_PATH" + set -gx PATH $_OLD_VIRTUAL_PATH + set -e _OLD_VIRTUAL_PATH + end + if test -n "$_OLD_VIRTUAL_PYTHONHOME" + set -gx PYTHONHOME $_OLD_VIRTUAL_PYTHONHOME + set -e _OLD_VIRTUAL_PYTHONHOME + end + + if test -n "$_OLD_FISH_PROMPT_OVERRIDE" + set -e _OLD_FISH_PROMPT_OVERRIDE + # prevents error when using nested fish instances (Issue #93858) + if functions -q _old_fish_prompt + functions -e fish_prompt + functions -c _old_fish_prompt fish_prompt + functions -e _old_fish_prompt + end + end + + set -e VIRTUAL_ENV + set -e VIRTUAL_ENV_PROMPT + if test "$argv[1]" != "nondestructive" + # Self-destruct! + functions -e deactivate + end +end + +# Unset irrelevant variables. +deactivate nondestructive + +set -gx VIRTUAL_ENV /mnt/c/Users/bernd.worsch/Documents/binky/2025/250915b-markitectAdvancedMarkdownEngine/markitect_project/.venv + +set -gx _OLD_VIRTUAL_PATH $PATH +set -gx PATH "$VIRTUAL_ENV/"bin $PATH + +# Unset PYTHONHOME if set. +if set -q PYTHONHOME + set -gx _OLD_VIRTUAL_PYTHONHOME $PYTHONHOME + set -e PYTHONHOME +end + +if test -z "$VIRTUAL_ENV_DISABLE_PROMPT" + # fish uses a function instead of an env var to generate the prompt. + + # Save the current fish_prompt function as the function _old_fish_prompt. + functions -c fish_prompt _old_fish_prompt + + # With the original prompt function renamed, we can override with our own. + function fish_prompt + # Save the return status of the last command. + set -l old_status $status + + # Output the venv prompt; color taken from the blue of the Python logo. + printf "%s%s%s" (set_color 4B8BBE) '(.venv) ' (set_color normal) + + # Restore the return status of the previous command. + echo "exit $old_status" | . + # Output the original/"old" prompt. + _old_fish_prompt + end + + set -gx _OLD_FISH_PROMPT_OVERRIDE "$VIRTUAL_ENV" + set -gx VIRTUAL_ENV_PROMPT '(.venv) ' +end diff --git a/.venv/bin/pip b/.venv/bin/pip new file mode 100644 index 00000000..8b3bb2bf --- /dev/null +++ b/.venv/bin/pip @@ -0,0 +1,8 @@ +#!/mnt/c/Users/bernd.worsch/Documents/binky/2025/250915b-markitectAdvancedMarkdownEngine/markitect_project/.venv/bin/python3 +# -*- coding: utf-8 -*- +import re +import sys +from pip._internal.cli.main import main +if __name__ == '__main__': + sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0]) + sys.exit(main()) diff --git a/.venv/bin/pip3 b/.venv/bin/pip3 new file mode 100644 index 00000000..8b3bb2bf --- /dev/null +++ b/.venv/bin/pip3 @@ -0,0 +1,8 @@ +#!/mnt/c/Users/bernd.worsch/Documents/binky/2025/250915b-markitectAdvancedMarkdownEngine/markitect_project/.venv/bin/python3 +# -*- coding: utf-8 -*- +import re +import sys +from pip._internal.cli.main import main +if __name__ == '__main__': + sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0]) + sys.exit(main()) diff --git a/.venv/bin/pip3.12 b/.venv/bin/pip3.12 new file mode 100644 index 00000000..8b3bb2bf --- /dev/null +++ b/.venv/bin/pip3.12 @@ -0,0 +1,8 @@ +#!/mnt/c/Users/bernd.worsch/Documents/binky/2025/250915b-markitectAdvancedMarkdownEngine/markitect_project/.venv/bin/python3 +# -*- coding: utf-8 -*- +import re +import sys +from pip._internal.cli.main import main +if __name__ == '__main__': + sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0]) + sys.exit(main()) diff --git a/.venv/bin/python b/.venv/bin/python new file mode 120000 index 00000000..b8a0adbb --- /dev/null +++ b/.venv/bin/python @@ -0,0 +1 @@ +python3 \ No newline at end of file diff --git a/.venv/bin/python3 b/.venv/bin/python3 new file mode 120000 index 00000000..ae65fdaa --- /dev/null +++ b/.venv/bin/python3 @@ -0,0 +1 @@ +/usr/bin/python3 \ No newline at end of file diff --git a/.venv/bin/python3.12 b/.venv/bin/python3.12 new file mode 120000 index 00000000..b8a0adbb --- /dev/null +++ b/.venv/bin/python3.12 @@ -0,0 +1 @@ +python3 \ No newline at end of file diff --git a/.venv/lib/python3.12/site-packages/pip-24.0.dist-info/AUTHORS.txt b/.venv/lib/python3.12/site-packages/pip-24.0.dist-info/AUTHORS.txt new file mode 100644 index 00000000..0e635489 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip-24.0.dist-info/AUTHORS.txt @@ -0,0 +1,760 @@ +@Switch01 +A_Rog +Aakanksha Agrawal +Abhinav Sagar +ABHYUDAY PRATAP SINGH +abs51295 +AceGentile +Adam Chainz +Adam Tse +Adam Wentz +admin +Adrien Morison +ahayrapetyan +Ahilya +AinsworthK +Akash Srivastava +Alan Yee +Albert Tugushev +Albert-Guan +albertg +Alberto Sottile +Aleks Bunin +Ales Erjavec +Alethea Flowers +Alex Gaynor +Alex Grönholm +Alex Hedges +Alex Loosley +Alex Morega +Alex Stachowiak +Alexander Shtyrov +Alexandre Conrad +Alexey Popravka +Aleš Erjavec +Alli +Ami Fischman +Ananya Maiti +Anatoly Techtonik +Anders Kaseorg +Andre Aguiar +Andreas Lutro +Andrei Geacar +Andrew Gaul +Andrew Shymanel +Andrey Bienkowski +Andrey Bulgakov +Andrés Delfino +Andy Freeland +Andy Kluger +Ani Hayrapetyan +Aniruddha Basak +Anish Tambe +Anrs Hu +Anthony Sottile +Antoine Musso +Anton Ovchinnikov +Anton Patrushev +Antonio Alvarado Hernandez +Antony Lee +Antti Kaihola +Anubhav Patel +Anudit Nagar +Anuj Godase +AQNOUCH Mohammed +AraHaan +Arindam Choudhury +Armin Ronacher +Artem +Arun Babu Neelicattu +Ashley Manton +Ashwin Ramaswami +atse +Atsushi Odagiri +Avinash Karhana +Avner Cohen +Awit (Ah-Wit) Ghirmai +Baptiste Mispelon +Barney Gale +barneygale +Bartek Ogryczak +Bastian Venthur +Ben Bodenmiller +Ben Darnell +Ben Hoyt +Ben Mares +Ben Rosser +Bence Nagy +Benjamin Peterson +Benjamin VanEvery +Benoit Pierre +Berker Peksag +Bernard +Bernard Tyers +Bernardo B. Marques +Bernhard M. Wiedemann +Bertil Hatt +Bhavam Vidyarthi +Blazej Michalik +Bogdan Opanchuk +BorisZZZ +Brad Erickson +Bradley Ayers +Brandon L. Reiss +Brandt Bucher +Brett Randall +Brett Rosen +Brian Cristante +Brian Rosner +briantracy +BrownTruck +Bruno Oliveira +Bruno Renié +Bruno S +Bstrdsmkr +Buck Golemon +burrows +Bussonnier Matthias +bwoodsend +c22 +Caleb Martinez +Calvin Smith +Carl Meyer +Carlos Liam +Carol Willing +Carter Thayer +Cass +Chandrasekhar Atina +Chih-Hsuan Yen +Chris Brinker +Chris Hunt +Chris Jerdonek +Chris Kuehl +Chris McDonough +Chris Pawley +Chris Pryer +Chris Wolfe +Christian Clauss +Christian Heimes +Christian Oudard +Christoph Reiter +Christopher Hunt +Christopher Snyder +cjc7373 +Clark Boylan +Claudio Jolowicz +Clay McClure +Cody +Cody Soyland +Colin Watson +Collin Anderson +Connor Osborn +Cooper Lees +Cooper Ry Lees +Cory Benfield +Cory Wright +Craig Kerstiens +Cristian Sorinel +Cristina +Cristina Muñoz +Curtis Doty +cytolentino +Daan De Meyer +Dale +Damian +Damian Quiroga +Damian Shaw +Dan Black +Dan Savilonis +Dan Sully +Dane Hillard +daniel +Daniel Collins +Daniel Hahler +Daniel Holth +Daniel Jost +Daniel Katz +Daniel Shaulov +Daniele Esposti +Daniele Nicolodi +Daniele Procida +Daniil Konovalenko +Danny Hermes +Danny McClanahan +Darren Kavanagh +Dav Clark +Dave Abrahams +Dave Jones +David Aguilar +David Black +David Bordeynik +David Caro +David D Lowe +David Evans +David Hewitt +David Linke +David Poggi +David Pursehouse +David Runge +David Tucker +David Wales +Davidovich +ddelange +Deepak Sharma +Deepyaman Datta +Denise Yu +dependabot[bot] +derwolfe +Desetude +Devesh Kumar Singh +Diego Caraballo +Diego Ramirez +DiegoCaraballo +Dimitri Merejkowsky +Dimitri Papadopoulos +Dirk Stolle +Dmitry Gladkov +Dmitry Volodin +Domen Kožar +Dominic Davis-Foster +Donald Stufft +Dongweiming +doron zarhi +Dos Moonen +Douglas Thor +DrFeathers +Dustin Ingram +Dwayne Bailey +Ed Morley +Edgar Ramírez +Edgar Ramírez Mondragón +Ee Durbin +Efflam Lemaillet +efflamlemaillet +Eitan Adler +ekristina +elainechan +Eli Schwartz +Elisha Hollander +Ellen Marie Dash +Emil Burzo +Emil Styrke +Emmanuel Arias +Endoh Takanao +enoch +Erdinc Mutlu +Eric Cousineau +Eric Gillingham +Eric Hanchrow +Eric Hopper +Erik M. Bray +Erik Rose +Erwin Janssen +Eugene Vereshchagin +everdimension +Federico +Felipe Peter +Felix Yan +fiber-space +Filip Kokosiński +Filipe Laíns +Finn Womack +finnagin +Flavio Amurrio +Florian Briand +Florian Rathgeber +Francesco +Francesco Montesano +Frost Ming +Gabriel Curio +Gabriel de Perthuis +Garry Polley +gavin +gdanielson +Geoffrey Sneddon +George Song +Georgi Valkov +Georgy Pchelkin +ghost +Giftlin Rajaiah +gizmoguy1 +gkdoc +Godefroid Chapelle +Gopinath M +GOTO Hayato +gousaiyang +gpiks +Greg Roodt +Greg Ward +Guilherme Espada +Guillaume Seguin +gutsytechster +Guy Rozendorn +Guy Tuval +gzpan123 +Hanjun Kim +Hari Charan +Harsh Vardhan +harupy +Harutaka Kawamura +hauntsaninja +Henrich Hartzer +Henry Schreiner +Herbert Pfennig +Holly Stotelmyer +Honnix +Hsiaoming Yang +Hugo Lopes Tavares +Hugo van Kemenade +Hugues Bruant +Hynek Schlawack +Ian Bicking +Ian Cordasco +Ian Lee +Ian Stapleton Cordasco +Ian Wienand +Igor Kuzmitshov +Igor Sobreira +Ilan Schnell +Illia Volochii +Ilya Baryshev +Inada Naoki +Ionel Cristian Mărieș +Ionel Maries Cristian +Itamar Turner-Trauring +Ivan Pozdeev +J. Nick Koston +Jacob Kim +Jacob Walls +Jaime Sanz +jakirkham +Jakub Kuczys +Jakub Stasiak +Jakub Vysoky +Jakub Wilk +James Cleveland +James Curtin +James Firth +James Gerity +James Polley +Jan Pokorný +Jannis Leidel +Jarek Potiuk +jarondl +Jason Curtis +Jason R. Coombs +JasonMo +JasonMo1 +Jay Graves +Jean Abou Samra +Jean-Christophe Fillion-Robin +Jeff Barber +Jeff Dairiki +Jeff Widman +Jelmer Vernooij +jenix21 +Jeremy Stanley +Jeremy Zafran +Jesse Rittner +Jiashuo Li +Jim Fisher +Jim Garrison +Jiun Bae +Jivan Amara +Joe Bylund +Joe Michelini +John Paton +John T. Wodder II +John-Scott Atlakson +johnthagen +Jon Banafato +Jon Dufresne +Jon Parise +Jonas Nockert +Jonathan Herbert +Joonatan Partanen +Joost Molenaar +Jorge Niedbalski +Joseph Bylund +Joseph Long +Josh Bronson +Josh Hansen +Josh Schneier +Joshua +Juan Luis Cano Rodríguez +Juanjo Bazán +Judah Rand +Julian Berman +Julian Gethmann +Julien Demoor +Jussi Kukkonen +jwg4 +Jyrki Pulliainen +Kai Chen +Kai Mueller +Kamal Bin Mustafa +kasium +kaustav haldar +keanemind +Keith Maxwell +Kelsey Hightower +Kenneth Belitzky +Kenneth Reitz +Kevin Burke +Kevin Carter +Kevin Frommelt +Kevin R Patterson +Kexuan Sun +Kit Randel +Klaas van Schelven +KOLANICH +kpinc +Krishna Oza +Kumar McMillan +Kurt McKee +Kyle Persohn +lakshmanaram +Laszlo Kiss-Kollar +Laurent Bristiel +Laurent LAPORTE +Laurie O +Laurie Opperman +layday +Leon Sasson +Lev Givon +Lincoln de Sousa +Lipis +lorddavidiii +Loren Carvalho +Lucas Cimon +Ludovic Gasc +Lukas Geiger +Lukas Juhrich +Luke Macken +Luo Jiebin +luojiebin +luz.paz +László Kiss Kollár +M00nL1ght +Marc Abramowitz +Marc Tamlyn +Marcus Smith +Mariatta +Mark Kohler +Mark Williams +Markus Hametner +Martey Dodoo +Martin Fischer +Martin Häcker +Martin Pavlasek +Masaki +Masklinn +Matej Stuchlik +Mathew Jennings +Mathieu Bridon +Mathieu Kniewallner +Matt Bacchi +Matt Good +Matt Maker +Matt Robenolt +matthew +Matthew Einhorn +Matthew Feickert +Matthew Gilliard +Matthew Iversen +Matthew Treinish +Matthew Trumbell +Matthew Willson +Matthias Bussonnier +mattip +Maurits van Rees +Max W Chase +Maxim Kurnikov +Maxime Rouyrre +mayeut +mbaluna +mdebi +memoselyk +meowmeowcat +Michael +Michael Aquilina +Michael E. Karpeles +Michael Klich +Michael Mintz +Michael Williamson +michaelpacer +Michał Górny +Mickaël Schoentgen +Miguel Araujo Perez +Mihir Singh +Mike +Mike Hendricks +Min RK +MinRK +Miro Hrončok +Monica Baluna +montefra +Monty Taylor +Muha Ajjan‮ +Nadav Wexler +Nahuel Ambrosini +Nate Coraor +Nate Prewitt +Nathan Houghton +Nathaniel J. Smith +Nehal J Wani +Neil Botelho +Nguyễn Gia Phong +Nicholas Serra +Nick Coghlan +Nick Stenning +Nick Timkovich +Nicolas Bock +Nicole Harris +Nikhil Benesch +Nikhil Ladha +Nikita Chepanov +Nikolay Korolev +Nipunn Koorapati +Nitesh Sharma +Niyas Sait +Noah +Noah Gorny +Nowell Strite +NtaleGrey +nvdv +OBITORASU +Ofek Lev +ofrinevo +Oliver Freund +Oliver Jeeves +Oliver Mannion +Oliver Tonnhofer +Olivier Girardot +Olivier Grisel +Ollie Rutherfurd +OMOTO Kenji +Omry Yadan +onlinejudge95 +Oren Held +Oscar Benjamin +Oz N Tiram +Pachwenko +Patrick Dubroy +Patrick Jenkins +Patrick Lawson +patricktokeeffe +Patrik Kopkan +Paul Ganssle +Paul Kehrer +Paul Moore +Paul Nasrat +Paul Oswald +Paul van der Linden +Paulus Schoutsen +Pavel Safronov +Pavithra Eswaramoorthy +Pawel Jasinski +Paweł Szramowski +Pekka Klärck +Peter Gessler +Peter Lisák +Peter Waller +petr-tik +Phaneendra Chiruvella +Phil Elson +Phil Freo +Phil Pennock +Phil Whelan +Philip Jägenstedt +Philip Molloy +Philippe Ombredanne +Pi Delport +Pierre-Yves Rofes +Pieter Degroote +pip +Prabakaran Kumaresshan +Prabhjyotsing Surjit Singh Sodhi +Prabhu Marappan +Pradyun Gedam +Prashant Sharma +Pratik Mallya +pre-commit-ci[bot] +Preet Thakkar +Preston Holmes +Przemek Wrzos +Pulkit Goyal +q0w +Qiangning Hong +Qiming Xu +Quentin Lee +Quentin Pradet +R. David Murray +Rafael Caricio +Ralf Schmitt +Razzi Abuissa +rdb +Reece Dunham +Remi Rampin +Rene Dudfield +Riccardo Magliocchetti +Riccardo Schirone +Richard Jones +Richard Si +Ricky Ng-Adam +Rishi +RobberPhex +Robert Collins +Robert McGibbon +Robert Pollak +Robert T. McGibbon +robin elisha robinson +Roey Berman +Rohan Jain +Roman Bogorodskiy +Roman Donchenko +Romuald Brunet +ronaudinho +Ronny Pfannschmidt +Rory McCann +Ross Brattain +Roy Wellington Ⅳ +Ruairidh MacLeod +Russell Keith-Magee +Ryan Shepherd +Ryan Wooden +ryneeverett +Sachi King +Salvatore Rinchiera +sandeepkiran-js +Sander Van Balen +Savio Jomton +schlamar +Scott Kitterman +Sean +seanj +Sebastian Jordan +Sebastian Schaetz +Segev Finer +SeongSoo Cho +Sergey Vasilyev +Seth Michael Larson +Seth Woodworth +Shahar Epstein +Shantanu +shireenrao +Shivansh-007 +Shlomi Fish +Shovan Maity +Simeon Visser +Simon Cross +Simon Pichugin +sinoroc +sinscary +snook92 +socketubs +Sorin Sbarnea +Srinivas Nyayapati +Stavros Korokithakis +Stefan Scherfke +Stefano Rivera +Stephan Erb +Stephen Rosen +stepshal +Steve (Gadget) Barnes +Steve Barnes +Steve Dower +Steve Kowalik +Steven Myint +Steven Silvester +stonebig +studioj +Stéphane Bidoul +Stéphane Bidoul (ACSONE) +Stéphane Klein +Sumana Harihareswara +Surbhi Sharma +Sviatoslav Sydorenko +Swat009 +Sylvain +Takayuki SHIMIZUKAWA +Taneli Hukkinen +tbeswick +Thiago +Thijs Triemstra +Thomas Fenzl +Thomas Grainger +Thomas Guettler +Thomas Johansson +Thomas Kluyver +Thomas Smith +Thomas VINCENT +Tim D. Smith +Tim Gates +Tim Harder +Tim Heap +tim smith +tinruufu +Tobias Hermann +Tom Forbes +Tom Freudenheim +Tom V +Tomas Hrnciar +Tomas Orsava +Tomer Chachamu +Tommi Enenkel | AnB +Tomáš Hrnčiar +Tony Beswick +Tony Narlock +Tony Zhaocheng Tan +TonyBeswick +toonarmycaptain +Toshio Kuratomi +toxinu +Travis Swicegood +Tushar Sadhwani +Tzu-ping Chung +Valentin Haenel +Victor Stinner +victorvpaulo +Vikram - Google +Viktor Szépe +Ville Skyttä +Vinay Sajip +Vincent Philippon +Vinicyus Macedo +Vipul Kumar +Vitaly Babiy +Vladimir Fokow +Vladimir Rutsky +W. Trevor King +Wil Tan +Wilfred Hughes +William Edwards +William ML Leslie +William T Olson +William Woodruff +Wilson Mo +wim glenn +Winson Luk +Wolfgang Maier +Wu Zhenyu +XAMES3 +Xavier Fernandez +xoviat +xtreak +YAMAMOTO Takashi +Yen Chi Hsuan +Yeray Diaz Diaz +Yoval P +Yu Jian +Yuan Jing Vincent Yan +Yusuke Hayashi +Zearin +Zhiping Deng +ziebam +Zvezdan Petkovic +Łukasz Langa +Роман Донченко +Семён Марьясин +‮rekcäH nitraM‮ diff --git a/.venv/lib/python3.12/site-packages/pip-24.0.dist-info/INSTALLER b/.venv/lib/python3.12/site-packages/pip-24.0.dist-info/INSTALLER new file mode 100644 index 00000000..a1b589e3 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip-24.0.dist-info/INSTALLER @@ -0,0 +1 @@ +pip diff --git a/.venv/lib/python3.12/site-packages/pip-24.0.dist-info/LICENSE.txt b/.venv/lib/python3.12/site-packages/pip-24.0.dist-info/LICENSE.txt new file mode 100644 index 00000000..8e7b65ea --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip-24.0.dist-info/LICENSE.txt @@ -0,0 +1,20 @@ +Copyright (c) 2008-present The pip developers (see AUTHORS.txt file) + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to +permit persons to whom the Software is furnished to do so, subject to +the following conditions: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE +LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION +WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. diff --git a/.venv/lib/python3.12/site-packages/pip-24.0.dist-info/METADATA b/.venv/lib/python3.12/site-packages/pip-24.0.dist-info/METADATA new file mode 100644 index 00000000..e5b45bdd --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip-24.0.dist-info/METADATA @@ -0,0 +1,88 @@ +Metadata-Version: 2.1 +Name: pip +Version: 24.0 +Summary: The PyPA recommended tool for installing Python packages. +Author-email: The pip developers +License: MIT +Project-URL: Homepage, https://pip.pypa.io/ +Project-URL: Documentation, https://pip.pypa.io +Project-URL: Source, https://github.com/pypa/pip +Project-URL: Changelog, https://pip.pypa.io/en/stable/news/ +Classifier: Development Status :: 5 - Production/Stable +Classifier: Intended Audience :: Developers +Classifier: License :: OSI Approved :: MIT License +Classifier: Topic :: Software Development :: Build Tools +Classifier: Programming Language :: Python +Classifier: Programming Language :: Python :: 3 +Classifier: Programming Language :: Python :: 3 :: Only +Classifier: Programming Language :: Python :: 3.7 +Classifier: Programming Language :: Python :: 3.8 +Classifier: Programming Language :: Python :: 3.9 +Classifier: Programming Language :: Python :: 3.10 +Classifier: Programming Language :: Python :: 3.11 +Classifier: Programming Language :: Python :: 3.12 +Classifier: Programming Language :: Python :: Implementation :: CPython +Classifier: Programming Language :: Python :: Implementation :: PyPy +Requires-Python: >=3.7 +Description-Content-Type: text/x-rst +License-File: LICENSE.txt +License-File: AUTHORS.txt + +pip - The Python Package Installer +================================== + +.. image:: https://img.shields.io/pypi/v/pip.svg + :target: https://pypi.org/project/pip/ + :alt: PyPI + +.. image:: https://img.shields.io/pypi/pyversions/pip + :target: https://pypi.org/project/pip + :alt: PyPI - Python Version + +.. image:: https://readthedocs.org/projects/pip/badge/?version=latest + :target: https://pip.pypa.io/en/latest + :alt: Documentation + +pip is the `package installer`_ for Python. You can use pip to install packages from the `Python Package Index`_ and other indexes. + +Please take a look at our documentation for how to install and use pip: + +* `Installation`_ +* `Usage`_ + +We release updates regularly, with a new version every 3 months. Find more details in our documentation: + +* `Release notes`_ +* `Release process`_ + +If you find bugs, need help, or want to talk to the developers, please use our mailing lists or chat rooms: + +* `Issue tracking`_ +* `Discourse channel`_ +* `User IRC`_ + +If you want to get involved head over to GitHub to get the source code, look at our development documentation and feel free to jump on the developer mailing lists and chat rooms: + +* `GitHub page`_ +* `Development documentation`_ +* `Development IRC`_ + +Code of Conduct +--------------- + +Everyone interacting in the pip project's codebases, issue trackers, chat +rooms, and mailing lists is expected to follow the `PSF Code of Conduct`_. + +.. _package installer: https://packaging.python.org/guides/tool-recommendations/ +.. _Python Package Index: https://pypi.org +.. _Installation: https://pip.pypa.io/en/stable/installation/ +.. _Usage: https://pip.pypa.io/en/stable/ +.. _Release notes: https://pip.pypa.io/en/stable/news.html +.. _Release process: https://pip.pypa.io/en/latest/development/release-process/ +.. _GitHub page: https://github.com/pypa/pip +.. _Development documentation: https://pip.pypa.io/en/latest/development +.. _Issue tracking: https://github.com/pypa/pip/issues +.. _Discourse channel: https://discuss.python.org/c/packaging +.. _User IRC: https://kiwiirc.com/nextclient/#ircs://irc.libera.chat:+6697/pypa +.. _Development IRC: https://kiwiirc.com/nextclient/#ircs://irc.libera.chat:+6697/pypa-dev +.. _PSF Code of Conduct: https://github.com/pypa/.github/blob/main/CODE_OF_CONDUCT.md diff --git a/.venv/lib/python3.12/site-packages/pip-24.0.dist-info/RECORD b/.venv/lib/python3.12/site-packages/pip-24.0.dist-info/RECORD new file mode 100644 index 00000000..f8f12ab5 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip-24.0.dist-info/RECORD @@ -0,0 +1,1005 @@ +../../../bin/pip,sha256=6ZtTLXcU2D3RWeHT3C1oP5D1C4yUXVsDXHj89uJ27xA,327 +../../../bin/pip3,sha256=6ZtTLXcU2D3RWeHT3C1oP5D1C4yUXVsDXHj89uJ27xA,327 +../../../bin/pip3.12,sha256=6ZtTLXcU2D3RWeHT3C1oP5D1C4yUXVsDXHj89uJ27xA,327 +pip-24.0.dist-info/AUTHORS.txt,sha256=SwXm4nkwRkmtnO1ZY-dLy7EPeoQNXMNLby5CN3GlNhY,10388 +pip-24.0.dist-info/INSTALLER,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4 +pip-24.0.dist-info/LICENSE.txt,sha256=Y0MApmnUmurmWxLGxIySTFGkzfPR_whtw0VtyLyqIQQ,1093 +pip-24.0.dist-info/METADATA,sha256=kNEfJ3_Vho2mee4lfJdlbd5RHIqsfQJSMUB-bOkIOeI,3581 +pip-24.0.dist-info/RECORD,, +pip-24.0.dist-info/REQUESTED,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +pip-24.0.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92 +pip-24.0.dist-info/entry_points.txt,sha256=Fa_c0b-xGFaYxagIruvpJD6qqXmNTA02vAVIkmMj-9o,125 +pip-24.0.dist-info/top_level.txt,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4 +pip/__init__.py,sha256=oAk1nFpLmUVS5Ln7NxvNoGUn5Vkn6FGQjPaNDf8Q8pk,355 +pip/__main__.py,sha256=WzbhHXTbSE6gBY19mNN9m4s5o_365LOvTYSgqgbdBhE,854 +pip/__pip-runner__.py,sha256=EnrfKmKMzWAdqg_JicLCOP9Y95Ux7zHh4ObvqLtQcjo,1444 +pip/__pycache__/__init__.cpython-312.pyc,, +pip/__pycache__/__main__.cpython-312.pyc,, +pip/__pycache__/__pip-runner__.cpython-312.pyc,, +pip/_internal/__init__.py,sha256=iqZ5-YQsQV08tkUc7L806Reop6tguLFWf70ySF6be0Y,515 +pip/_internal/__pycache__/__init__.cpython-312.pyc,, +pip/_internal/__pycache__/build_env.cpython-312.pyc,, +pip/_internal/__pycache__/cache.cpython-312.pyc,, +pip/_internal/__pycache__/configuration.cpython-312.pyc,, +pip/_internal/__pycache__/exceptions.cpython-312.pyc,, +pip/_internal/__pycache__/main.cpython-312.pyc,, +pip/_internal/__pycache__/pyproject.cpython-312.pyc,, +pip/_internal/__pycache__/self_outdated_check.cpython-312.pyc,, +pip/_internal/__pycache__/wheel_builder.cpython-312.pyc,, +pip/_internal/build_env.py,sha256=1ESpqw0iupS_K7phZK5zshVE5Czy9BtGLFU4W6Enva8,10243 +pip/_internal/cache.py,sha256=uiYD-9F0Bv1C8ZyWE85lpzDmQf7hcUkgL99GmI8I41Q,10370 +pip/_internal/cli/__init__.py,sha256=FkHBgpxxb-_gd6r1FjnNhfMOzAUYyXoXKJ6abijfcFU,132 +pip/_internal/cli/__pycache__/__init__.cpython-312.pyc,, +pip/_internal/cli/__pycache__/autocompletion.cpython-312.pyc,, +pip/_internal/cli/__pycache__/base_command.cpython-312.pyc,, +pip/_internal/cli/__pycache__/cmdoptions.cpython-312.pyc,, +pip/_internal/cli/__pycache__/command_context.cpython-312.pyc,, +pip/_internal/cli/__pycache__/main.cpython-312.pyc,, +pip/_internal/cli/__pycache__/main_parser.cpython-312.pyc,, +pip/_internal/cli/__pycache__/parser.cpython-312.pyc,, +pip/_internal/cli/__pycache__/progress_bars.cpython-312.pyc,, +pip/_internal/cli/__pycache__/req_command.cpython-312.pyc,, +pip/_internal/cli/__pycache__/spinners.cpython-312.pyc,, +pip/_internal/cli/__pycache__/status_codes.cpython-312.pyc,, +pip/_internal/cli/autocompletion.py,sha256=_br_5NgSxSuvPjMF0MLHzS5s6BpSkQAQHKrLK89VauM,6690 +pip/_internal/cli/base_command.py,sha256=iuVWGa2oTq7gBReo0er3Z0tXJ2oqBIC6QjDHcnDhKXY,8733 +pip/_internal/cli/cmdoptions.py,sha256=V8ggG6AtHpHKkH_6tRU0mhJaZTeqtrFpu75ghvMXXJk,30063 +pip/_internal/cli/command_context.py,sha256=RHgIPwtObh5KhMrd3YZTkl8zbVG-6Okml7YbFX4Ehg0,774 +pip/_internal/cli/main.py,sha256=Uzxt_YD1hIvB1AW5mxt6IVcht5G712AtMqdo51UMhmQ,2816 +pip/_internal/cli/main_parser.py,sha256=laDpsuBDl6kyfywp9eMMA9s84jfH2TJJn-vmL0GG90w,4338 +pip/_internal/cli/parser.py,sha256=KW6C3-7-4ErTNB0TfLTKwOdHcd-qefCeGnrOoE2r0RQ,10781 +pip/_internal/cli/progress_bars.py,sha256=So4mPoSjXkXiSHiTzzquH3VVyVD_njXlHJSExYPXAow,1968 +pip/_internal/cli/req_command.py,sha256=c7_XHABnXmD3_qlK9-r37KqdKBAcgmVKvQ2WcTrNLfc,18369 +pip/_internal/cli/spinners.py,sha256=hIJ83GerdFgFCdobIA23Jggetegl_uC4Sp586nzFbPE,5118 +pip/_internal/cli/status_codes.py,sha256=sEFHUaUJbqv8iArL3HAtcztWZmGOFX01hTesSytDEh0,116 +pip/_internal/commands/__init__.py,sha256=5oRO9O3dM2vGuh0bFw4HOVletryrz5HHMmmPWwJrH9U,3882 +pip/_internal/commands/__pycache__/__init__.cpython-312.pyc,, +pip/_internal/commands/__pycache__/cache.cpython-312.pyc,, +pip/_internal/commands/__pycache__/check.cpython-312.pyc,, +pip/_internal/commands/__pycache__/completion.cpython-312.pyc,, +pip/_internal/commands/__pycache__/configuration.cpython-312.pyc,, +pip/_internal/commands/__pycache__/debug.cpython-312.pyc,, +pip/_internal/commands/__pycache__/download.cpython-312.pyc,, +pip/_internal/commands/__pycache__/freeze.cpython-312.pyc,, +pip/_internal/commands/__pycache__/hash.cpython-312.pyc,, +pip/_internal/commands/__pycache__/help.cpython-312.pyc,, +pip/_internal/commands/__pycache__/index.cpython-312.pyc,, +pip/_internal/commands/__pycache__/inspect.cpython-312.pyc,, +pip/_internal/commands/__pycache__/install.cpython-312.pyc,, +pip/_internal/commands/__pycache__/list.cpython-312.pyc,, +pip/_internal/commands/__pycache__/search.cpython-312.pyc,, +pip/_internal/commands/__pycache__/show.cpython-312.pyc,, +pip/_internal/commands/__pycache__/uninstall.cpython-312.pyc,, +pip/_internal/commands/__pycache__/wheel.cpython-312.pyc,, +pip/_internal/commands/cache.py,sha256=xg76_ZFEBC6zoQ3gXLRfMZJft4z2a0RwH4GEFZC6nnU,7944 +pip/_internal/commands/check.py,sha256=Rb13Q28yoLh0j1gpx5SU0jlResNct21eQCRsnaO9xKA,1782 +pip/_internal/commands/completion.py,sha256=HT4lD0bgsflHq2IDgYfiEdp7IGGtE7s6MgI3xn0VQEw,4287 +pip/_internal/commands/configuration.py,sha256=n98enwp6y0b5G6fiRQjaZo43FlJKYve_daMhN-4BRNc,9766 +pip/_internal/commands/debug.py,sha256=63972uUCeMIGOdMMVeIUGrOjTOqTVWplFC82a-hcKyA,6777 +pip/_internal/commands/download.py,sha256=e4hw088zGo26WmJaMIRvCniLlLmoOjqolGyfHjsCkCQ,5335 +pip/_internal/commands/freeze.py,sha256=qrIHS_-c6JPrQ92hMhAv9kkl0bHgFpRLwYJDdbcYr1o,3243 +pip/_internal/commands/hash.py,sha256=EVVOuvGtoPEdFi8SNnmdqlCQrhCxV-kJsdwtdcCnXGQ,1703 +pip/_internal/commands/help.py,sha256=gcc6QDkcgHMOuAn5UxaZwAStsRBrnGSn_yxjS57JIoM,1132 +pip/_internal/commands/index.py,sha256=CNXQer_PeZKSJooURcCFCBEKGfwyNoUWYP_MWczAcOM,4775 +pip/_internal/commands/inspect.py,sha256=2wSPt9yfr3r6g-s2S5L6PvRtaHNVyb4TuodMStJ39cw,3188 +pip/_internal/commands/install.py,sha256=VxDd-BD3a27ApeE2OK34rfBXS6Zo2wtemK9-HCwPqxM,28782 +pip/_internal/commands/list.py,sha256=-QbpPuGDiGN1SdThsk2ml8beBnepliefbGhMAN8tkzU,12547 +pip/_internal/commands/search.py,sha256=sbBZiARRc050QquOKcCvOr2K3XLsoYebLKZGRi__iUI,5697 +pip/_internal/commands/show.py,sha256=t5jia4zcYJRJZy4U_Von7zMl03hJmmcofj6oDNTnj7Y,6419 +pip/_internal/commands/uninstall.py,sha256=OIqO9tqadY8kM4HwhFf1Q62fUIp7v8KDrTRo8yWMz7Y,3886 +pip/_internal/commands/wheel.py,sha256=CSnX8Pmf1oPCnd7j7bn1_f58G9KHNiAblvVJ5zykN-A,6476 +pip/_internal/configuration.py,sha256=XkAiBS0hpzsM-LF0Qu5hvPWO_Bs67-oQKRYFBuMbESs,14006 +pip/_internal/distributions/__init__.py,sha256=Hq6kt6gXBgjNit5hTTWLAzeCNOKoB-N0pGYSqehrli8,858 +pip/_internal/distributions/__pycache__/__init__.cpython-312.pyc,, +pip/_internal/distributions/__pycache__/base.cpython-312.pyc,, +pip/_internal/distributions/__pycache__/installed.cpython-312.pyc,, +pip/_internal/distributions/__pycache__/sdist.cpython-312.pyc,, +pip/_internal/distributions/__pycache__/wheel.cpython-312.pyc,, +pip/_internal/distributions/base.py,sha256=oRSEvnv2ZjBnargamnv2fcJa1n6gUDKaW0g6CWSEpWs,1743 +pip/_internal/distributions/installed.py,sha256=QinHFbWAQ8oE0pbD8MFZWkwlnfU1QYTccA1vnhrlYOU,842 +pip/_internal/distributions/sdist.py,sha256=4K3V0VNMllHbBzCJibjwd_tylUKpmIdu2AQyhplvCQo,6709 +pip/_internal/distributions/wheel.py,sha256=-ma3sOtUQj0AxXCEb6_Fhmjl3nh4k3A0HC2taAb2N-4,1277 +pip/_internal/exceptions.py,sha256=TmF1iNFEneSWaemwlg6a5bpPuq2cMHK7d1-SvjsQHb0,23634 +pip/_internal/index/__init__.py,sha256=vpt-JeTZefh8a-FC22ZeBSXFVbuBcXSGiILhQZJaNpQ,30 +pip/_internal/index/__pycache__/__init__.cpython-312.pyc,, +pip/_internal/index/__pycache__/collector.cpython-312.pyc,, +pip/_internal/index/__pycache__/package_finder.cpython-312.pyc,, +pip/_internal/index/__pycache__/sources.cpython-312.pyc,, +pip/_internal/index/collector.py,sha256=sH0tL_cOoCk6pLLfCSGVjFM4rPEJtllF-VobvAvLSH4,16590 +pip/_internal/index/package_finder.py,sha256=S_nC8gzVIMY6ikWfKoSOzRtoesUqnfNhAPl_BwSOusA,37843 +pip/_internal/index/sources.py,sha256=dJegiR9f86kslaAHcv9-R5L_XBf5Rzm_FkyPteDuPxI,8688 +pip/_internal/locations/__init__.py,sha256=Dh8LJWG8LRlDK4JIj9sfRF96TREzE--N_AIlx7Tqoe4,15365 +pip/_internal/locations/__pycache__/__init__.cpython-312.pyc,, +pip/_internal/locations/__pycache__/_distutils.cpython-312.pyc,, +pip/_internal/locations/__pycache__/_sysconfig.cpython-312.pyc,, +pip/_internal/locations/__pycache__/base.cpython-312.pyc,, +pip/_internal/locations/_distutils.py,sha256=H9ZHK_35rdDV1Qsmi4QeaBULjFT4Mbu6QuoVGkJ6QHI,6009 +pip/_internal/locations/_sysconfig.py,sha256=jyNVtUfMIf0mtyY-Xp1m9yQ8iwECozSVVFmjkN9a2yw,7680 +pip/_internal/locations/base.py,sha256=RQiPi1d4FVM2Bxk04dQhXZ2PqkeljEL2fZZ9SYqIQ78,2556 +pip/_internal/main.py,sha256=r-UnUe8HLo5XFJz8inTcOOTiu_sxNhgHb6VwlGUllOI,340 +pip/_internal/metadata/__init__.py,sha256=9pU3W3s-6HtjFuYhWcLTYVmSaziklPv7k2x8p7X1GmA,4339 +pip/_internal/metadata/__pycache__/__init__.cpython-312.pyc,, +pip/_internal/metadata/__pycache__/_json.cpython-312.pyc,, +pip/_internal/metadata/__pycache__/base.cpython-312.pyc,, +pip/_internal/metadata/__pycache__/pkg_resources.cpython-312.pyc,, +pip/_internal/metadata/_json.py,sha256=Rz5M5ciSNvITwaTQR6NfN8TgKgM5WfTws4D6CFknovE,2627 +pip/_internal/metadata/base.py,sha256=l3Wgku4xlgr8s4p6fS-3qQ4QKOpPbWLRwi5d9omEFG4,25907 +pip/_internal/metadata/importlib/__init__.py,sha256=jUUidoxnHcfITHHaAWG1G2i5fdBYklv_uJcjo2x7VYE,135 +pip/_internal/metadata/importlib/__pycache__/__init__.cpython-312.pyc,, +pip/_internal/metadata/importlib/__pycache__/_compat.cpython-312.pyc,, +pip/_internal/metadata/importlib/__pycache__/_dists.cpython-312.pyc,, +pip/_internal/metadata/importlib/__pycache__/_envs.cpython-312.pyc,, +pip/_internal/metadata/importlib/_compat.py,sha256=GAe_prIfCE4iUylrnr_2dJRlkkBVRUbOidEoID7LPoE,1882 +pip/_internal/metadata/importlib/_dists.py,sha256=UPl1wUujFqiwiltRJ1tMF42WRINO1sSpNNlYQ2mX0mk,8297 +pip/_internal/metadata/importlib/_envs.py,sha256=XTaFIYERP2JF0QUZuPx2ETiugXbPEcZ8q8ZKeht6Lpc,7456 +pip/_internal/metadata/pkg_resources.py,sha256=opjw4IBSqHvie6sXJ_cbT42meygoPEUfNURJuWZY7sk,10035 +pip/_internal/models/__init__.py,sha256=3DHUd_qxpPozfzouoqa9g9ts1Czr5qaHfFxbnxriepM,63 +pip/_internal/models/__pycache__/__init__.cpython-312.pyc,, +pip/_internal/models/__pycache__/candidate.cpython-312.pyc,, +pip/_internal/models/__pycache__/direct_url.cpython-312.pyc,, +pip/_internal/models/__pycache__/format_control.cpython-312.pyc,, +pip/_internal/models/__pycache__/index.cpython-312.pyc,, +pip/_internal/models/__pycache__/installation_report.cpython-312.pyc,, +pip/_internal/models/__pycache__/link.cpython-312.pyc,, +pip/_internal/models/__pycache__/scheme.cpython-312.pyc,, +pip/_internal/models/__pycache__/search_scope.cpython-312.pyc,, +pip/_internal/models/__pycache__/selection_prefs.cpython-312.pyc,, +pip/_internal/models/__pycache__/target_python.cpython-312.pyc,, +pip/_internal/models/__pycache__/wheel.cpython-312.pyc,, +pip/_internal/models/candidate.py,sha256=hEPu8VdGE5qVASv6vLz-R-Rgh5-7LMbai1jgthMCd8M,931 +pip/_internal/models/direct_url.py,sha256=FwouYBKcqckh7B-k2H3HVgRhhFTukFwqiS3kfvtFLSk,6889 +pip/_internal/models/format_control.py,sha256=wtsQqSK9HaUiNxQEuB-C62eVimw6G4_VQFxV9-_KDBE,2486 +pip/_internal/models/index.py,sha256=tYnL8oxGi4aSNWur0mG8DAP7rC6yuha_MwJO8xw0crI,1030 +pip/_internal/models/installation_report.py,sha256=zRVZoaz-2vsrezj_H3hLOhMZCK9c7TbzWgC-jOalD00,2818 +pip/_internal/models/link.py,sha256=XirOAGv1jgMu7vu87kuPbohGj7VHpwVrd2q3KUgVQNg,20777 +pip/_internal/models/scheme.py,sha256=3EFQp_ICu_shH1-TBqhl0QAusKCPDFOlgHFeN4XowWs,738 +pip/_internal/models/search_scope.py,sha256=ASVyyZxiJILw7bTIVVpJx8J293M3Hk5F33ilGn0e80c,4643 +pip/_internal/models/selection_prefs.py,sha256=KZdi66gsR-_RUXUr9uejssk3rmTHrQVJWeNA2sV-VSY,1907 +pip/_internal/models/target_python.py,sha256=34EkorrMuRvRp-bjqHKJ-bOO71m9xdjN2b8WWFEC2HU,4272 +pip/_internal/models/wheel.py,sha256=YqazoIZyma_Q1ejFa1C7NHKQRRWlvWkdK96VRKmDBeI,3600 +pip/_internal/network/__init__.py,sha256=jf6Tt5nV_7zkARBrKojIXItgejvoegVJVKUbhAa5Ioc,50 +pip/_internal/network/__pycache__/__init__.cpython-312.pyc,, +pip/_internal/network/__pycache__/auth.cpython-312.pyc,, +pip/_internal/network/__pycache__/cache.cpython-312.pyc,, +pip/_internal/network/__pycache__/download.cpython-312.pyc,, +pip/_internal/network/__pycache__/lazy_wheel.cpython-312.pyc,, +pip/_internal/network/__pycache__/session.cpython-312.pyc,, +pip/_internal/network/__pycache__/utils.cpython-312.pyc,, +pip/_internal/network/__pycache__/xmlrpc.cpython-312.pyc,, +pip/_internal/network/auth.py,sha256=TC-OcW2KU4W6R1hU4qPgQXvVH54adACpZz6sWq-R9NA,20541 +pip/_internal/network/cache.py,sha256=48A971qCzKNFvkb57uGEk7-0xaqPS0HWj2711QNTxkU,3935 +pip/_internal/network/download.py,sha256=i0Tn55CD5D7XYEFY3TxiYaCf0OaaTQ6SScNgCsSeV14,6086 +pip/_internal/network/lazy_wheel.py,sha256=2PXVduYZPCPZkkQFe1J1GbfHJWeCU--FXonGyIfw9eU,7638 +pip/_internal/network/session.py,sha256=9tqEDD8JiVaFdplOEXJxNo9cjRfBZ6RIa0yQQ_qBNiM,18698 +pip/_internal/network/utils.py,sha256=6A5SrUJEEUHxbGtbscwU2NpCyz-3ztiDlGWHpRRhsJ8,4073 +pip/_internal/network/xmlrpc.py,sha256=sAxzOacJ-N1NXGPvap9jC3zuYWSnnv3GXtgR2-E2APA,1838 +pip/_internal/operations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +pip/_internal/operations/__pycache__/__init__.cpython-312.pyc,, +pip/_internal/operations/__pycache__/check.cpython-312.pyc,, +pip/_internal/operations/__pycache__/freeze.cpython-312.pyc,, +pip/_internal/operations/__pycache__/prepare.cpython-312.pyc,, +pip/_internal/operations/build/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +pip/_internal/operations/build/__pycache__/__init__.cpython-312.pyc,, +pip/_internal/operations/build/__pycache__/build_tracker.cpython-312.pyc,, +pip/_internal/operations/build/__pycache__/metadata.cpython-312.pyc,, +pip/_internal/operations/build/__pycache__/metadata_editable.cpython-312.pyc,, +pip/_internal/operations/build/__pycache__/metadata_legacy.cpython-312.pyc,, +pip/_internal/operations/build/__pycache__/wheel.cpython-312.pyc,, +pip/_internal/operations/build/__pycache__/wheel_editable.cpython-312.pyc,, +pip/_internal/operations/build/__pycache__/wheel_legacy.cpython-312.pyc,, +pip/_internal/operations/build/build_tracker.py,sha256=z-H5DOknZdBa3dh2Vq6VBMY5qLYIKmlj2p6CGZK5Lc8,4832 +pip/_internal/operations/build/metadata.py,sha256=9S0CUD8U3QqZeXp-Zyt8HxwU90lE4QrnYDgrqZDzBnc,1422 +pip/_internal/operations/build/metadata_editable.py,sha256=VLL7LvntKE8qxdhUdEJhcotFzUsOSI8NNS043xULKew,1474 +pip/_internal/operations/build/metadata_legacy.py,sha256=o-eU21As175hDC7dluM1fJJ_FqokTIShyWpjKaIpHZw,2198 +pip/_internal/operations/build/wheel.py,sha256=sT12FBLAxDC6wyrDorh8kvcZ1jG5qInCRWzzP-UkJiQ,1075 +pip/_internal/operations/build/wheel_editable.py,sha256=yOtoH6zpAkoKYEUtr8FhzrYnkNHQaQBjWQ2HYae1MQg,1417 +pip/_internal/operations/build/wheel_legacy.py,sha256=C9j6rukgQI1n_JeQLoZGuDdfUwzCXShyIdPTp6edbMQ,3064 +pip/_internal/operations/check.py,sha256=fsqA88iGaqftCr2tlP3sSU202CSkoODRtW0O-JU9M4Y,6806 +pip/_internal/operations/freeze.py,sha256=uqoeTAf6HOYVMR2UgAT8N85UZoGEVEoQdan_Ao6SOfk,9816 +pip/_internal/operations/install/__init__.py,sha256=mX7hyD2GNBO2mFGokDQ30r_GXv7Y_PLdtxcUv144e-s,51 +pip/_internal/operations/install/__pycache__/__init__.cpython-312.pyc,, +pip/_internal/operations/install/__pycache__/editable_legacy.cpython-312.pyc,, +pip/_internal/operations/install/__pycache__/wheel.cpython-312.pyc,, +pip/_internal/operations/install/editable_legacy.py,sha256=YeR0KadWXw_ZheC1NtAG1qVIEkOgRGHc23x-YtGW7NU,1282 +pip/_internal/operations/install/wheel.py,sha256=9hGb1c4bRnPIb2FG7CtUSPfPxqprmHQBtwIAlWPNTtE,27311 +pip/_internal/operations/prepare.py,sha256=57Oq87HfunX3Rbqp47FdaJr9cHbAKUm_3gv7WhBAqbE,28128 +pip/_internal/pyproject.py,sha256=4Xszp11xgr126yzG6BbJA0oaQ9WXuhb0jyUb-y_6lPQ,7152 +pip/_internal/req/__init__.py,sha256=TELFgZOof3lhMmaICVWL9U7PlhXo9OufokbMAJ6J2GI,2738 +pip/_internal/req/__pycache__/__init__.cpython-312.pyc,, +pip/_internal/req/__pycache__/constructors.cpython-312.pyc,, +pip/_internal/req/__pycache__/req_file.cpython-312.pyc,, +pip/_internal/req/__pycache__/req_install.cpython-312.pyc,, +pip/_internal/req/__pycache__/req_set.cpython-312.pyc,, +pip/_internal/req/__pycache__/req_uninstall.cpython-312.pyc,, +pip/_internal/req/constructors.py,sha256=8hlY56imEthLORRwmloyKz3YOyXymIaKsNB6P9ewvNI,19018 +pip/_internal/req/req_file.py,sha256=M8ttOZL-PwAj7scPElhW3ZD2hiD9mm_6FJAGIbwAzEI,17790 +pip/_internal/req/req_install.py,sha256=wtOPxkyRSM8comTks8oL1Gp2oyGqbH7JwIDRci2QiPk,35460 +pip/_internal/req/req_set.py,sha256=iMYDUToSgkxFyrP_OrTtPSgw4dwjRyGRDpGooTqeA4Y,4704 +pip/_internal/req/req_uninstall.py,sha256=nmvTQaRCC0iu-5Tw0djlXJhSj6WmqHRvT3qkkEdC35E,24551 +pip/_internal/resolution/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +pip/_internal/resolution/__pycache__/__init__.cpython-312.pyc,, +pip/_internal/resolution/__pycache__/base.cpython-312.pyc,, +pip/_internal/resolution/base.py,sha256=qlmh325SBVfvG6Me9gc5Nsh5sdwHBwzHBq6aEXtKsLA,583 +pip/_internal/resolution/legacy/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +pip/_internal/resolution/legacy/__pycache__/__init__.cpython-312.pyc,, +pip/_internal/resolution/legacy/__pycache__/resolver.cpython-312.pyc,, +pip/_internal/resolution/legacy/resolver.py,sha256=Xk24jQ62GvLr4Mc7IjN_qiO88qp0BImzVmPIFz9QLOE,24025 +pip/_internal/resolution/resolvelib/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +pip/_internal/resolution/resolvelib/__pycache__/__init__.cpython-312.pyc,, +pip/_internal/resolution/resolvelib/__pycache__/base.cpython-312.pyc,, +pip/_internal/resolution/resolvelib/__pycache__/candidates.cpython-312.pyc,, +pip/_internal/resolution/resolvelib/__pycache__/factory.cpython-312.pyc,, +pip/_internal/resolution/resolvelib/__pycache__/found_candidates.cpython-312.pyc,, +pip/_internal/resolution/resolvelib/__pycache__/provider.cpython-312.pyc,, +pip/_internal/resolution/resolvelib/__pycache__/reporter.cpython-312.pyc,, +pip/_internal/resolution/resolvelib/__pycache__/requirements.cpython-312.pyc,, +pip/_internal/resolution/resolvelib/__pycache__/resolver.cpython-312.pyc,, +pip/_internal/resolution/resolvelib/base.py,sha256=jg5COmHLhmBIKOR-4spdJD3jyULYa1BdsqiBu2YJnJ4,5173 +pip/_internal/resolution/resolvelib/candidates.py,sha256=19Ki91Po-MSxBknGIfOGkaWkFdOznN0W_nKv7jL28L0,21052 +pip/_internal/resolution/resolvelib/factory.py,sha256=vqqk-hjchdhShwWVdeW2_A-5ZblLhE_nC_v3Mhz4Svc,32292 +pip/_internal/resolution/resolvelib/found_candidates.py,sha256=hvL3Hoa9VaYo-qEOZkBi2Iqw251UDxPz-uMHVaWmLpE,5705 +pip/_internal/resolution/resolvelib/provider.py,sha256=4t23ivjruqM6hKBX1KpGiTt-M4HGhRcZnGLV0c01K7U,9824 +pip/_internal/resolution/resolvelib/reporter.py,sha256=YFm9hQvz4DFCbjZeFTQ56hTz3Ac-mDBnHkeNRVvMHLY,3100 +pip/_internal/resolution/resolvelib/requirements.py,sha256=-kJONP0WjDfdTvBAs2vUXPgAnOyNIBEAXY4b72ogtPE,5696 +pip/_internal/resolution/resolvelib/resolver.py,sha256=nLJOsVMEVi2gQUVJoUFKMZAeu2f7GRMjGMvNSWyz0Bc,12592 +pip/_internal/self_outdated_check.py,sha256=saxQLB8UzIFtMScquytG10TOTsYVFJQ_mkW1NY-46wE,8378 +pip/_internal/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +pip/_internal/utils/__pycache__/__init__.cpython-312.pyc,, +pip/_internal/utils/__pycache__/_jaraco_text.cpython-312.pyc,, +pip/_internal/utils/__pycache__/_log.cpython-312.pyc,, +pip/_internal/utils/__pycache__/appdirs.cpython-312.pyc,, +pip/_internal/utils/__pycache__/compat.cpython-312.pyc,, +pip/_internal/utils/__pycache__/compatibility_tags.cpython-312.pyc,, +pip/_internal/utils/__pycache__/datetime.cpython-312.pyc,, +pip/_internal/utils/__pycache__/deprecation.cpython-312.pyc,, +pip/_internal/utils/__pycache__/direct_url_helpers.cpython-312.pyc,, +pip/_internal/utils/__pycache__/egg_link.cpython-312.pyc,, +pip/_internal/utils/__pycache__/encoding.cpython-312.pyc,, +pip/_internal/utils/__pycache__/entrypoints.cpython-312.pyc,, +pip/_internal/utils/__pycache__/filesystem.cpython-312.pyc,, +pip/_internal/utils/__pycache__/filetypes.cpython-312.pyc,, +pip/_internal/utils/__pycache__/glibc.cpython-312.pyc,, +pip/_internal/utils/__pycache__/hashes.cpython-312.pyc,, +pip/_internal/utils/__pycache__/logging.cpython-312.pyc,, +pip/_internal/utils/__pycache__/misc.cpython-312.pyc,, +pip/_internal/utils/__pycache__/models.cpython-312.pyc,, +pip/_internal/utils/__pycache__/packaging.cpython-312.pyc,, +pip/_internal/utils/__pycache__/setuptools_build.cpython-312.pyc,, +pip/_internal/utils/__pycache__/subprocess.cpython-312.pyc,, +pip/_internal/utils/__pycache__/temp_dir.cpython-312.pyc,, +pip/_internal/utils/__pycache__/unpacking.cpython-312.pyc,, +pip/_internal/utils/__pycache__/urls.cpython-312.pyc,, +pip/_internal/utils/__pycache__/virtualenv.cpython-312.pyc,, +pip/_internal/utils/__pycache__/wheel.cpython-312.pyc,, +pip/_internal/utils/_jaraco_text.py,sha256=yvDGelTVugRayPaOF2k4ab0Ky4d3uOkAfuOQjASjImY,3351 +pip/_internal/utils/_log.py,sha256=-jHLOE_THaZz5BFcCnoSL9EYAtJ0nXem49s9of4jvKw,1015 +pip/_internal/utils/appdirs.py,sha256=swgcTKOm3daLeXTW6v5BUS2Ti2RvEnGRQYH_yDXklAo,1665 +pip/_internal/utils/compat.py,sha256=ACyBfLgj3_XG-iA5omEDrXqDM0cQKzi8h8HRBInzG6Q,1884 +pip/_internal/utils/compatibility_tags.py,sha256=ydin8QG8BHqYRsPY4OL6cmb44CbqXl1T0xxS97VhHkk,5377 +pip/_internal/utils/datetime.py,sha256=m21Y3wAtQc-ji6Veb6k_M5g6A0ZyFI4egchTdnwh-pQ,242 +pip/_internal/utils/deprecation.py,sha256=NKo8VqLioJ4nnXXGmW4KdasxF90EFHkZaHeX1fT08C8,3627 +pip/_internal/utils/direct_url_helpers.py,sha256=6F1tc2rcKaCZmgfVwsE6ObIe_Pux23mUVYA-2D9wCFc,3206 +pip/_internal/utils/egg_link.py,sha256=0FePZoUYKv4RGQ2t6x7w5Z427wbA_Uo3WZnAkrgsuqo,2463 +pip/_internal/utils/encoding.py,sha256=qqsXDtiwMIjXMEiIVSaOjwH5YmirCaK-dIzb6-XJsL0,1169 +pip/_internal/utils/entrypoints.py,sha256=YlhLTRl2oHBAuqhc-zmL7USS67TPWVHImjeAQHreZTQ,3064 +pip/_internal/utils/filesystem.py,sha256=RhMIXUaNVMGjc3rhsDahWQ4MavvEQDdqXqgq-F6fpw8,5122 +pip/_internal/utils/filetypes.py,sha256=i8XAQ0eFCog26Fw9yV0Yb1ygAqKYB1w9Cz9n0fj8gZU,716 +pip/_internal/utils/glibc.py,sha256=Mesxxgg3BLxheLZx-dSf30b6gKpOgdVXw6W--uHSszQ,3113 +pip/_internal/utils/hashes.py,sha256=MjOigC75z6qoRMkgHiHqot7eqxfwDZSrEflJMPm-bHE,5118 +pip/_internal/utils/logging.py,sha256=fdtuZJ-AKkqwDTANDvGcBEpssL8el7T1jnwk1CnZl3Y,11603 +pip/_internal/utils/misc.py,sha256=fNXwaeeikvnUt4CPMFIL4-IQbZDxxjj4jDpzCi4ZsOw,23623 +pip/_internal/utils/models.py,sha256=5GoYU586SrxURMvDn_jBMJInitviJg4O5-iOU-6I0WY,1193 +pip/_internal/utils/packaging.py,sha256=5Wm6_x7lKrlqVjPI5MBN_RurcRHwVYoQ7Ksrs84de7s,2108 +pip/_internal/utils/setuptools_build.py,sha256=ouXpud-jeS8xPyTPsXJ-m34NPvK5os45otAzdSV_IJE,4435 +pip/_internal/utils/subprocess.py,sha256=zzdimb75jVLE1GU4WlTZ055gczhD7n1y1xTcNc7vNZQ,9207 +pip/_internal/utils/temp_dir.py,sha256=DUAw22uFruQdK43i2L2K53C-CDjRCPeAsBKJpu-rHQ4,9312 +pip/_internal/utils/unpacking.py,sha256=SBb2iV1crb89MDRTEKY86R4A_UOWApTQn9VQVcMDOlE,8821 +pip/_internal/utils/urls.py,sha256=AhaesUGl-9it6uvG6fsFPOr9ynFpGaTMk4t5XTX7Z_Q,1759 +pip/_internal/utils/virtualenv.py,sha256=S6f7csYorRpiD6cvn3jISZYc3I8PJC43H5iMFpRAEDU,3456 +pip/_internal/utils/wheel.py,sha256=i4BwUNHattzN0ixy3HBAF04tZPRh2CcxaT6t86viwkE,4499 +pip/_internal/vcs/__init__.py,sha256=UAqvzpbi0VbZo3Ub6skEeZAw-ooIZR-zX_WpCbxyCoU,596 +pip/_internal/vcs/__pycache__/__init__.cpython-312.pyc,, +pip/_internal/vcs/__pycache__/bazaar.cpython-312.pyc,, +pip/_internal/vcs/__pycache__/git.cpython-312.pyc,, +pip/_internal/vcs/__pycache__/mercurial.cpython-312.pyc,, +pip/_internal/vcs/__pycache__/subversion.cpython-312.pyc,, +pip/_internal/vcs/__pycache__/versioncontrol.cpython-312.pyc,, +pip/_internal/vcs/bazaar.py,sha256=j0oin0fpGRHcCFCxEcpPCQoFEvA-DMLULKdGP8Nv76o,3519 +pip/_internal/vcs/git.py,sha256=CeKBGJnl6uskvvjkAUXrJVxbHJrpS_B_pyfFdjL3CRc,18121 +pip/_internal/vcs/mercurial.py,sha256=oULOhzJ2Uie-06d1omkL-_Gc6meGaUkyogvqG9ZCyPs,5249 +pip/_internal/vcs/subversion.py,sha256=vhZs8L-TNggXqM1bbhl-FpbxE3TrIB6Tgnx8fh3S2HE,11729 +pip/_internal/vcs/versioncontrol.py,sha256=3eIjtOMYvOY5qP6BMYIYDZ375CSuec6kSEB0bOo1cSs,22787 +pip/_internal/wheel_builder.py,sha256=qTTzQV8F6b1jNsFCda1TRQC8J7gK-m7iuRNgKo7Dj68,11801 +pip/_vendor/__init__.py,sha256=U51NPwXdA-wXOiANIQncYjcMp6txgeOL5nHxksJeyas,4993 +pip/_vendor/__pycache__/__init__.cpython-312.pyc,, +pip/_vendor/__pycache__/six.cpython-312.pyc,, +pip/_vendor/__pycache__/typing_extensions.cpython-312.pyc,, +pip/_vendor/cachecontrol/__init__.py,sha256=ctHagMhQXuvQDdm4TirZrwDOT5H8oBNAJqzdKI6sovk,676 +pip/_vendor/cachecontrol/__pycache__/__init__.cpython-312.pyc,, +pip/_vendor/cachecontrol/__pycache__/_cmd.cpython-312.pyc,, +pip/_vendor/cachecontrol/__pycache__/adapter.cpython-312.pyc,, +pip/_vendor/cachecontrol/__pycache__/cache.cpython-312.pyc,, +pip/_vendor/cachecontrol/__pycache__/controller.cpython-312.pyc,, +pip/_vendor/cachecontrol/__pycache__/filewrapper.cpython-312.pyc,, +pip/_vendor/cachecontrol/__pycache__/heuristics.cpython-312.pyc,, +pip/_vendor/cachecontrol/__pycache__/serialize.cpython-312.pyc,, +pip/_vendor/cachecontrol/__pycache__/wrapper.cpython-312.pyc,, +pip/_vendor/cachecontrol/_cmd.py,sha256=iist2EpzJvDVIhMAxXq8iFnTBsiZAd6iplxfmNboNyk,1737 +pip/_vendor/cachecontrol/adapter.py,sha256=_CcWvUP9048qAZjsNqViaHbdcLs9mmFNixVfpO7oebE,6392 +pip/_vendor/cachecontrol/cache.py,sha256=OTQj72tUf8C1uEgczdl3Gc8vkldSzsTITKtDGKMx4z8,1952 +pip/_vendor/cachecontrol/caches/__init__.py,sha256=dtrrroK5BnADR1GWjCZ19aZ0tFsMfvFBtLQQU1sp_ag,303 +pip/_vendor/cachecontrol/caches/__pycache__/__init__.cpython-312.pyc,, +pip/_vendor/cachecontrol/caches/__pycache__/file_cache.cpython-312.pyc,, +pip/_vendor/cachecontrol/caches/__pycache__/redis_cache.cpython-312.pyc,, +pip/_vendor/cachecontrol/caches/file_cache.py,sha256=3z8AWKD-vfKeiJqIzLmJyIYtR2yd6Tsh3u1TyLRQoIQ,5352 +pip/_vendor/cachecontrol/caches/redis_cache.py,sha256=9rmqwtYu_ljVkW6_oLqbC7EaX_a8YT_yLuna-eS0dgo,1386 +pip/_vendor/cachecontrol/controller.py,sha256=keCFA3ZaNVaWTwHd6F1zqWhb4vyvNx_UvZuo5iIYMfo,18384 +pip/_vendor/cachecontrol/filewrapper.py,sha256=STttGmIPBvZzt2b51dUOwoWX5crcMCpKZOisM3f5BNc,4292 +pip/_vendor/cachecontrol/heuristics.py,sha256=fdFbk9W8IeLrjteIz_fK4mj2HD_Y7COXF2Uc8TgjT1c,4828 +pip/_vendor/cachecontrol/serialize.py,sha256=0dHeMaDwysVAAnGVlhMOP4tDliohgNK0Jxk_zsOiWxw,7173 +pip/_vendor/cachecontrol/wrapper.py,sha256=hsGc7g8QGQTT-4f8tgz3AM5qwScg6FO0BSdLSRdEvpU,1417 +pip/_vendor/certifi/__init__.py,sha256=L_j-d0kYuA_MzA2_2hraF1ovf6KT6DTquRdV3paQwOk,94 +pip/_vendor/certifi/__main__.py,sha256=1k3Cr95vCxxGRGDljrW3wMdpZdL3Nhf0u1n-k2qdsCY,255 +pip/_vendor/certifi/__pycache__/__init__.cpython-312.pyc,, +pip/_vendor/certifi/__pycache__/__main__.cpython-312.pyc,, +pip/_vendor/certifi/__pycache__/core.cpython-312.pyc,, +pip/_vendor/certifi/cacert.pem,sha256=eU0Dn_3yd8BH4m8sfVj4Glhl2KDrcCSg-sEWT-pNJ88,281617 +pip/_vendor/certifi/core.py,sha256=DNTl8b_B6C4vO3Vc9_q2uvwHpNnBQoy5onDC4McImxc,4531 +pip/_vendor/chardet/__init__.py,sha256=57R-HSxj0PWmILMN0GFmUNqEMfrEVSamXyjD-W6_fbs,4797 +pip/_vendor/chardet/__pycache__/__init__.cpython-312.pyc,, +pip/_vendor/chardet/__pycache__/big5freq.cpython-312.pyc,, +pip/_vendor/chardet/__pycache__/big5prober.cpython-312.pyc,, +pip/_vendor/chardet/__pycache__/chardistribution.cpython-312.pyc,, +pip/_vendor/chardet/__pycache__/charsetgroupprober.cpython-312.pyc,, +pip/_vendor/chardet/__pycache__/charsetprober.cpython-312.pyc,, +pip/_vendor/chardet/__pycache__/codingstatemachine.cpython-312.pyc,, +pip/_vendor/chardet/__pycache__/codingstatemachinedict.cpython-312.pyc,, +pip/_vendor/chardet/__pycache__/cp949prober.cpython-312.pyc,, +pip/_vendor/chardet/__pycache__/enums.cpython-312.pyc,, +pip/_vendor/chardet/__pycache__/escprober.cpython-312.pyc,, +pip/_vendor/chardet/__pycache__/escsm.cpython-312.pyc,, +pip/_vendor/chardet/__pycache__/eucjpprober.cpython-312.pyc,, +pip/_vendor/chardet/__pycache__/euckrfreq.cpython-312.pyc,, +pip/_vendor/chardet/__pycache__/euckrprober.cpython-312.pyc,, +pip/_vendor/chardet/__pycache__/euctwfreq.cpython-312.pyc,, +pip/_vendor/chardet/__pycache__/euctwprober.cpython-312.pyc,, +pip/_vendor/chardet/__pycache__/gb2312freq.cpython-312.pyc,, +pip/_vendor/chardet/__pycache__/gb2312prober.cpython-312.pyc,, +pip/_vendor/chardet/__pycache__/hebrewprober.cpython-312.pyc,, +pip/_vendor/chardet/__pycache__/jisfreq.cpython-312.pyc,, +pip/_vendor/chardet/__pycache__/johabfreq.cpython-312.pyc,, +pip/_vendor/chardet/__pycache__/johabprober.cpython-312.pyc,, +pip/_vendor/chardet/__pycache__/jpcntx.cpython-312.pyc,, +pip/_vendor/chardet/__pycache__/langbulgarianmodel.cpython-312.pyc,, +pip/_vendor/chardet/__pycache__/langgreekmodel.cpython-312.pyc,, +pip/_vendor/chardet/__pycache__/langhebrewmodel.cpython-312.pyc,, +pip/_vendor/chardet/__pycache__/langhungarianmodel.cpython-312.pyc,, +pip/_vendor/chardet/__pycache__/langrussianmodel.cpython-312.pyc,, +pip/_vendor/chardet/__pycache__/langthaimodel.cpython-312.pyc,, +pip/_vendor/chardet/__pycache__/langturkishmodel.cpython-312.pyc,, +pip/_vendor/chardet/__pycache__/latin1prober.cpython-312.pyc,, +pip/_vendor/chardet/__pycache__/macromanprober.cpython-312.pyc,, +pip/_vendor/chardet/__pycache__/mbcharsetprober.cpython-312.pyc,, +pip/_vendor/chardet/__pycache__/mbcsgroupprober.cpython-312.pyc,, +pip/_vendor/chardet/__pycache__/mbcssm.cpython-312.pyc,, +pip/_vendor/chardet/__pycache__/resultdict.cpython-312.pyc,, +pip/_vendor/chardet/__pycache__/sbcharsetprober.cpython-312.pyc,, +pip/_vendor/chardet/__pycache__/sbcsgroupprober.cpython-312.pyc,, +pip/_vendor/chardet/__pycache__/sjisprober.cpython-312.pyc,, +pip/_vendor/chardet/__pycache__/universaldetector.cpython-312.pyc,, +pip/_vendor/chardet/__pycache__/utf1632prober.cpython-312.pyc,, +pip/_vendor/chardet/__pycache__/utf8prober.cpython-312.pyc,, +pip/_vendor/chardet/__pycache__/version.cpython-312.pyc,, +pip/_vendor/chardet/big5freq.py,sha256=ltcfP-3PjlNHCoo5e4a7C4z-2DhBTXRfY6jbMbB7P30,31274 +pip/_vendor/chardet/big5prober.py,sha256=lPMfwCX6v2AaPgvFh_cSWZcgLDbWiFCHLZ_p9RQ9uxE,1763 +pip/_vendor/chardet/chardistribution.py,sha256=13B8XUG4oXDuLdXvfbIWwLFeR-ZU21AqTS1zcdON8bU,10032 +pip/_vendor/chardet/charsetgroupprober.py,sha256=UKK3SaIZB2PCdKSIS0gnvMtLR9JJX62M-fZJu3OlWyg,3915 +pip/_vendor/chardet/charsetprober.py,sha256=L3t8_wIOov8em-vZWOcbkdsrwe43N6_gqNh5pH7WPd4,5420 +pip/_vendor/chardet/cli/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +pip/_vendor/chardet/cli/__pycache__/__init__.cpython-312.pyc,, +pip/_vendor/chardet/cli/__pycache__/chardetect.cpython-312.pyc,, +pip/_vendor/chardet/cli/chardetect.py,sha256=zibMVg5RpKb-ME9_7EYG4ZM2Sf07NHcQzZ12U-rYJho,3242 +pip/_vendor/chardet/codingstatemachine.py,sha256=K7k69sw3jY5DmTXoSJQVsUtFIQKYPQVOSJJhBuGv_yE,3732 +pip/_vendor/chardet/codingstatemachinedict.py,sha256=0GY3Hi2qIZvDrOOJ3AtqppM1RsYxr_66ER4EHjuMiMc,542 +pip/_vendor/chardet/cp949prober.py,sha256=0jKRV7fECuWI16rNnks0ZECKA1iZYCIEaP8A1ZvjUSI,1860 +pip/_vendor/chardet/enums.py,sha256=TzECiZoCKNMqgwU76cPCeKWFBqaWvAdLMev5_bCkhY8,1683 +pip/_vendor/chardet/escprober.py,sha256=Kho48X65xE0scFylIdeJjM2bcbvRvv0h0WUbMWrJD3A,4006 +pip/_vendor/chardet/escsm.py,sha256=AqyXpA2FQFD7k-buBty_7itGEYkhmVa8X09NLRul3QM,12176 +pip/_vendor/chardet/eucjpprober.py,sha256=5KYaM9fsxkRYzw1b5k0fL-j_-ezIw-ij9r97a9MHxLY,3934 +pip/_vendor/chardet/euckrfreq.py,sha256=3mHuRvXfsq_QcQysDQFb8qSudvTiol71C6Ic2w57tKM,13566 +pip/_vendor/chardet/euckrprober.py,sha256=hiFT6wM174GIwRvqDsIcuOc-dDsq2uPKMKbyV8-1Xnc,1753 +pip/_vendor/chardet/euctwfreq.py,sha256=2alILE1Lh5eqiFJZjzRkMQXolNJRHY5oBQd-vmZYFFM,36913 +pip/_vendor/chardet/euctwprober.py,sha256=NxbpNdBtU0VFI0bKfGfDkpP7S2_8_6FlO87dVH0ogws,1753 +pip/_vendor/chardet/gb2312freq.py,sha256=49OrdXzD-HXqwavkqjo8Z7gvs58hONNzDhAyMENNkvY,20735 +pip/_vendor/chardet/gb2312prober.py,sha256=KPEBueaSLSvBpFeINMu0D6TgHcR90e5PaQawifzF4o0,1759 +pip/_vendor/chardet/hebrewprober.py,sha256=96T_Lj_OmW-fK7JrSHojYjyG3fsGgbzkoTNleZ3kfYE,14537 +pip/_vendor/chardet/jisfreq.py,sha256=mm8tfrwqhpOd3wzZKS4NJqkYBQVcDfTM2JiQ5aW932E,25796 +pip/_vendor/chardet/johabfreq.py,sha256=dBpOYG34GRX6SL8k_LbS9rxZPMjLjoMlgZ03Pz5Hmqc,42498 +pip/_vendor/chardet/johabprober.py,sha256=O1Qw9nVzRnun7vZp4UZM7wvJSv9W941mEU9uDMnY3DU,1752 +pip/_vendor/chardet/jpcntx.py,sha256=uhHrYWkLxE_rF5OkHKInm0HUsrjgKHHVQvtt3UcvotA,27055 +pip/_vendor/chardet/langbulgarianmodel.py,sha256=vmbvYFP8SZkSxoBvLkFqKiH1sjma5ihk3PTpdy71Rr4,104562 +pip/_vendor/chardet/langgreekmodel.py,sha256=JfB7bupjjJH2w3X_mYnQr9cJA_7EuITC2cRW13fUjeI,98484 +pip/_vendor/chardet/langhebrewmodel.py,sha256=3HXHaLQPNAGcXnJjkIJfozNZLTvTJmf4W5Awi6zRRKc,98196 +pip/_vendor/chardet/langhungarianmodel.py,sha256=WxbeQIxkv8YtApiNqxQcvj-tMycsoI4Xy-fwkDHpP_Y,101363 +pip/_vendor/chardet/langrussianmodel.py,sha256=s395bTZ87ESTrZCOdgXbEjZ9P1iGPwCl_8xSsac_DLY,128035 +pip/_vendor/chardet/langthaimodel.py,sha256=7bJlQitRpTnVGABmbSznHnJwOHDy3InkTvtFUx13WQI,102774 +pip/_vendor/chardet/langturkishmodel.py,sha256=XY0eGdTIy4eQ9Xg1LVPZacb-UBhHBR-cq0IpPVHowKc,95372 +pip/_vendor/chardet/latin1prober.py,sha256=p15EEmFbmQUwbKLC7lOJVGHEZwcG45ubEZYTGu01J5g,5380 +pip/_vendor/chardet/macromanprober.py,sha256=9anfzmY6TBfUPDyBDOdY07kqmTHpZ1tK0jL-p1JWcOY,6077 +pip/_vendor/chardet/mbcharsetprober.py,sha256=Wr04WNI4F3X_VxEverNG-H25g7u-MDDKlNt-JGj-_uU,3715 +pip/_vendor/chardet/mbcsgroupprober.py,sha256=iRpaNBjV0DNwYPu_z6TiHgRpwYahiM7ztI_4kZ4Uz9A,2131 +pip/_vendor/chardet/mbcssm.py,sha256=hUtPvDYgWDaA2dWdgLsshbwRfm3Q5YRlRogdmeRUNQw,30391 +pip/_vendor/chardet/metadata/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +pip/_vendor/chardet/metadata/__pycache__/__init__.cpython-312.pyc,, +pip/_vendor/chardet/metadata/__pycache__/languages.cpython-312.pyc,, +pip/_vendor/chardet/metadata/languages.py,sha256=FhvBIdZFxRQ-dTwkb_0madRKgVBCaUMQz9I5xqjE5iQ,13560 +pip/_vendor/chardet/resultdict.py,sha256=ez4FRvN5KaSosJeJ2WzUyKdDdg35HDy_SSLPXKCdt5M,402 +pip/_vendor/chardet/sbcharsetprober.py,sha256=-nd3F90i7GpXLjehLVHqVBE0KlWzGvQUPETLBNn4o6U,6400 +pip/_vendor/chardet/sbcsgroupprober.py,sha256=gcgI0fOfgw_3YTClpbra_MNxwyEyJ3eUXraoLHYb59E,4137 +pip/_vendor/chardet/sjisprober.py,sha256=aqQufMzRw46ZpFlzmYaYeT2-nzmKb-hmcrApppJ862k,4007 +pip/_vendor/chardet/universaldetector.py,sha256=xYBrg4x0dd9WnT8qclfADVD9ondrUNkqPmvte1pa520,14848 +pip/_vendor/chardet/utf1632prober.py,sha256=pw1epGdMj1hDGiCu1AHqqzOEfjX8MVdiW7O1BlT8-eQ,8505 +pip/_vendor/chardet/utf8prober.py,sha256=8m08Ub5490H4jQ6LYXvFysGtgKoKsHUd2zH_i8_TnVw,2812 +pip/_vendor/chardet/version.py,sha256=lGtJcxGM44Qz4Cbk4rbbmrKxnNr1-97U25TameLehZw,244 +pip/_vendor/colorama/__init__.py,sha256=wePQA4U20tKgYARySLEC047ucNX-g8pRLpYBuiHlLb8,266 +pip/_vendor/colorama/__pycache__/__init__.cpython-312.pyc,, +pip/_vendor/colorama/__pycache__/ansi.cpython-312.pyc,, +pip/_vendor/colorama/__pycache__/ansitowin32.cpython-312.pyc,, +pip/_vendor/colorama/__pycache__/initialise.cpython-312.pyc,, +pip/_vendor/colorama/__pycache__/win32.cpython-312.pyc,, +pip/_vendor/colorama/__pycache__/winterm.cpython-312.pyc,, +pip/_vendor/colorama/ansi.py,sha256=Top4EeEuaQdBWdteKMEcGOTeKeF19Q-Wo_6_Cj5kOzQ,2522 +pip/_vendor/colorama/ansitowin32.py,sha256=vPNYa3OZbxjbuFyaVo0Tmhmy1FZ1lKMWCnT7odXpItk,11128 +pip/_vendor/colorama/initialise.py,sha256=-hIny86ClXo39ixh5iSCfUIa2f_h_bgKRDW7gqs-KLU,3325 +pip/_vendor/colorama/tests/__init__.py,sha256=MkgPAEzGQd-Rq0w0PZXSX2LadRWhUECcisJY8lSrm4Q,75 +pip/_vendor/colorama/tests/__pycache__/__init__.cpython-312.pyc,, +pip/_vendor/colorama/tests/__pycache__/ansi_test.cpython-312.pyc,, +pip/_vendor/colorama/tests/__pycache__/ansitowin32_test.cpython-312.pyc,, +pip/_vendor/colorama/tests/__pycache__/initialise_test.cpython-312.pyc,, +pip/_vendor/colorama/tests/__pycache__/isatty_test.cpython-312.pyc,, +pip/_vendor/colorama/tests/__pycache__/utils.cpython-312.pyc,, +pip/_vendor/colorama/tests/__pycache__/winterm_test.cpython-312.pyc,, +pip/_vendor/colorama/tests/ansi_test.py,sha256=FeViDrUINIZcr505PAxvU4AjXz1asEiALs9GXMhwRaE,2839 +pip/_vendor/colorama/tests/ansitowin32_test.py,sha256=RN7AIhMJ5EqDsYaCjVo-o4u8JzDD4ukJbmevWKS70rY,10678 +pip/_vendor/colorama/tests/initialise_test.py,sha256=BbPy-XfyHwJ6zKozuQOvNvQZzsx9vdb_0bYXn7hsBTc,6741 +pip/_vendor/colorama/tests/isatty_test.py,sha256=Pg26LRpv0yQDB5Ac-sxgVXG7hsA1NYvapFgApZfYzZg,1866 +pip/_vendor/colorama/tests/utils.py,sha256=1IIRylG39z5-dzq09R_ngufxyPZxgldNbrxKxUGwGKE,1079 +pip/_vendor/colorama/tests/winterm_test.py,sha256=qoWFPEjym5gm2RuMwpf3pOis3a5r_PJZFCzK254JL8A,3709 +pip/_vendor/colorama/win32.py,sha256=YQOKwMTwtGBbsY4dL5HYTvwTeP9wIQra5MvPNddpxZs,6181 +pip/_vendor/colorama/winterm.py,sha256=XCQFDHjPi6AHYNdZwy0tA02H-Jh48Jp-HvCjeLeLp3U,7134 +pip/_vendor/distlib/__init__.py,sha256=hJKF7FHoqbmGckncDuEINWo_OYkDNiHODtYXSMcvjcc,625 +pip/_vendor/distlib/__pycache__/__init__.cpython-312.pyc,, +pip/_vendor/distlib/__pycache__/compat.cpython-312.pyc,, +pip/_vendor/distlib/__pycache__/database.cpython-312.pyc,, +pip/_vendor/distlib/__pycache__/index.cpython-312.pyc,, +pip/_vendor/distlib/__pycache__/locators.cpython-312.pyc,, +pip/_vendor/distlib/__pycache__/manifest.cpython-312.pyc,, +pip/_vendor/distlib/__pycache__/markers.cpython-312.pyc,, +pip/_vendor/distlib/__pycache__/metadata.cpython-312.pyc,, +pip/_vendor/distlib/__pycache__/resources.cpython-312.pyc,, +pip/_vendor/distlib/__pycache__/scripts.cpython-312.pyc,, +pip/_vendor/distlib/__pycache__/util.cpython-312.pyc,, +pip/_vendor/distlib/__pycache__/version.cpython-312.pyc,, +pip/_vendor/distlib/__pycache__/wheel.cpython-312.pyc,, +pip/_vendor/distlib/compat.py,sha256=Un-uIBvy02w-D267OG4VEhuddqWgKj9nNkxVltAb75w,41487 +pip/_vendor/distlib/database.py,sha256=0V9Qvs0Vrxa2F_-hLWitIyVyRifJ0pCxyOI-kEOBwsA,51965 +pip/_vendor/distlib/index.py,sha256=lTbw268rRhj8dw1sib3VZ_0EhSGgoJO3FKJzSFMOaeA,20797 +pip/_vendor/distlib/locators.py,sha256=o1r_M86_bRLafSpetmyfX8KRtFu-_Q58abvQrnOSnbA,51767 +pip/_vendor/distlib/manifest.py,sha256=3qfmAmVwxRqU1o23AlfXrQGZzh6g_GGzTAP_Hb9C5zQ,14168 +pip/_vendor/distlib/markers.py,sha256=n3DfOh1yvZ_8EW7atMyoYeZFXjYla0Nz0itQlojCd0A,5268 +pip/_vendor/distlib/metadata.py,sha256=pB9WZ9mBfmQxc9OVIldLS5CjOoQRvKAvUwwQyKwKQtQ,39693 +pip/_vendor/distlib/resources.py,sha256=LwbPksc0A1JMbi6XnuPdMBUn83X7BPuFNWqPGEKI698,10820 +pip/_vendor/distlib/scripts.py,sha256=nQFXN6G7nOWNDUyxirUep-3WOlJhB7McvCs9zOnkGTI,18315 +pip/_vendor/distlib/util.py,sha256=XSznxEi_i3T20UJuaVc0qXHz5ksGUCW1khYlBprN_QE,67530 +pip/_vendor/distlib/version.py,sha256=9pXkduchve_aN7JG6iL9VTYV_kqNSGoc2Dwl8JuySnQ,23747 +pip/_vendor/distlib/wheel.py,sha256=FVQCve8u-L0QYk5-YTZc7s4WmNQdvjRWTK08KXzZVX4,43958 +pip/_vendor/distro/__init__.py,sha256=2fHjF-SfgPvjyNZ1iHh_wjqWdR_Yo5ODHwZC0jLBPhc,981 +pip/_vendor/distro/__main__.py,sha256=bu9d3TifoKciZFcqRBuygV3GSuThnVD_m2IK4cz96Vs,64 +pip/_vendor/distro/__pycache__/__init__.cpython-312.pyc,, +pip/_vendor/distro/__pycache__/__main__.cpython-312.pyc,, +pip/_vendor/distro/__pycache__/distro.cpython-312.pyc,, +pip/_vendor/distro/distro.py,sha256=UZO1LjIhtFCMdlbiz39gj3raV-Amf3SBwzGzfApiMHw,49330 +pip/_vendor/idna/__init__.py,sha256=KJQN1eQBr8iIK5SKrJ47lXvxG0BJ7Lm38W4zT0v_8lk,849 +pip/_vendor/idna/__pycache__/__init__.cpython-312.pyc,, +pip/_vendor/idna/__pycache__/codec.cpython-312.pyc,, +pip/_vendor/idna/__pycache__/compat.cpython-312.pyc,, +pip/_vendor/idna/__pycache__/core.cpython-312.pyc,, +pip/_vendor/idna/__pycache__/idnadata.cpython-312.pyc,, +pip/_vendor/idna/__pycache__/intranges.cpython-312.pyc,, +pip/_vendor/idna/__pycache__/package_data.cpython-312.pyc,, +pip/_vendor/idna/__pycache__/uts46data.cpython-312.pyc,, +pip/_vendor/idna/codec.py,sha256=6ly5odKfqrytKT9_7UrlGklHnf1DSK2r9C6cSM4sa28,3374 +pip/_vendor/idna/compat.py,sha256=0_sOEUMT4CVw9doD3vyRhX80X19PwqFoUBs7gWsFME4,321 +pip/_vendor/idna/core.py,sha256=1JxchwKzkxBSn7R_oCE12oBu3eVux0VzdxolmIad24M,12950 +pip/_vendor/idna/idnadata.py,sha256=xUjqKqiJV8Ho_XzBpAtv5JFoVPSupK-SUXvtjygUHqw,44375 +pip/_vendor/idna/intranges.py,sha256=YBr4fRYuWH7kTKS2tXlFjM24ZF1Pdvcir-aywniInqg,1881 +pip/_vendor/idna/package_data.py,sha256=C_jHJzmX8PI4xq0jpzmcTMxpb5lDsq4o5VyxQzlVrZE,21 +pip/_vendor/idna/uts46data.py,sha256=zvjZU24s58_uAS850Mcd0NnD0X7_gCMAMjzWNIeUJdc,206539 +pip/_vendor/msgpack/__init__.py,sha256=hyGhlnmcJkxryJBKC3X5FnEph375kQoL_mG8LZUuXgY,1132 +pip/_vendor/msgpack/__pycache__/__init__.cpython-312.pyc,, +pip/_vendor/msgpack/__pycache__/exceptions.cpython-312.pyc,, +pip/_vendor/msgpack/__pycache__/ext.cpython-312.pyc,, +pip/_vendor/msgpack/__pycache__/fallback.cpython-312.pyc,, +pip/_vendor/msgpack/exceptions.py,sha256=dCTWei8dpkrMsQDcjQk74ATl9HsIBH0ybt8zOPNqMYc,1081 +pip/_vendor/msgpack/ext.py,sha256=C5MK8JhVYGYFWPvxsORsqZAnvOXefYQ57m1Ym0luW5M,6079 +pip/_vendor/msgpack/fallback.py,sha256=tvNBHyxxFbuVlC8GZShETClJxjLiDMOja4XwwyvNm2g,34544 +pip/_vendor/packaging/__about__.py,sha256=ugASIO2w1oUyH8_COqQ2X_s0rDhjbhQC3yJocD03h2c,661 +pip/_vendor/packaging/__init__.py,sha256=b9Kk5MF7KxhhLgcDmiUWukN-LatWFxPdNug0joPhHSk,497 +pip/_vendor/packaging/__pycache__/__about__.cpython-312.pyc,, +pip/_vendor/packaging/__pycache__/__init__.cpython-312.pyc,, +pip/_vendor/packaging/__pycache__/_manylinux.cpython-312.pyc,, +pip/_vendor/packaging/__pycache__/_musllinux.cpython-312.pyc,, +pip/_vendor/packaging/__pycache__/_structures.cpython-312.pyc,, +pip/_vendor/packaging/__pycache__/markers.cpython-312.pyc,, +pip/_vendor/packaging/__pycache__/requirements.cpython-312.pyc,, +pip/_vendor/packaging/__pycache__/specifiers.cpython-312.pyc,, +pip/_vendor/packaging/__pycache__/tags.cpython-312.pyc,, +pip/_vendor/packaging/__pycache__/utils.cpython-312.pyc,, +pip/_vendor/packaging/__pycache__/version.cpython-312.pyc,, +pip/_vendor/packaging/_manylinux.py,sha256=XcbiXB-qcjv3bcohp6N98TMpOP4_j3m-iOA8ptK2GWY,11488 +pip/_vendor/packaging/_musllinux.py,sha256=_KGgY_qc7vhMGpoqss25n2hiLCNKRtvz9mCrS7gkqyc,4378 +pip/_vendor/packaging/_structures.py,sha256=q3eVNmbWJGG_S0Dit_S3Ao8qQqz_5PYTXFAKBZe5yr4,1431 +pip/_vendor/packaging/markers.py,sha256=AJBOcY8Oq0kYc570KuuPTkvuqjAlhufaE2c9sCUbm64,8487 +pip/_vendor/packaging/requirements.py,sha256=NtDlPBtojpn1IUC85iMjPNsUmufjpSlwnNA-Xb4m5NA,4676 +pip/_vendor/packaging/specifiers.py,sha256=LRQ0kFsHrl5qfcFNEEJrIFYsnIHQUJXY9fIsakTrrqE,30110 +pip/_vendor/packaging/tags.py,sha256=lmsnGNiJ8C4D_Pf9PbM0qgbZvD9kmB9lpZBQUZa3R_Y,15699 +pip/_vendor/packaging/utils.py,sha256=dJjeat3BS-TYn1RrUFVwufUMasbtzLfYRoy_HXENeFQ,4200 +pip/_vendor/packaging/version.py,sha256=_fLRNrFrxYcHVfyo8vk9j8s6JM8N_xsSxVFr6RJyco8,14665 +pip/_vendor/pkg_resources/__init__.py,sha256=hTAeJCNYb7dJseIDVsYK3mPQep_gphj4tQh-bspX8bg,109364 +pip/_vendor/pkg_resources/__pycache__/__init__.cpython-312.pyc,, +pip/_vendor/platformdirs/__init__.py,sha256=SkhEYVyC_HUHC6KX7n4M_6coyRMtEB38QMyOYIAX6Yk,20155 +pip/_vendor/platformdirs/__main__.py,sha256=fVvSiTzr2-RM6IsjWjj4fkaOtDOgDhUWv6sA99do4CQ,1476 +pip/_vendor/platformdirs/__pycache__/__init__.cpython-312.pyc,, +pip/_vendor/platformdirs/__pycache__/__main__.cpython-312.pyc,, +pip/_vendor/platformdirs/__pycache__/android.cpython-312.pyc,, +pip/_vendor/platformdirs/__pycache__/api.cpython-312.pyc,, +pip/_vendor/platformdirs/__pycache__/macos.cpython-312.pyc,, +pip/_vendor/platformdirs/__pycache__/unix.cpython-312.pyc,, +pip/_vendor/platformdirs/__pycache__/version.cpython-312.pyc,, +pip/_vendor/platformdirs/__pycache__/windows.cpython-312.pyc,, +pip/_vendor/platformdirs/android.py,sha256=y_EEMKwYl2-bzYBDovksSn8m76on0Lda8eyJksVQE9U,7211 +pip/_vendor/platformdirs/api.py,sha256=jWtX06jAJytYrkJDOqEls97mCkyHRSZkoqUlbMK5Qew,7132 +pip/_vendor/platformdirs/macos.py,sha256=LueVOoVgGWDBwQb8OFwXkVKfVn33CM1Lkwf1-A86tRQ,3678 +pip/_vendor/platformdirs/unix.py,sha256=22JhR8ZY0aLxSVCFnKrc6f1iz6Gv42K24Daj7aTjfSg,8809 +pip/_vendor/platformdirs/version.py,sha256=mavZTQIJIXfdewEaSTn7EWrNfPZWeRofb-74xqW5f2M,160 +pip/_vendor/platformdirs/windows.py,sha256=4TtbPGoWG2PRgI11uquDa7eRk8TcxvnUNuuMGZItnXc,9573 +pip/_vendor/pygments/__init__.py,sha256=6AuDljQtvf89DTNUyWM7k3oUlP_lq70NU-INKKteOBY,2983 +pip/_vendor/pygments/__main__.py,sha256=es8EKMvXj5yToIfQ-pf3Dv5TnIeeM6sME0LW-n4ecHo,353 +pip/_vendor/pygments/__pycache__/__init__.cpython-312.pyc,, +pip/_vendor/pygments/__pycache__/__main__.cpython-312.pyc,, +pip/_vendor/pygments/__pycache__/cmdline.cpython-312.pyc,, +pip/_vendor/pygments/__pycache__/console.cpython-312.pyc,, +pip/_vendor/pygments/__pycache__/filter.cpython-312.pyc,, +pip/_vendor/pygments/__pycache__/formatter.cpython-312.pyc,, +pip/_vendor/pygments/__pycache__/lexer.cpython-312.pyc,, +pip/_vendor/pygments/__pycache__/modeline.cpython-312.pyc,, +pip/_vendor/pygments/__pycache__/plugin.cpython-312.pyc,, +pip/_vendor/pygments/__pycache__/regexopt.cpython-312.pyc,, +pip/_vendor/pygments/__pycache__/scanner.cpython-312.pyc,, +pip/_vendor/pygments/__pycache__/sphinxext.cpython-312.pyc,, +pip/_vendor/pygments/__pycache__/style.cpython-312.pyc,, +pip/_vendor/pygments/__pycache__/token.cpython-312.pyc,, +pip/_vendor/pygments/__pycache__/unistring.cpython-312.pyc,, +pip/_vendor/pygments/__pycache__/util.cpython-312.pyc,, +pip/_vendor/pygments/cmdline.py,sha256=byxYJp9gnjVeyhRlZ3UTMgo_LhkXh1afvN8wJBtAcc8,23685 +pip/_vendor/pygments/console.py,sha256=2wZ5W-U6TudJD1_NLUwjclMpbomFM91lNv11_60sfGY,1697 +pip/_vendor/pygments/filter.py,sha256=j5aLM9a9wSx6eH1oy473oSkJ02hGWNptBlVo4s1g_30,1938 +pip/_vendor/pygments/filters/__init__.py,sha256=h_koYkUFo-FFUxjs564JHUAz7O3yJpVwI6fKN3MYzG0,40386 +pip/_vendor/pygments/filters/__pycache__/__init__.cpython-312.pyc,, +pip/_vendor/pygments/formatter.py,sha256=J9OL9hXLJKZk7moUgKwpjW9HNf4WlJFg_o_-Z_S_tTY,4178 +pip/_vendor/pygments/formatters/__init__.py,sha256=_xgAcdFKr0QNYwh_i98AU9hvfP3X2wAkhElFcRRF3Uo,5424 +pip/_vendor/pygments/formatters/__pycache__/__init__.cpython-312.pyc,, +pip/_vendor/pygments/formatters/__pycache__/_mapping.cpython-312.pyc,, +pip/_vendor/pygments/formatters/__pycache__/bbcode.cpython-312.pyc,, +pip/_vendor/pygments/formatters/__pycache__/groff.cpython-312.pyc,, +pip/_vendor/pygments/formatters/__pycache__/html.cpython-312.pyc,, +pip/_vendor/pygments/formatters/__pycache__/img.cpython-312.pyc,, +pip/_vendor/pygments/formatters/__pycache__/irc.cpython-312.pyc,, +pip/_vendor/pygments/formatters/__pycache__/latex.cpython-312.pyc,, +pip/_vendor/pygments/formatters/__pycache__/other.cpython-312.pyc,, +pip/_vendor/pygments/formatters/__pycache__/pangomarkup.cpython-312.pyc,, +pip/_vendor/pygments/formatters/__pycache__/rtf.cpython-312.pyc,, +pip/_vendor/pygments/formatters/__pycache__/svg.cpython-312.pyc,, +pip/_vendor/pygments/formatters/__pycache__/terminal.cpython-312.pyc,, +pip/_vendor/pygments/formatters/__pycache__/terminal256.cpython-312.pyc,, +pip/_vendor/pygments/formatters/_mapping.py,sha256=1Cw37FuQlNacnxRKmtlPX4nyLoX9_ttko5ZwscNUZZ4,4176 +pip/_vendor/pygments/formatters/bbcode.py,sha256=r1b7wzWTJouADDLh-Z11iRi4iQxD0JKJ1qHl6mOYxsA,3314 +pip/_vendor/pygments/formatters/groff.py,sha256=xy8Zf3tXOo6MWrXh7yPGWx3lVEkg_DhY4CxmsDb0IVo,5094 +pip/_vendor/pygments/formatters/html.py,sha256=PIzAyilNqaTzSSP2slDG2VDLE3qNioWy2rgtSSoviuI,35610 +pip/_vendor/pygments/formatters/img.py,sha256=XKXmg2_XONrR4mtq2jfEU8XCsoln3VSGTw-UYiEokys,21938 +pip/_vendor/pygments/formatters/irc.py,sha256=Ep-m8jd3voFO6Fv57cUGFmz6JVA67IEgyiBOwv0N4a0,4981 +pip/_vendor/pygments/formatters/latex.py,sha256=FGzJ-YqSTE8z_voWPdzvLY5Tq8jE_ygjGjM6dXZJ8-k,19351 +pip/_vendor/pygments/formatters/other.py,sha256=gPxkk5BdAzWTCgbEHg1lpLi-1F6ZPh5A_aotgLXHnzg,5073 +pip/_vendor/pygments/formatters/pangomarkup.py,sha256=6LKnQc8yh49f802bF0sPvbzck4QivMYqqoXAPaYP8uU,2212 +pip/_vendor/pygments/formatters/rtf.py,sha256=aA0v_psW6KZI3N18TKDifxeL6mcF8EDXcPXDWI4vhVQ,5014 +pip/_vendor/pygments/formatters/svg.py,sha256=dQONWypbzfvzGCDtdp3M_NJawScJvM2DiHbx1k-ww7g,7335 +pip/_vendor/pygments/formatters/terminal.py,sha256=FG-rpjRpFmNpiGB4NzIucvxq6sQIXB3HOTo2meTKtrU,4674 +pip/_vendor/pygments/formatters/terminal256.py,sha256=13SJ3D5pFdqZ9zROE6HbWnBDwHvOGE8GlsmqGhprRp4,11753 +pip/_vendor/pygments/lexer.py,sha256=2BpqLlT2ExvOOi7vnjK5nB4Fp-m52ldiPaXMox5uwug,34618 +pip/_vendor/pygments/lexers/__init__.py,sha256=j5KEi5O_VQ5GS59H49l-10gzUOkWKxlwGeVMlGO2MMk,12130 +pip/_vendor/pygments/lexers/__pycache__/__init__.cpython-312.pyc,, +pip/_vendor/pygments/lexers/__pycache__/_mapping.cpython-312.pyc,, +pip/_vendor/pygments/lexers/__pycache__/python.cpython-312.pyc,, +pip/_vendor/pygments/lexers/_mapping.py,sha256=Hts4r_ZQ8icftGM7gkBPeED5lyVSv4affFgXYE6Ap04,72281 +pip/_vendor/pygments/lexers/python.py,sha256=c7jnmKFU9DLxTJW0UbwXt6Z9FJqbBlVsWA1Qr9xSA_w,53424 +pip/_vendor/pygments/modeline.py,sha256=eF2vO4LpOGoPvIKKkbPfnyut8hT4UiebZPpb-BYGQdI,986 +pip/_vendor/pygments/plugin.py,sha256=j1Fh310RbV2DQ9nvkmkqvlj38gdyuYKllLnGxbc8sJM,2591 +pip/_vendor/pygments/regexopt.py,sha256=jg1ALogcYGU96TQS9isBl6dCrvw5y5--BP_K-uFk_8s,3072 +pip/_vendor/pygments/scanner.py,sha256=b_nu5_f3HCgSdp5S_aNRBQ1MSCm4ZjDwec2OmTRickw,3092 +pip/_vendor/pygments/sphinxext.py,sha256=wBFYm180qea9JKt__UzhRlNRNhczPDFDaqGD21sbuso,6882 +pip/_vendor/pygments/style.py,sha256=C4qyoJrUTkq-OV3iO-8Vz3UtWYpJwSTdh5_vlGCGdNQ,6257 +pip/_vendor/pygments/styles/__init__.py,sha256=he7HjQx7sC0d2kfTVLjUs0J15mtToJM6M1brwIm9--Q,3700 +pip/_vendor/pygments/styles/__pycache__/__init__.cpython-312.pyc,, +pip/_vendor/pygments/token.py,sha256=seNsmcch9OEHXYirh8Ool7w8xDhfNTbLj5rHAC-gc_o,6184 +pip/_vendor/pygments/unistring.py,sha256=FaUfG14NBJEKLQoY9qj6JYeXrpYcLmKulghdxOGFaOc,63223 +pip/_vendor/pygments/util.py,sha256=AEVY0qonyyEMgv4Do2dINrrqUAwUk2XYSqHM650uzek,10230 +pip/_vendor/pyparsing/__init__.py,sha256=9m1JbE2JTLdBG0Mb6B0lEaZj181Wx5cuPXZpsbHEYgE,9116 +pip/_vendor/pyparsing/__pycache__/__init__.cpython-312.pyc,, +pip/_vendor/pyparsing/__pycache__/actions.cpython-312.pyc,, +pip/_vendor/pyparsing/__pycache__/common.cpython-312.pyc,, +pip/_vendor/pyparsing/__pycache__/core.cpython-312.pyc,, +pip/_vendor/pyparsing/__pycache__/exceptions.cpython-312.pyc,, +pip/_vendor/pyparsing/__pycache__/helpers.cpython-312.pyc,, +pip/_vendor/pyparsing/__pycache__/results.cpython-312.pyc,, +pip/_vendor/pyparsing/__pycache__/testing.cpython-312.pyc,, +pip/_vendor/pyparsing/__pycache__/unicode.cpython-312.pyc,, +pip/_vendor/pyparsing/__pycache__/util.cpython-312.pyc,, +pip/_vendor/pyparsing/actions.py,sha256=05uaIPOznJPQ7VgRdmGCmG4sDnUPtwgv5qOYIqbL2UY,6567 +pip/_vendor/pyparsing/common.py,sha256=p-3c83E5-DjlkF35G0O9-kjQRpoejP-2_z0hxZ-eol4,13387 +pip/_vendor/pyparsing/core.py,sha256=yvuRlLpXSF8mgk-QhiW3OVLqD9T0rsj9tbibhRH4Yaw,224445 +pip/_vendor/pyparsing/diagram/__init__.py,sha256=nxmDOoYF9NXuLaGYy01tKFjkNReWJlrGFuJNWEiTo84,24215 +pip/_vendor/pyparsing/diagram/__pycache__/__init__.cpython-312.pyc,, +pip/_vendor/pyparsing/exceptions.py,sha256=6Jc6W1eDZBzyFu1J0YrcdNFVBC-RINujZmveSnB8Rxw,9523 +pip/_vendor/pyparsing/helpers.py,sha256=BZJHCA8SS0pYio30KGQTc9w2qMOaK4YpZ7hcvHbnTgk,38646 +pip/_vendor/pyparsing/results.py,sha256=9dyqQ-w3MjfmxWbFt8KEPU6IfXeyRdoWp2Og802rUQY,26692 +pip/_vendor/pyparsing/testing.py,sha256=eJncg0p83zm1FTPvM9auNT6oavIvXaibmRFDf1qmwkY,13488 +pip/_vendor/pyparsing/unicode.py,sha256=fAPdsJiARFbkPAih6NkYry0dpj4jPqelGVMlE4wWFW8,10646 +pip/_vendor/pyparsing/util.py,sha256=vTMzTdwSDyV8d_dSgquUTdWgBFoA_W30nfxEJDsshRQ,8670 +pip/_vendor/pyproject_hooks/__init__.py,sha256=kCehmy0UaBa9oVMD7ZIZrnswfnP3LXZ5lvnNJAL5JBM,491 +pip/_vendor/pyproject_hooks/__pycache__/__init__.cpython-312.pyc,, +pip/_vendor/pyproject_hooks/__pycache__/_compat.cpython-312.pyc,, +pip/_vendor/pyproject_hooks/__pycache__/_impl.cpython-312.pyc,, +pip/_vendor/pyproject_hooks/_compat.py,sha256=by6evrYnqkisiM-MQcvOKs5bgDMzlOSgZqRHNqf04zE,138 +pip/_vendor/pyproject_hooks/_impl.py,sha256=61GJxzQip0IInhuO69ZI5GbNQ82XEDUB_1Gg5_KtUoc,11920 +pip/_vendor/pyproject_hooks/_in_process/__init__.py,sha256=9gQATptbFkelkIy0OfWFEACzqxXJMQDWCH9rBOAZVwQ,546 +pip/_vendor/pyproject_hooks/_in_process/__pycache__/__init__.cpython-312.pyc,, +pip/_vendor/pyproject_hooks/_in_process/__pycache__/_in_process.cpython-312.pyc,, +pip/_vendor/pyproject_hooks/_in_process/_in_process.py,sha256=m2b34c917IW5o-Q_6TYIHlsK9lSUlNiyrITTUH_zwew,10927 +pip/_vendor/requests/__init__.py,sha256=owujob4dk45Siy4EYtbCKR6wcFph7E04a_v_OuAacBA,5169 +pip/_vendor/requests/__pycache__/__init__.cpython-312.pyc,, +pip/_vendor/requests/__pycache__/__version__.cpython-312.pyc,, +pip/_vendor/requests/__pycache__/_internal_utils.cpython-312.pyc,, +pip/_vendor/requests/__pycache__/adapters.cpython-312.pyc,, +pip/_vendor/requests/__pycache__/api.cpython-312.pyc,, +pip/_vendor/requests/__pycache__/auth.cpython-312.pyc,, +pip/_vendor/requests/__pycache__/certs.cpython-312.pyc,, +pip/_vendor/requests/__pycache__/compat.cpython-312.pyc,, +pip/_vendor/requests/__pycache__/cookies.cpython-312.pyc,, +pip/_vendor/requests/__pycache__/exceptions.cpython-312.pyc,, +pip/_vendor/requests/__pycache__/help.cpython-312.pyc,, +pip/_vendor/requests/__pycache__/hooks.cpython-312.pyc,, +pip/_vendor/requests/__pycache__/models.cpython-312.pyc,, +pip/_vendor/requests/__pycache__/packages.cpython-312.pyc,, +pip/_vendor/requests/__pycache__/sessions.cpython-312.pyc,, +pip/_vendor/requests/__pycache__/status_codes.cpython-312.pyc,, +pip/_vendor/requests/__pycache__/structures.cpython-312.pyc,, +pip/_vendor/requests/__pycache__/utils.cpython-312.pyc,, +pip/_vendor/requests/__version__.py,sha256=ssI3Ezt7PaxgkOW45GhtwPUclo_SO_ygtIm4A74IOfw,435 +pip/_vendor/requests/_internal_utils.py,sha256=nMQymr4hs32TqVo5AbCrmcJEhvPUh7xXlluyqwslLiQ,1495 +pip/_vendor/requests/adapters.py,sha256=idj6cZcId3L5xNNeJ7ieOLtw3awJk5A64xUfetHwq3M,19697 +pip/_vendor/requests/api.py,sha256=q61xcXq4tmiImrvcSVLTbFyCiD2F-L_-hWKGbz4y8vg,6449 +pip/_vendor/requests/auth.py,sha256=h-HLlVx9j8rKV5hfSAycP2ApOSglTz77R0tz7qCbbEE,10187 +pip/_vendor/requests/certs.py,sha256=PVPooB0jP5hkZEULSCwC074532UFbR2Ptgu0I5zwmCs,575 +pip/_vendor/requests/compat.py,sha256=IhK9quyX0RRuWTNcg6d2JGSAOUbM6mym2p_2XjLTwf4,1286 +pip/_vendor/requests/cookies.py,sha256=kD3kNEcCj-mxbtf5fJsSaT86eGoEYpD3X0CSgpzl7BM,18560 +pip/_vendor/requests/exceptions.py,sha256=FA-_kVwBZ2jhXauRctN_ewHVK25b-fj0Azyz1THQ0Kk,3823 +pip/_vendor/requests/help.py,sha256=FnAAklv8MGm_qb2UilDQgS6l0cUttiCFKUjx0zn2XNA,3879 +pip/_vendor/requests/hooks.py,sha256=CiuysiHA39V5UfcCBXFIx83IrDpuwfN9RcTUgv28ftQ,733 +pip/_vendor/requests/models.py,sha256=dDZ-iThotky-Noq9yy97cUEJhr3wnY6mv-xR_ePg_lk,35288 +pip/_vendor/requests/packages.py,sha256=njJmVifY4aSctuW3PP5EFRCxjEwMRDO6J_feG2dKWsI,695 +pip/_vendor/requests/sessions.py,sha256=-LvTzrPtetSTrR3buxu4XhdgMrJFLB1q5D7P--L2Xhw,30373 +pip/_vendor/requests/status_codes.py,sha256=FvHmT5uH-_uimtRz5hH9VCbt7VV-Nei2J9upbej6j8g,4235 +pip/_vendor/requests/structures.py,sha256=-IbmhVz06S-5aPSZuUthZ6-6D9XOjRuTXHOabY041XM,2912 +pip/_vendor/requests/utils.py,sha256=kOPn0qYD6xRTzaxbqTdYiSInBZHl6379AJsyIgzYGLY,33460 +pip/_vendor/resolvelib/__init__.py,sha256=h509TdEcpb5-44JonaU3ex2TM15GVBLjM9CNCPwnTTs,537 +pip/_vendor/resolvelib/__pycache__/__init__.cpython-312.pyc,, +pip/_vendor/resolvelib/__pycache__/providers.cpython-312.pyc,, +pip/_vendor/resolvelib/__pycache__/reporters.cpython-312.pyc,, +pip/_vendor/resolvelib/__pycache__/resolvers.cpython-312.pyc,, +pip/_vendor/resolvelib/__pycache__/structs.cpython-312.pyc,, +pip/_vendor/resolvelib/compat/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +pip/_vendor/resolvelib/compat/__pycache__/__init__.cpython-312.pyc,, +pip/_vendor/resolvelib/compat/__pycache__/collections_abc.cpython-312.pyc,, +pip/_vendor/resolvelib/compat/collections_abc.py,sha256=uy8xUZ-NDEw916tugUXm8HgwCGiMO0f-RcdnpkfXfOs,156 +pip/_vendor/resolvelib/providers.py,sha256=fuuvVrCetu5gsxPB43ERyjfO8aReS3rFQHpDgiItbs4,5871 +pip/_vendor/resolvelib/reporters.py,sha256=TSbRmWzTc26w0ggsV1bxVpeWDB8QNIre6twYl7GIZBE,1601 +pip/_vendor/resolvelib/resolvers.py,sha256=G8rsLZSq64g5VmIq-lB7UcIJ1gjAxIQJmTF4REZleQ0,20511 +pip/_vendor/resolvelib/structs.py,sha256=0_1_XO8z_CLhegP3Vpf9VJ3zJcfLm0NOHRM-i0Ykz3o,4963 +pip/_vendor/rich/__init__.py,sha256=dRxjIL-SbFVY0q3IjSMrfgBTHrm1LZDgLOygVBwiYZc,6090 +pip/_vendor/rich/__main__.py,sha256=TT8sb9PTnsnKhhrGuHkLN0jdN0dtKhtPkEr9CidDbPM,8478 +pip/_vendor/rich/__pycache__/__init__.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/__main__.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/_cell_widths.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/_emoji_codes.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/_emoji_replace.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/_export_format.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/_extension.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/_fileno.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/_inspect.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/_log_render.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/_loop.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/_null_file.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/_palettes.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/_pick.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/_ratio.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/_spinners.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/_stack.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/_timer.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/_win32_console.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/_windows.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/_windows_renderer.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/_wrap.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/abc.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/align.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/ansi.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/bar.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/box.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/cells.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/color.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/color_triplet.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/columns.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/console.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/constrain.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/containers.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/control.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/default_styles.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/diagnose.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/emoji.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/errors.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/file_proxy.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/filesize.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/highlighter.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/json.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/jupyter.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/layout.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/live.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/live_render.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/logging.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/markup.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/measure.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/padding.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/pager.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/palette.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/panel.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/pretty.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/progress.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/progress_bar.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/prompt.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/protocol.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/region.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/repr.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/rule.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/scope.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/screen.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/segment.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/spinner.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/status.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/style.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/styled.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/syntax.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/table.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/terminal_theme.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/text.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/theme.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/themes.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/traceback.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/tree.cpython-312.pyc,, +pip/_vendor/rich/_cell_widths.py,sha256=2n4EiJi3X9sqIq0O16kUZ_zy6UYMd3xFfChlKfnW1Hc,10096 +pip/_vendor/rich/_emoji_codes.py,sha256=hu1VL9nbVdppJrVoijVshRlcRRe_v3dju3Mmd2sKZdY,140235 +pip/_vendor/rich/_emoji_replace.py,sha256=n-kcetsEUx2ZUmhQrfeMNc-teeGhpuSQ5F8VPBsyvDo,1064 +pip/_vendor/rich/_export_format.py,sha256=qxgV3nKnXQu1hfbnRVswPYy-AwIg1X0LSC47cK5s8jk,2100 +pip/_vendor/rich/_extension.py,sha256=Xt47QacCKwYruzjDi-gOBq724JReDj9Cm9xUi5fr-34,265 +pip/_vendor/rich/_fileno.py,sha256=HWZxP5C2ajMbHryvAQZseflVfQoGzsKOHzKGsLD8ynQ,799 +pip/_vendor/rich/_inspect.py,sha256=oZJGw31e64dwXSCmrDnvZbwVb1ZKhWfU8wI3VWohjJk,9695 +pip/_vendor/rich/_log_render.py,sha256=1ByI0PA1ZpxZY3CGJOK54hjlq4X-Bz_boIjIqCd8Kns,3225 +pip/_vendor/rich/_loop.py,sha256=hV_6CLdoPm0va22Wpw4zKqM0RYsz3TZxXj0PoS-9eDQ,1236 +pip/_vendor/rich/_null_file.py,sha256=tGSXk_v-IZmbj1GAzHit8A3kYIQMiCpVsCFfsC-_KJ4,1387 +pip/_vendor/rich/_palettes.py,sha256=cdev1JQKZ0JvlguV9ipHgznTdnvlIzUFDBb0It2PzjI,7063 +pip/_vendor/rich/_pick.py,sha256=evDt8QN4lF5CiwrUIXlOJCntitBCOsI3ZLPEIAVRLJU,423 +pip/_vendor/rich/_ratio.py,sha256=2lLSliL025Y-YMfdfGbutkQDevhcyDqc-DtUYW9mU70,5472 +pip/_vendor/rich/_spinners.py,sha256=U2r1_g_1zSjsjiUdAESc2iAMc3i4ri_S8PYP6kQ5z1I,19919 +pip/_vendor/rich/_stack.py,sha256=-C8OK7rxn3sIUdVwxZBBpeHhIzX0eI-VM3MemYfaXm0,351 +pip/_vendor/rich/_timer.py,sha256=zelxbT6oPFZnNrwWPpc1ktUeAT-Vc4fuFcRZLQGLtMI,417 +pip/_vendor/rich/_win32_console.py,sha256=P0vxI2fcndym1UU1S37XAzQzQnkyY7YqAKmxm24_gug,22820 +pip/_vendor/rich/_windows.py,sha256=dvNl9TmfPzNVxiKk5WDFihErZ5796g2UC9-KGGyfXmk,1926 +pip/_vendor/rich/_windows_renderer.py,sha256=t74ZL3xuDCP3nmTp9pH1L5LiI2cakJuQRQleHCJerlk,2783 +pip/_vendor/rich/_wrap.py,sha256=xfV_9t0Sg6rzimmrDru8fCVmUlalYAcHLDfrJZnbbwQ,1840 +pip/_vendor/rich/abc.py,sha256=ON-E-ZqSSheZ88VrKX2M3PXpFbGEUUZPMa_Af0l-4f0,890 +pip/_vendor/rich/align.py,sha256=Ji-Yokfkhnfe_xMmr4ISjZB07TJXggBCOYoYa-HDAr8,10368 +pip/_vendor/rich/ansi.py,sha256=iD6532QYqnBm6hADulKjrV8l8kFJ-9fEVooHJHH3hMg,6906 +pip/_vendor/rich/bar.py,sha256=a7UD303BccRCrEhGjfMElpv5RFYIinaAhAuqYqhUvmw,3264 +pip/_vendor/rich/box.py,sha256=FJ6nI3jD7h2XNFU138bJUt2HYmWOlRbltoCEuIAZhew,9842 +pip/_vendor/rich/cells.py,sha256=627ztJs9zOL-38HJ7kXBerR-gT8KBfYC8UzEwMJDYYo,4509 +pip/_vendor/rich/color.py,sha256=9Gh958U3f75WVdLTeC0U9nkGTn2n0wnojKpJ6jQEkIE,18224 +pip/_vendor/rich/color_triplet.py,sha256=3lhQkdJbvWPoLDO-AnYImAWmJvV5dlgYNCVZ97ORaN4,1054 +pip/_vendor/rich/columns.py,sha256=HUX0KcMm9dsKNi11fTbiM_h2iDtl8ySCaVcxlalEzq8,7131 +pip/_vendor/rich/console.py,sha256=pDvkbLkvtZIMIwQx_jkZ-seyNl4zGBLviXoWXte9fwg,99218 +pip/_vendor/rich/constrain.py,sha256=1VIPuC8AgtKWrcncQrjBdYqA3JVWysu6jZo1rrh7c7Q,1288 +pip/_vendor/rich/containers.py,sha256=aKgm5UDHn5Nmui6IJaKdsZhbHClh_X7D-_Wg8Ehrr7s,5497 +pip/_vendor/rich/control.py,sha256=DSkHTUQLorfSERAKE_oTAEUFefZnZp4bQb4q8rHbKws,6630 +pip/_vendor/rich/default_styles.py,sha256=-Fe318kMVI_IwciK5POpThcO0-9DYJ67TZAN6DlmlmM,8082 +pip/_vendor/rich/diagnose.py,sha256=an6uouwhKPAlvQhYpNNpGq9EJysfMIOvvCbO3oSoR24,972 +pip/_vendor/rich/emoji.py,sha256=omTF9asaAnsM4yLY94eR_9dgRRSm1lHUszX20D1yYCQ,2501 +pip/_vendor/rich/errors.py,sha256=5pP3Kc5d4QJ_c0KFsxrfyhjiPVe7J1zOqSFbFAzcV-Y,642 +pip/_vendor/rich/file_proxy.py,sha256=Tl9THMDZ-Pk5Wm8sI1gGg_U5DhusmxD-FZ0fUbcU0W0,1683 +pip/_vendor/rich/filesize.py,sha256=9fTLAPCAwHmBXdRv7KZU194jSgNrRb6Wx7RIoBgqeKY,2508 +pip/_vendor/rich/highlighter.py,sha256=p3C1g4QYzezFKdR7NF9EhPbzQDvdPUhGRgSyGGEmPko,9584 +pip/_vendor/rich/json.py,sha256=EYp9ucj-nDjYDkHCV6Mk1ve8nUOpuFLaW76X50Mis2M,5032 +pip/_vendor/rich/jupyter.py,sha256=QyoKoE_8IdCbrtiSHp9TsTSNyTHY0FO5whE7jOTd9UE,3252 +pip/_vendor/rich/layout.py,sha256=RFYL6HdCFsHf9WRpcvi3w-fpj-8O5dMZ8W96VdKNdbI,14007 +pip/_vendor/rich/live.py,sha256=vZzYvu7fqwlv3Gthl2xiw1Dc_O80VlGcCV0DOHwCyDM,14273 +pip/_vendor/rich/live_render.py,sha256=zElm3PrfSIvjOce28zETHMIUf9pFYSUA5o0AflgUP64,3667 +pip/_vendor/rich/logging.py,sha256=uB-cB-3Q4bmXDLLpbOWkmFviw-Fde39zyMV6tKJ2WHQ,11903 +pip/_vendor/rich/markup.py,sha256=xzF4uAafiEeEYDJYt_vUnJOGoTU8RrH-PH7WcWYXjCg,8198 +pip/_vendor/rich/measure.py,sha256=HmrIJX8sWRTHbgh8MxEay_83VkqNW_70s8aKP5ZcYI8,5305 +pip/_vendor/rich/padding.py,sha256=kTFGsdGe0os7tXLnHKpwTI90CXEvrceeZGCshmJy5zw,4970 +pip/_vendor/rich/pager.py,sha256=SO_ETBFKbg3n_AgOzXm41Sv36YxXAyI3_R-KOY2_uSc,828 +pip/_vendor/rich/palette.py,sha256=lInvR1ODDT2f3UZMfL1grq7dY_pDdKHw4bdUgOGaM4Y,3396 +pip/_vendor/rich/panel.py,sha256=wGMe40J8KCGgQoM0LyjRErmGIkv2bsYA71RCXThD0xE,10574 +pip/_vendor/rich/pretty.py,sha256=eLEYN9xVaMNuA6EJVYm4li7HdOHxCqmVKvnOqJpyFt0,35852 +pip/_vendor/rich/progress.py,sha256=n4KF9vky8_5iYeXcyZPEvzyLplWlDvFLkM5JI0Bs08A,59706 +pip/_vendor/rich/progress_bar.py,sha256=cEoBfkc3lLwqba4XKsUpy4vSQKDh2QQ5J2J94-ACFoo,8165 +pip/_vendor/rich/prompt.py,sha256=x0mW-pIPodJM4ry6grgmmLrl8VZp99kqcmdnBe70YYA,11303 +pip/_vendor/rich/protocol.py,sha256=5hHHDDNHckdk8iWH5zEbi-zuIVSF5hbU2jIo47R7lTE,1391 +pip/_vendor/rich/region.py,sha256=rNT9xZrVZTYIXZC0NYn41CJQwYNbR-KecPOxTgQvB8Y,166 +pip/_vendor/rich/repr.py,sha256=9Z8otOmM-tyxnyTodvXlectP60lwahjGiDTrbrxPSTg,4431 +pip/_vendor/rich/rule.py,sha256=0fNaS_aERa3UMRc3T5WMpN_sumtDxfaor2y3of1ftBk,4602 +pip/_vendor/rich/scope.py,sha256=TMUU8qo17thyqQCPqjDLYpg_UU1k5qVd-WwiJvnJVas,2843 +pip/_vendor/rich/screen.py,sha256=YoeReESUhx74grqb0mSSb9lghhysWmFHYhsbMVQjXO8,1591 +pip/_vendor/rich/segment.py,sha256=XLnJEFvcV3bjaVzMNUJiem3n8lvvI9TJ5PTu-IG2uTg,24247 +pip/_vendor/rich/spinner.py,sha256=15koCmF0DQeD8-k28Lpt6X_zJQUlzEhgo_6A6uy47lc,4339 +pip/_vendor/rich/status.py,sha256=gJsIXIZeSo3urOyxRUjs6VrhX5CZrA0NxIQ-dxhCnwo,4425 +pip/_vendor/rich/style.py,sha256=3hiocH_4N8vwRm3-8yFWzM7tSwjjEven69XqWasSQwM,27073 +pip/_vendor/rich/styled.py,sha256=eZNnzGrI4ki_54pgY3Oj0T-x3lxdXTYh4_ryDB24wBU,1258 +pip/_vendor/rich/syntax.py,sha256=jgDiVCK6cpR0NmBOpZmIu-Ud4eaW7fHvjJZkDbjpcSA,35173 +pip/_vendor/rich/table.py,sha256=-WzesL-VJKsaiDU3uyczpJMHy6VCaSewBYJwx8RudI8,39684 +pip/_vendor/rich/terminal_theme.py,sha256=1j5-ufJfnvlAo5Qsi_ACZiXDmwMXzqgmFByObT9-yJY,3370 +pip/_vendor/rich/text.py,sha256=_8JBlSau0c2z8ENOZMi1hJ7M1ZGY408E4-hXjHyyg1A,45525 +pip/_vendor/rich/theme.py,sha256=belFJogzA0W0HysQabKaHOc3RWH2ko3fQAJhoN-AFdo,3777 +pip/_vendor/rich/themes.py,sha256=0xgTLozfabebYtcJtDdC5QkX5IVUEaviqDUJJh4YVFk,102 +pip/_vendor/rich/traceback.py,sha256=yCLVrCtyoFNENd9mkm2xeG3KmqkTwH9xpFOO7p2Bq0A,29604 +pip/_vendor/rich/tree.py,sha256=BMbUYNjS9uodNPfvtY_odmU09GA5QzcMbQ5cJZhllQI,9169 +pip/_vendor/six.py,sha256=TOOfQi7nFGfMrIvtdr6wX4wyHH8M7aknmuLfo2cBBrM,34549 +pip/_vendor/tenacity/__init__.py,sha256=3kvAL6KClq8GFo2KFhmOzskRKSDQI-ubrlfZ8AQEEI0,20493 +pip/_vendor/tenacity/__pycache__/__init__.cpython-312.pyc,, +pip/_vendor/tenacity/__pycache__/_asyncio.cpython-312.pyc,, +pip/_vendor/tenacity/__pycache__/_utils.cpython-312.pyc,, +pip/_vendor/tenacity/__pycache__/after.cpython-312.pyc,, +pip/_vendor/tenacity/__pycache__/before.cpython-312.pyc,, +pip/_vendor/tenacity/__pycache__/before_sleep.cpython-312.pyc,, +pip/_vendor/tenacity/__pycache__/nap.cpython-312.pyc,, +pip/_vendor/tenacity/__pycache__/retry.cpython-312.pyc,, +pip/_vendor/tenacity/__pycache__/stop.cpython-312.pyc,, +pip/_vendor/tenacity/__pycache__/tornadoweb.cpython-312.pyc,, +pip/_vendor/tenacity/__pycache__/wait.cpython-312.pyc,, +pip/_vendor/tenacity/_asyncio.py,sha256=Qi6wgQsGa9MQibYRy3OXqcDQswIZZ00dLOoSUGN-6o8,3551 +pip/_vendor/tenacity/_utils.py,sha256=ubs6a7sxj3JDNRKWCyCU2j5r1CB7rgyONgZzYZq6D_4,2179 +pip/_vendor/tenacity/after.py,sha256=S5NCISScPeIrKwIeXRwdJl3kV9Q4nqZfnNPDx6Hf__g,1682 +pip/_vendor/tenacity/before.py,sha256=dIZE9gmBTffisfwNkK0F1xFwGPV41u5GK70UY4Pi5Kc,1562 +pip/_vendor/tenacity/before_sleep.py,sha256=YmpgN9Y7HGlH97U24vvq_YWb5deaK4_DbiD8ZuFmy-E,2372 +pip/_vendor/tenacity/nap.py,sha256=fRWvnz1aIzbIq9Ap3gAkAZgDH6oo5zxMrU6ZOVByq0I,1383 +pip/_vendor/tenacity/retry.py,sha256=jrzD_mxA5mSTUEdiYB7SHpxltjhPSYZSnSRATb-ggRc,8746 +pip/_vendor/tenacity/stop.py,sha256=YMJs7ZgZfND65PRLqlGB_agpfGXlemx_5Hm4PKnBqpQ,3086 +pip/_vendor/tenacity/tornadoweb.py,sha256=po29_F1Mt8qZpsFjX7EVwAT0ydC_NbVia9gVi7R_wXA,2142 +pip/_vendor/tenacity/wait.py,sha256=3FcBJoCDgym12_dN6xfK8C1gROY0Hn4NSI2u8xv50uE,8024 +pip/_vendor/tomli/__init__.py,sha256=JhUwV66DB1g4Hvt1UQCVMdfCu-IgAV8FXmvDU9onxd4,396 +pip/_vendor/tomli/__pycache__/__init__.cpython-312.pyc,, +pip/_vendor/tomli/__pycache__/_parser.cpython-312.pyc,, +pip/_vendor/tomli/__pycache__/_re.cpython-312.pyc,, +pip/_vendor/tomli/__pycache__/_types.cpython-312.pyc,, +pip/_vendor/tomli/_parser.py,sha256=g9-ENaALS-B8dokYpCuzUFalWlog7T-SIYMjLZSWrtM,22633 +pip/_vendor/tomli/_re.py,sha256=dbjg5ChZT23Ka9z9DHOXfdtSpPwUfdgMXnj8NOoly-w,2943 +pip/_vendor/tomli/_types.py,sha256=-GTG2VUqkpxwMqzmVO4F7ybKddIbAnuAHXfmWQcTi3Q,254 +pip/_vendor/truststore/__init__.py,sha256=qzTLSH8PvAkY1fr6QQ2vV-KwE_M83wdXugtpJaP_AbM,403 +pip/_vendor/truststore/__pycache__/__init__.cpython-312.pyc,, +pip/_vendor/truststore/__pycache__/_api.cpython-312.pyc,, +pip/_vendor/truststore/__pycache__/_macos.cpython-312.pyc,, +pip/_vendor/truststore/__pycache__/_openssl.cpython-312.pyc,, +pip/_vendor/truststore/__pycache__/_ssl_constants.cpython-312.pyc,, +pip/_vendor/truststore/__pycache__/_windows.cpython-312.pyc,, +pip/_vendor/truststore/_api.py,sha256=xjuEu_rlH4hcdJTROImEyOEqdw-F8t5vO2H2BToY0Ro,9893 +pip/_vendor/truststore/_macos.py,sha256=BjvAKoAjXhdIPuxpY124HJIFswDb0pq8DjynzJOVwqc,17694 +pip/_vendor/truststore/_openssl.py,sha256=LLUZ7ZGaio-i5dpKKjKCSeSufmn6T8pi9lDcFnvSyq0,2324 +pip/_vendor/truststore/_ssl_constants.py,sha256=NUD4fVKdSD02ri7-db0tnO0VqLP9aHuzmStcW7tAl08,1130 +pip/_vendor/truststore/_windows.py,sha256=1x_EhROeJ9QK1sMAjfnZC7awYI8UnBJYL-TjACUYI4A,17468 +pip/_vendor/typing_extensions.py,sha256=EWpcpyQnVmc48E9fSyPGs-vXgHcAk9tQABQIxmMsCGk,111130 +pip/_vendor/urllib3/__init__.py,sha256=iXLcYiJySn0GNbWOOZDDApgBL1JgP44EZ8i1760S8Mc,3333 +pip/_vendor/urllib3/__pycache__/__init__.cpython-312.pyc,, +pip/_vendor/urllib3/__pycache__/_collections.cpython-312.pyc,, +pip/_vendor/urllib3/__pycache__/_version.cpython-312.pyc,, +pip/_vendor/urllib3/__pycache__/connection.cpython-312.pyc,, +pip/_vendor/urllib3/__pycache__/connectionpool.cpython-312.pyc,, +pip/_vendor/urllib3/__pycache__/exceptions.cpython-312.pyc,, +pip/_vendor/urllib3/__pycache__/fields.cpython-312.pyc,, +pip/_vendor/urllib3/__pycache__/filepost.cpython-312.pyc,, +pip/_vendor/urllib3/__pycache__/poolmanager.cpython-312.pyc,, +pip/_vendor/urllib3/__pycache__/request.cpython-312.pyc,, +pip/_vendor/urllib3/__pycache__/response.cpython-312.pyc,, +pip/_vendor/urllib3/_collections.py,sha256=Rp1mVyBgc_UlAcp6M3at1skJBXR5J43NawRTvW2g_XY,10811 +pip/_vendor/urllib3/_version.py,sha256=azoM7M7BUADl2kBhMVR6PPf2GhBDI90me1fcnzTwdcw,64 +pip/_vendor/urllib3/connection.py,sha256=92k9td_y4PEiTIjNufCUa1NzMB3J3w0LEdyokYgXnW8,20300 +pip/_vendor/urllib3/connectionpool.py,sha256=ItVDasDnPRPP9R8bNxY7tPBlC724nJ9nlxVgXG_SLbI,39990 +pip/_vendor/urllib3/contrib/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +pip/_vendor/urllib3/contrib/__pycache__/__init__.cpython-312.pyc,, +pip/_vendor/urllib3/contrib/__pycache__/_appengine_environ.cpython-312.pyc,, +pip/_vendor/urllib3/contrib/__pycache__/appengine.cpython-312.pyc,, +pip/_vendor/urllib3/contrib/__pycache__/ntlmpool.cpython-312.pyc,, +pip/_vendor/urllib3/contrib/__pycache__/pyopenssl.cpython-312.pyc,, +pip/_vendor/urllib3/contrib/__pycache__/securetransport.cpython-312.pyc,, +pip/_vendor/urllib3/contrib/__pycache__/socks.cpython-312.pyc,, +pip/_vendor/urllib3/contrib/_appengine_environ.py,sha256=bDbyOEhW2CKLJcQqAKAyrEHN-aklsyHFKq6vF8ZFsmk,957 +pip/_vendor/urllib3/contrib/_securetransport/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +pip/_vendor/urllib3/contrib/_securetransport/__pycache__/__init__.cpython-312.pyc,, +pip/_vendor/urllib3/contrib/_securetransport/__pycache__/bindings.cpython-312.pyc,, +pip/_vendor/urllib3/contrib/_securetransport/__pycache__/low_level.cpython-312.pyc,, +pip/_vendor/urllib3/contrib/_securetransport/bindings.py,sha256=4Xk64qIkPBt09A5q-RIFUuDhNc9mXilVapm7WnYnzRw,17632 +pip/_vendor/urllib3/contrib/_securetransport/low_level.py,sha256=B2JBB2_NRP02xK6DCa1Pa9IuxrPwxzDzZbixQkb7U9M,13922 +pip/_vendor/urllib3/contrib/appengine.py,sha256=VR68eAVE137lxTgjBDwCna5UiBZTOKa01Aj_-5BaCz4,11036 +pip/_vendor/urllib3/contrib/ntlmpool.py,sha256=NlfkW7WMdW8ziqudopjHoW299og1BTWi0IeIibquFwk,4528 +pip/_vendor/urllib3/contrib/pyopenssl.py,sha256=hDJh4MhyY_p-oKlFcYcQaVQRDv6GMmBGuW9yjxyeejM,17081 +pip/_vendor/urllib3/contrib/securetransport.py,sha256=yhZdmVjY6PI6EeFbp7qYOp6-vp1Rkv2NMuOGaEj7pmc,34448 +pip/_vendor/urllib3/contrib/socks.py,sha256=aRi9eWXo9ZEb95XUxef4Z21CFlnnjbEiAo9HOseoMt4,7097 +pip/_vendor/urllib3/exceptions.py,sha256=0Mnno3KHTNfXRfY7638NufOPkUb6mXOm-Lqj-4x2w8A,8217 +pip/_vendor/urllib3/fields.py,sha256=kvLDCg_JmH1lLjUUEY_FLS8UhY7hBvDPuVETbY8mdrM,8579 +pip/_vendor/urllib3/filepost.py,sha256=5b_qqgRHVlL7uLtdAYBzBh-GHmU5AfJVt_2N0XS3PeY,2440 +pip/_vendor/urllib3/packages/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +pip/_vendor/urllib3/packages/__pycache__/__init__.cpython-312.pyc,, +pip/_vendor/urllib3/packages/__pycache__/six.cpython-312.pyc,, +pip/_vendor/urllib3/packages/backports/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +pip/_vendor/urllib3/packages/backports/__pycache__/__init__.cpython-312.pyc,, +pip/_vendor/urllib3/packages/backports/__pycache__/makefile.cpython-312.pyc,, +pip/_vendor/urllib3/packages/backports/__pycache__/weakref_finalize.cpython-312.pyc,, +pip/_vendor/urllib3/packages/backports/makefile.py,sha256=nbzt3i0agPVP07jqqgjhaYjMmuAi_W5E0EywZivVO8E,1417 +pip/_vendor/urllib3/packages/backports/weakref_finalize.py,sha256=tRCal5OAhNSRyb0DhHp-38AtIlCsRP8BxF3NX-6rqIA,5343 +pip/_vendor/urllib3/packages/six.py,sha256=b9LM0wBXv7E7SrbCjAm4wwN-hrH-iNxv18LgWNMMKPo,34665 +pip/_vendor/urllib3/poolmanager.py,sha256=dnQHy25qCcoJZGM8zrcmuW48tHF3UO83bxvkySwtf24,20705 +pip/_vendor/urllib3/request.py,sha256=YTWFNr7QIwh7E1W9dde9LM77v2VWTJ5V78XuTTw7D1A,6691 +pip/_vendor/urllib3/response.py,sha256=fmDJAFkG71uFTn-sVSTh2Iw0WmcXQYqkbRjihvwBjU8,30641 +pip/_vendor/urllib3/util/__init__.py,sha256=JEmSmmqqLyaw8P51gUImZh8Gwg9i1zSe-DoqAitn2nc,1155 +pip/_vendor/urllib3/util/__pycache__/__init__.cpython-312.pyc,, +pip/_vendor/urllib3/util/__pycache__/connection.cpython-312.pyc,, +pip/_vendor/urllib3/util/__pycache__/proxy.cpython-312.pyc,, +pip/_vendor/urllib3/util/__pycache__/queue.cpython-312.pyc,, +pip/_vendor/urllib3/util/__pycache__/request.cpython-312.pyc,, +pip/_vendor/urllib3/util/__pycache__/response.cpython-312.pyc,, +pip/_vendor/urllib3/util/__pycache__/retry.cpython-312.pyc,, +pip/_vendor/urllib3/util/__pycache__/ssl_.cpython-312.pyc,, +pip/_vendor/urllib3/util/__pycache__/ssl_match_hostname.cpython-312.pyc,, +pip/_vendor/urllib3/util/__pycache__/ssltransport.cpython-312.pyc,, +pip/_vendor/urllib3/util/__pycache__/timeout.cpython-312.pyc,, +pip/_vendor/urllib3/util/__pycache__/url.cpython-312.pyc,, +pip/_vendor/urllib3/util/__pycache__/wait.cpython-312.pyc,, +pip/_vendor/urllib3/util/connection.py,sha256=5Lx2B1PW29KxBn2T0xkN1CBgRBa3gGVJBKoQoRogEVk,4901 +pip/_vendor/urllib3/util/proxy.py,sha256=zUvPPCJrp6dOF0N4GAVbOcl6o-4uXKSrGiTkkr5vUS4,1605 +pip/_vendor/urllib3/util/queue.py,sha256=nRgX8_eX-_VkvxoX096QWoz8Ps0QHUAExILCY_7PncM,498 +pip/_vendor/urllib3/util/request.py,sha256=C0OUt2tcU6LRiQJ7YYNP9GvPrSvl7ziIBekQ-5nlBZk,3997 +pip/_vendor/urllib3/util/response.py,sha256=GJpg3Egi9qaJXRwBh5wv-MNuRWan5BIu40oReoxWP28,3510 +pip/_vendor/urllib3/util/retry.py,sha256=6ENvOZ8PBDzh8kgixpql9lIrb2dxH-k7ZmBanJF2Ng4,22050 +pip/_vendor/urllib3/util/ssl_.py,sha256=X4-AqW91aYPhPx6-xbf66yHFQKbqqfC_5Zt4WkLX1Hc,17177 +pip/_vendor/urllib3/util/ssl_match_hostname.py,sha256=Ir4cZVEjmAk8gUAIHWSi7wtOO83UCYABY2xFD1Ql_WA,5758 +pip/_vendor/urllib3/util/ssltransport.py,sha256=NA-u5rMTrDFDFC8QzRKUEKMG0561hOD4qBTr3Z4pv6E,6895 +pip/_vendor/urllib3/util/timeout.py,sha256=cwq4dMk87mJHSBktK1miYJ-85G-3T3RmT20v7SFCpno,10168 +pip/_vendor/urllib3/util/url.py,sha256=lCAE7M5myA8EDdW0sJuyyZhVB9K_j38ljWhHAnFaWoE,14296 +pip/_vendor/urllib3/util/wait.py,sha256=fOX0_faozG2P7iVojQoE1mbydweNyTcm-hXEfFrTtLI,5403 +pip/_vendor/vendor.txt,sha256=4NKk7fQhVsZw0U-0zmm9Q2LgGyaPXacFbnJAaS0Q6EY,493 +pip/_vendor/webencodings/__init__.py,sha256=qOBJIuPy_4ByYH6W_bNgJF-qYQ2DoU-dKsDu5yRWCXg,10579 +pip/_vendor/webencodings/__pycache__/__init__.cpython-312.pyc,, +pip/_vendor/webencodings/__pycache__/labels.cpython-312.pyc,, +pip/_vendor/webencodings/__pycache__/mklabels.cpython-312.pyc,, +pip/_vendor/webencodings/__pycache__/tests.cpython-312.pyc,, +pip/_vendor/webencodings/__pycache__/x_user_defined.cpython-312.pyc,, +pip/_vendor/webencodings/labels.py,sha256=4AO_KxTddqGtrL9ns7kAPjb0CcN6xsCIxbK37HY9r3E,8979 +pip/_vendor/webencodings/mklabels.py,sha256=GYIeywnpaLnP0GSic8LFWgd0UVvO_l1Nc6YoF-87R_4,1305 +pip/_vendor/webencodings/tests.py,sha256=OtGLyjhNY1fvkW1GvLJ_FV9ZoqC9Anyjr7q3kxTbzNs,6563 +pip/_vendor/webencodings/x_user_defined.py,sha256=yOqWSdmpytGfUgh_Z6JYgDNhoc-BAHyyeeT15Fr42tM,4307 +pip/py.typed,sha256=EBVvvPRTn_eIpz5e5QztSCdrMX7Qwd7VP93RSoIlZ2I,286 diff --git a/.venv/lib/python3.12/site-packages/pip-24.0.dist-info/REQUESTED b/.venv/lib/python3.12/site-packages/pip-24.0.dist-info/REQUESTED new file mode 100644 index 00000000..e69de29b diff --git a/.venv/lib/python3.12/site-packages/pip-24.0.dist-info/WHEEL b/.venv/lib/python3.12/site-packages/pip-24.0.dist-info/WHEEL new file mode 100644 index 00000000..98c0d20b --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip-24.0.dist-info/WHEEL @@ -0,0 +1,5 @@ +Wheel-Version: 1.0 +Generator: bdist_wheel (0.42.0) +Root-Is-Purelib: true +Tag: py3-none-any + diff --git a/.venv/lib/python3.12/site-packages/pip-24.0.dist-info/entry_points.txt b/.venv/lib/python3.12/site-packages/pip-24.0.dist-info/entry_points.txt new file mode 100644 index 00000000..26fa3616 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip-24.0.dist-info/entry_points.txt @@ -0,0 +1,4 @@ +[console_scripts] +pip = pip._internal.cli.main:main +pip3 = pip._internal.cli.main:main +pip3.12 = pip._internal.cli.main:main diff --git a/.venv/lib/python3.12/site-packages/pip-24.0.dist-info/top_level.txt b/.venv/lib/python3.12/site-packages/pip-24.0.dist-info/top_level.txt new file mode 100644 index 00000000..a1b589e3 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip-24.0.dist-info/top_level.txt @@ -0,0 +1 @@ +pip diff --git a/.venv/lib/python3.12/site-packages/pip/__init__.py b/.venv/lib/python3.12/site-packages/pip/__init__.py new file mode 100644 index 00000000..be0e3edb --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/__init__.py @@ -0,0 +1,13 @@ +from typing import List, Optional + +__version__ = "24.0" + + +def main(args: Optional[List[str]] = None) -> int: + """This is an internal API only meant for use by pip's own console scripts. + + For additional details, see https://github.com/pypa/pip/issues/7498. + """ + from pip._internal.utils.entrypoints import _wrapper + + return _wrapper(args) diff --git a/.venv/lib/python3.12/site-packages/pip/__main__.py b/.venv/lib/python3.12/site-packages/pip/__main__.py new file mode 100644 index 00000000..59913261 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/__main__.py @@ -0,0 +1,24 @@ +import os +import sys + +# Remove '' and current working directory from the first entry +# of sys.path, if present to avoid using current directory +# in pip commands check, freeze, install, list and show, +# when invoked as python -m pip +if sys.path[0] in ("", os.getcwd()): + sys.path.pop(0) + +# If we are running from a wheel, add the wheel to sys.path +# This allows the usage python pip-*.whl/pip install pip-*.whl +if __package__ == "": + # __file__ is pip-*.whl/pip/__main__.py + # first dirname call strips of '/__main__.py', second strips off '/pip' + # Resulting path is the name of the wheel itself + # Add that to sys.path so we can import pip + path = os.path.dirname(os.path.dirname(__file__)) + sys.path.insert(0, path) + +if __name__ == "__main__": + from pip._internal.cli.main import main as _main + + sys.exit(_main()) diff --git a/.venv/lib/python3.12/site-packages/pip/__pip-runner__.py b/.venv/lib/python3.12/site-packages/pip/__pip-runner__.py new file mode 100644 index 00000000..49a148a0 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/__pip-runner__.py @@ -0,0 +1,50 @@ +"""Execute exactly this copy of pip, within a different environment. + +This file is named as it is, to ensure that this module can't be imported via +an import statement. +""" + +# /!\ This version compatibility check section must be Python 2 compatible. /!\ + +import sys + +# Copied from setup.py +PYTHON_REQUIRES = (3, 7) + + +def version_str(version): # type: ignore + return ".".join(str(v) for v in version) + + +if sys.version_info[:2] < PYTHON_REQUIRES: + raise SystemExit( + "This version of pip does not support python {} (requires >={}).".format( + version_str(sys.version_info[:2]), version_str(PYTHON_REQUIRES) + ) + ) + +# From here on, we can use Python 3 features, but the syntax must remain +# Python 2 compatible. + +import runpy # noqa: E402 +from importlib.machinery import PathFinder # noqa: E402 +from os.path import dirname # noqa: E402 + +PIP_SOURCES_ROOT = dirname(dirname(__file__)) + + +class PipImportRedirectingFinder: + @classmethod + def find_spec(self, fullname, path=None, target=None): # type: ignore + if fullname != "pip": + return None + + spec = PathFinder.find_spec(fullname, [PIP_SOURCES_ROOT], target) + assert spec, (PIP_SOURCES_ROOT, fullname) + return spec + + +sys.meta_path.insert(0, PipImportRedirectingFinder()) + +assert __name__ == "__main__", "Cannot run __pip-runner__.py as a non-main module" +runpy.run_module("pip", run_name="__main__", alter_sys=True) diff --git a/.venv/lib/python3.12/site-packages/pip/__pycache__/__init__.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..dea6ab5c706373bf1cd409f7557597b339fb9205 GIT binary patch literal 761 zcmX|9J#W-N5Z$$Xm*b9r_-H}_3k^DncrQl+1ffWg0s;vFQlPoU@_9FROYHS(cYVQ8 zkWx?}(aF$FjD=Is2f za15k9=)R4sMzpSDrMQMsT!PFnI_fekEI@}`T3xCfqDD8|Kc05;AKS)(5OVOIX42Ax zJ~Lb!+6R&>T+g*hhIA=UiVQFyEaX~AyPfVF?ap=PXXg6TS*+KD<%wNnqgW=KJ%RuO z_IKq#NKTKxM@r|?sqhWZD5)YM%7 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/__pycache__/__main__.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/__pycache__/__main__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..70c97414aaadecc0c4a0a3fab788ef1bb9f2cb09 GIT binary patch literal 917 zcmb7CK~K~`6n@ioS=e1L7$gCV2f4_B4yh* zF#+O%8WWLt;Hu%LcoERVl$els^0o;#PR_7fAQ2C~!@M`&``&xsyv&#G?hJ67IoPW_ zl>vTZaQq4ZYykm+EGV};DkF-jNJ>fGh(NOJfF)yC~!AvKU5?_}7p|khmgjP&|O1n}k=1RMW ze5&*Y-=1P+>})xQfbRxX2mh|+crMvbG8;jNLNt>4E$EM9h&wgS)=j2qBPdoxG}04G zjvvc@=*Nny2bH*Ei3Y|BiDlPu3`YsHVkfVtP!sspzt3S_0}YnNPhyAR@z& ze%EwW&13=PTuU`9Qx$VO@gL&U>GW8k&&}X791B$^AF<5>Y~Xp`$j1x3jHoM)=NlC~ z?HJ28WdVmxRts@{EMLI+!q}bh!osMndo?qlMleO{Ix{GF!~x>0u!n5PWE7v}HP>^h zoQKsqWp!+s3)l^Vio4k6Rbfs$UEY)r0CHSR|FD2%+V@NM|+<=3mjd-CuPo}6jStj#uNqu$qZ%}!9R zL^t>4zGen;J)6ai;$~^1^dY}f+%E2vwo9KT4~8ZVvW3;@q;jq?7fnUMH|6?~oLzsh fFAw}wCXSTc>I2buWB$#v@5;4i8k9k=k4yUlO1aUh literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/__pycache__/__pip-runner__.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/__pycache__/__pip-runner__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..a54ff9238c687b519e7273100f5416602a618589 GIT binary patch literal 2280 zcmaJ>O>7fK6n?Y2{*PmW6B3}5MNo<>$4decw1UtU0tD0$5;)XSwc6~ClTGYhv%3yB z1SyRol}eSGLsimSDpeIIt<+iEwP6;adkd1_I^5vehwTc%OObv7Ek#!T{hfr>aAN|9=!VvD+i z+l=U#c-k&o6ppbK){b_8ht2`Nn~of7XPuKaf>hq=fKaEU!gHb^TRJl_7%iqXw*c!37^Gd3fYD8BewDjJTY zO4n^_+0r<*3@v-pv}|=!I%le77BBwRjp>TiceJlx>gzxHc5nZ9Pf@X^b%(0Xd)ka* zs8ss^e`w}SW6+q;4Jy6V%O%U4!gEq~2J0jh^l_aDBHYS_N2yFbmZ=Jv2C86#<#YB-lYA|J7G*`vq)0^55$$q`F-!E~7jNGY zk683ZS+`I>aQgP0bQWETjwsILdEL;c#T?Xhi*Zv7h&*=X`smrgF?saLm22sME7-Jv=>iRvgdo6LWmN>X_@sV_;q^*c;0s+n8m~){F>Zeg!Mr3ITs9cG_6@$?Z-;(&st71J-K~@_0lChn7zFCar*RV%~(WdFS8&L`lK191>r&Df7mNipF zpLyK7iIESlUA!_Zj}BhFJ~TQw)_g2(oBw=tBX7FVv5JjdbMTh#xWT+>6&1$~Ab6?b zro29j4Ix`pRP5>0s(2g-nRb@d)k?JjV%=Ppt=+h7=E99&x)j-~y>4LZa;*LAY?S%k zisc|X&1%t12ibTBGCpf#Dbe31cHs7K;lo}ttYVe*VLY`POO})@6FUxJyl5l84Qz-XMkdJ7ZBl- z_{Z@z=%_)*($!jbU%mVIBj|q`N-VweFto1yVretU int: + """This is preserved for old console scripts that may still be referencing + it. + + For additional details, see https://github.com/pypa/pip/issues/7498. + """ + from pip._internal.utils.entrypoints import _wrapper + + return _wrapper(args) diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/__pycache__/__init__.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_internal/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..2dcf0d2d3a9a21320f4f9cb8f420afac690edfa8 GIT binary patch literal 863 zcmZuvzi-qq6t zHkNLbg^dAq;s0Qv0tqP#LWqH_sIYY6`FicdQ~dni%k$^&J-?5WlVb?v{^x_t_YnHw zoKvX{jiYB^yhaQ$oTCD_aN)H)?0hfxi=Y)? zu)B415fm`Rzzmqaz>e8A-bVYw?8m6#KY#lq6NbR2G&fxLI3w$&CS}e@T1r#qoS0M# zWeu@eVo8zoiLoNjNt+YR*SY306|yr%K!lCP2F5*rNEj0*tO?^b5xKcW4Cf@XR+(Fr zc7)Bk?IFf>2gDtZYY5$dt2(5Mbq&yem6Ga(ebZR=V7PJR0@5?9p7bp){M7 z@_Mw;qy{kNRFZBc9jMWjdsYOE!4x)*Bh{~hA`wzg0B1KuW(w2}`a6MY%iqVRcUNDn zd>S3b0CaM^pLCmqB% zsN?Wx%#Y literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/__pycache__/build_env.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_internal/__pycache__/build_env.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..dd1fb9c753e9031586c94ea809d4a53c77d132df GIT binary patch literal 14370 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

rk8oM-Q_q`T@E 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 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/__pycache__/main.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_internal/__pycache__/main.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..38f5274f01773a695a66b86fb233c0f9d001baa7 GIT binary patch literal 746 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 bcJ`bz8~t{5_Q(@1Mfi2k{-+)b+S21cggzay literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/__pycache__/self_outdated_check.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_internal/__pycache__/self_outdated_check.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..6860b44658918de8b170e15ee24a97d830b9ff61 GIT binary patch literal 10628 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 F{{ZL6UUmQg literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/build_env.py b/.venv/lib/python3.12/site-packages/pip/_internal/build_env.py new file mode 100644 index 00000000..4f704a35 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_internal/build_env.py @@ -0,0 +1,311 @@ +"""Build Environment used for isolation during sdist building +""" + +import logging +import os +import pathlib +import site +import sys +import textwrap +from collections import OrderedDict +from types import TracebackType +from typing import TYPE_CHECKING, Iterable, List, Optional, Set, Tuple, Type, Union + +from pip._vendor.certifi import where +from pip._vendor.packaging.requirements import Requirement +from pip._vendor.packaging.version import Version + +from pip import __file__ as pip_location +from pip._internal.cli.spinners import open_spinner +from pip._internal.locations import get_platlib, get_purelib, get_scheme +from pip._internal.metadata import get_default_environment, get_environment +from pip._internal.utils.subprocess import call_subprocess +from pip._internal.utils.temp_dir import TempDirectory, tempdir_kinds + +if TYPE_CHECKING: + from pip._internal.index.package_finder import PackageFinder + +logger = logging.getLogger(__name__) + + +def _dedup(a: str, b: str) -> Union[Tuple[str], Tuple[str, str]]: + return (a, b) if a != b else (a,) + + +class _Prefix: + def __init__(self, path: str) -> None: + self.path = path + self.setup = False + scheme = get_scheme("", prefix=path) + self.bin_dir = scheme.scripts + self.lib_dirs = _dedup(scheme.purelib, scheme.platlib) + + +def get_runnable_pip() -> str: + """Get a file to pass to a Python executable, to run the currently-running pip. + + This is used to run a pip subprocess, for installing requirements into the build + environment. + """ + source = pathlib.Path(pip_location).resolve().parent + + if not source.is_dir(): + # This would happen if someone is using pip from inside a zip file. In that + # case, we can use that directly. + return str(source) + + return os.fsdecode(source / "__pip-runner__.py") + + +def _get_system_sitepackages() -> Set[str]: + """Get system site packages + + Usually from site.getsitepackages, + but fallback on `get_purelib()/get_platlib()` if unavailable + (e.g. in a virtualenv created by virtualenv<20) + + Returns normalized set of strings. + """ + if hasattr(site, "getsitepackages"): + system_sites = site.getsitepackages() + else: + # virtualenv < 20 overwrites site.py without getsitepackages + # fallback on get_purelib/get_platlib. + # this is known to miss things, but shouldn't in the cases + # where getsitepackages() has been removed (inside a virtualenv) + system_sites = [get_purelib(), get_platlib()] + return {os.path.normcase(path) for path in system_sites} + + +class BuildEnvironment: + """Creates and manages an isolated environment to install build deps""" + + def __init__(self) -> None: + temp_dir = TempDirectory(kind=tempdir_kinds.BUILD_ENV, globally_managed=True) + + self._prefixes = OrderedDict( + (name, _Prefix(os.path.join(temp_dir.path, name))) + for name in ("normal", "overlay") + ) + + self._bin_dirs: List[str] = [] + self._lib_dirs: List[str] = [] + for prefix in reversed(list(self._prefixes.values())): + self._bin_dirs.append(prefix.bin_dir) + self._lib_dirs.extend(prefix.lib_dirs) + + # Customize site to: + # - ensure .pth files are honored + # - prevent access to system site packages + system_sites = _get_system_sitepackages() + + self._site_dir = os.path.join(temp_dir.path, "site") + if not os.path.exists(self._site_dir): + os.mkdir(self._site_dir) + with open( + os.path.join(self._site_dir, "sitecustomize.py"), "w", encoding="utf-8" + ) as fp: + fp.write( + textwrap.dedent( + """ + import os, site, sys + + # First, drop system-sites related paths. + original_sys_path = sys.path[:] + known_paths = set() + for path in {system_sites!r}: + site.addsitedir(path, known_paths=known_paths) + system_paths = set( + os.path.normcase(path) + for path in sys.path[len(original_sys_path):] + ) + original_sys_path = [ + path for path in original_sys_path + if os.path.normcase(path) not in system_paths + ] + sys.path = original_sys_path + + # Second, add lib directories. + # ensuring .pth file are processed. + for path in {lib_dirs!r}: + assert not path in sys.path + site.addsitedir(path) + """ + ).format(system_sites=system_sites, lib_dirs=self._lib_dirs) + ) + + def __enter__(self) -> None: + self._save_env = { + name: os.environ.get(name, None) + for name in ("PATH", "PYTHONNOUSERSITE", "PYTHONPATH") + } + + path = self._bin_dirs[:] + old_path = self._save_env["PATH"] + if old_path: + path.extend(old_path.split(os.pathsep)) + + pythonpath = [self._site_dir] + + os.environ.update( + { + "PATH": os.pathsep.join(path), + "PYTHONNOUSERSITE": "1", + "PYTHONPATH": os.pathsep.join(pythonpath), + } + ) + + def __exit__( + self, + exc_type: Optional[Type[BaseException]], + exc_val: Optional[BaseException], + exc_tb: Optional[TracebackType], + ) -> None: + for varname, old_value in self._save_env.items(): + if old_value is None: + os.environ.pop(varname, None) + else: + os.environ[varname] = old_value + + def check_requirements( + self, reqs: Iterable[str] + ) -> Tuple[Set[Tuple[str, str]], Set[str]]: + """Return 2 sets: + - conflicting requirements: set of (installed, wanted) reqs tuples + - missing requirements: set of reqs + """ + missing = set() + conflicting = set() + if reqs: + env = ( + get_environment(self._lib_dirs) + if hasattr(self, "_lib_dirs") + else get_default_environment() + ) + for req_str in reqs: + req = Requirement(req_str) + # We're explicitly evaluating with an empty extra value, since build + # environments are not provided any mechanism to select specific extras. + if req.marker is not None and not req.marker.evaluate({"extra": ""}): + continue + dist = env.get_distribution(req.name) + if not dist: + missing.add(req_str) + continue + if isinstance(dist.version, Version): + installed_req_str = f"{req.name}=={dist.version}" + else: + installed_req_str = f"{req.name}==={dist.version}" + if not req.specifier.contains(dist.version, prereleases=True): + conflicting.add((installed_req_str, req_str)) + # FIXME: Consider direct URL? + return conflicting, missing + + def install_requirements( + self, + finder: "PackageFinder", + requirements: Iterable[str], + prefix_as_string: str, + *, + kind: str, + ) -> None: + prefix = self._prefixes[prefix_as_string] + assert not prefix.setup + prefix.setup = True + if not requirements: + return + self._install_requirements( + get_runnable_pip(), + finder, + requirements, + prefix, + kind=kind, + ) + + @staticmethod + def _install_requirements( + pip_runnable: str, + finder: "PackageFinder", + requirements: Iterable[str], + prefix: _Prefix, + *, + kind: str, + ) -> None: + args: List[str] = [ + sys.executable, + pip_runnable, + "install", + "--ignore-installed", + "--no-user", + "--prefix", + prefix.path, + "--no-warn-script-location", + ] + if logger.getEffectiveLevel() <= logging.DEBUG: + args.append("-v") + for format_control in ("no_binary", "only_binary"): + formats = getattr(finder.format_control, format_control) + args.extend( + ( + "--" + format_control.replace("_", "-"), + ",".join(sorted(formats or {":none:"})), + ) + ) + + index_urls = finder.index_urls + if index_urls: + args.extend(["-i", index_urls[0]]) + for extra_index in index_urls[1:]: + args.extend(["--extra-index-url", extra_index]) + else: + args.append("--no-index") + for link in finder.find_links: + args.extend(["--find-links", link]) + + for host in finder.trusted_hosts: + args.extend(["--trusted-host", host]) + if finder.allow_all_prereleases: + args.append("--pre") + if finder.prefer_binary: + args.append("--prefer-binary") + args.append("--") + args.extend(requirements) + extra_environ = {"_PIP_STANDALONE_CERT": where()} + with open_spinner(f"Installing {kind}") as spinner: + call_subprocess( + args, + command_desc=f"pip subprocess to install {kind}", + spinner=spinner, + extra_environ=extra_environ, + ) + + +class NoOpBuildEnvironment(BuildEnvironment): + """A no-op drop-in replacement for BuildEnvironment""" + + def __init__(self) -> None: + pass + + def __enter__(self) -> None: + pass + + def __exit__( + self, + exc_type: Optional[Type[BaseException]], + exc_val: Optional[BaseException], + exc_tb: Optional[TracebackType], + ) -> None: + pass + + def cleanup(self) -> None: + pass + + def install_requirements( + self, + finder: "PackageFinder", + requirements: Iterable[str], + prefix_as_string: str, + *, + kind: str, + ) -> None: + raise NotImplementedError() diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/cache.py b/.venv/lib/python3.12/site-packages/pip/_internal/cache.py new file mode 100644 index 00000000..f45ac23e --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_internal/cache.py @@ -0,0 +1,290 @@ +"""Cache Management +""" + +import hashlib +import json +import logging +import os +from pathlib import Path +from typing import Any, Dict, List, Optional + +from pip._vendor.packaging.tags import Tag, interpreter_name, interpreter_version +from pip._vendor.packaging.utils import canonicalize_name + +from pip._internal.exceptions import InvalidWheelFilename +from pip._internal.models.direct_url import DirectUrl +from pip._internal.models.link import Link +from pip._internal.models.wheel import Wheel +from pip._internal.utils.temp_dir import TempDirectory, tempdir_kinds +from pip._internal.utils.urls import path_to_url + +logger = logging.getLogger(__name__) + +ORIGIN_JSON_NAME = "origin.json" + + +def _hash_dict(d: Dict[str, str]) -> str: + """Return a stable sha224 of a dictionary.""" + s = json.dumps(d, sort_keys=True, separators=(",", ":"), ensure_ascii=True) + return hashlib.sha224(s.encode("ascii")).hexdigest() + + +class Cache: + """An abstract class - provides cache directories for data from links + + :param cache_dir: The root of the cache. + """ + + def __init__(self, cache_dir: str) -> None: + super().__init__() + assert not cache_dir or os.path.isabs(cache_dir) + self.cache_dir = cache_dir or None + + def _get_cache_path_parts(self, link: Link) -> List[str]: + """Get parts of part that must be os.path.joined with cache_dir""" + + # We want to generate an url to use as our cache key, we don't want to + # just re-use the URL because it might have other items in the fragment + # and we don't care about those. + key_parts = {"url": link.url_without_fragment} + if link.hash_name is not None and link.hash is not None: + key_parts[link.hash_name] = link.hash + if link.subdirectory_fragment: + key_parts["subdirectory"] = link.subdirectory_fragment + + # Include interpreter name, major and minor version in cache key + # to cope with ill-behaved sdists that build a different wheel + # depending on the python version their setup.py is being run on, + # and don't encode the difference in compatibility tags. + # https://github.com/pypa/pip/issues/7296 + key_parts["interpreter_name"] = interpreter_name() + key_parts["interpreter_version"] = interpreter_version() + + # Encode our key url with sha224, we'll use this because it has similar + # security properties to sha256, but with a shorter total output (and + # thus less secure). However the differences don't make a lot of + # difference for our use case here. + hashed = _hash_dict(key_parts) + + # We want to nest the directories some to prevent having a ton of top + # level directories where we might run out of sub directories on some + # FS. + parts = [hashed[:2], hashed[2:4], hashed[4:6], hashed[6:]] + + return parts + + def _get_candidates(self, link: Link, canonical_package_name: str) -> List[Any]: + can_not_cache = not self.cache_dir or not canonical_package_name or not link + if can_not_cache: + return [] + + path = self.get_path_for_link(link) + if os.path.isdir(path): + return [(candidate, path) for candidate in os.listdir(path)] + return [] + + def get_path_for_link(self, link: Link) -> str: + """Return a directory to store cached items in for link.""" + raise NotImplementedError() + + def get( + self, + link: Link, + package_name: Optional[str], + supported_tags: List[Tag], + ) -> Link: + """Returns a link to a cached item if it exists, otherwise returns the + passed link. + """ + raise NotImplementedError() + + +class SimpleWheelCache(Cache): + """A cache of wheels for future installs.""" + + def __init__(self, cache_dir: str) -> None: + super().__init__(cache_dir) + + def get_path_for_link(self, link: Link) -> str: + """Return a directory to store cached wheels for link + + Because there are M wheels for any one sdist, we provide a directory + to cache them in, and then consult that directory when looking up + cache hits. + + We only insert things into the cache if they have plausible version + numbers, so that we don't contaminate the cache with things that were + not unique. E.g. ./package might have dozens of installs done for it + and build a version of 0.0...and if we built and cached a wheel, we'd + end up using the same wheel even if the source has been edited. + + :param link: The link of the sdist for which this will cache wheels. + """ + parts = self._get_cache_path_parts(link) + assert self.cache_dir + # Store wheels within the root cache_dir + return os.path.join(self.cache_dir, "wheels", *parts) + + def get( + self, + link: Link, + package_name: Optional[str], + supported_tags: List[Tag], + ) -> Link: + candidates = [] + + if not package_name: + return link + + canonical_package_name = canonicalize_name(package_name) + for wheel_name, wheel_dir in self._get_candidates(link, canonical_package_name): + try: + wheel = Wheel(wheel_name) + except InvalidWheelFilename: + continue + if canonicalize_name(wheel.name) != canonical_package_name: + logger.debug( + "Ignoring cached wheel %s for %s as it " + "does not match the expected distribution name %s.", + wheel_name, + link, + package_name, + ) + continue + if not wheel.supported(supported_tags): + # Built for a different python/arch/etc + continue + candidates.append( + ( + wheel.support_index_min(supported_tags), + wheel_name, + wheel_dir, + ) + ) + + if not candidates: + return link + + _, wheel_name, wheel_dir = min(candidates) + return Link(path_to_url(os.path.join(wheel_dir, wheel_name))) + + +class EphemWheelCache(SimpleWheelCache): + """A SimpleWheelCache that creates it's own temporary cache directory""" + + def __init__(self) -> None: + self._temp_dir = TempDirectory( + kind=tempdir_kinds.EPHEM_WHEEL_CACHE, + globally_managed=True, + ) + + super().__init__(self._temp_dir.path) + + +class CacheEntry: + def __init__( + self, + link: Link, + persistent: bool, + ): + self.link = link + self.persistent = persistent + self.origin: Optional[DirectUrl] = None + origin_direct_url_path = Path(self.link.file_path).parent / ORIGIN_JSON_NAME + if origin_direct_url_path.exists(): + try: + self.origin = DirectUrl.from_json( + origin_direct_url_path.read_text(encoding="utf-8") + ) + except Exception as e: + logger.warning( + "Ignoring invalid cache entry origin file %s for %s (%s)", + origin_direct_url_path, + link.filename, + e, + ) + + +class WheelCache(Cache): + """Wraps EphemWheelCache and SimpleWheelCache into a single Cache + + This Cache allows for gracefully degradation, using the ephem wheel cache + when a certain link is not found in the simple wheel cache first. + """ + + def __init__(self, cache_dir: str) -> None: + super().__init__(cache_dir) + self._wheel_cache = SimpleWheelCache(cache_dir) + self._ephem_cache = EphemWheelCache() + + def get_path_for_link(self, link: Link) -> str: + return self._wheel_cache.get_path_for_link(link) + + def get_ephem_path_for_link(self, link: Link) -> str: + return self._ephem_cache.get_path_for_link(link) + + def get( + self, + link: Link, + package_name: Optional[str], + supported_tags: List[Tag], + ) -> Link: + cache_entry = self.get_cache_entry(link, package_name, supported_tags) + if cache_entry is None: + return link + return cache_entry.link + + def get_cache_entry( + self, + link: Link, + package_name: Optional[str], + supported_tags: List[Tag], + ) -> Optional[CacheEntry]: + """Returns a CacheEntry with a link to a cached item if it exists or + None. The cache entry indicates if the item was found in the persistent + or ephemeral cache. + """ + retval = self._wheel_cache.get( + link=link, + package_name=package_name, + supported_tags=supported_tags, + ) + if retval is not link: + return CacheEntry(retval, persistent=True) + + retval = self._ephem_cache.get( + link=link, + package_name=package_name, + supported_tags=supported_tags, + ) + if retval is not link: + return CacheEntry(retval, persistent=False) + + return None + + @staticmethod + def record_download_origin(cache_dir: str, download_info: DirectUrl) -> None: + origin_path = Path(cache_dir) / ORIGIN_JSON_NAME + if origin_path.exists(): + try: + origin = DirectUrl.from_json(origin_path.read_text(encoding="utf-8")) + except Exception as e: + logger.warning( + "Could not read origin file %s in cache entry (%s). " + "Will attempt to overwrite it.", + origin_path, + e, + ) + else: + # TODO: use DirectUrl.equivalent when + # https://github.com/pypa/pip/pull/10564 is merged. + if origin.url != download_info.url: + logger.warning( + "Origin URL %s in cache entry %s does not match download URL " + "%s. This is likely a pip bug or a cache corruption issue. " + "Will overwrite it with the new value.", + origin.url, + cache_dir, + download_info.url, + ) + origin_path.write_text(download_info.to_json(), encoding="utf-8") diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/cli/__init__.py b/.venv/lib/python3.12/site-packages/pip/_internal/cli/__init__.py new file mode 100644 index 00000000..e589bb91 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_internal/cli/__init__.py @@ -0,0 +1,4 @@ +"""Subpackage containing all of pip's command line interface related code +""" + +# This file intentionally does not import submodules diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/__init__.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..7f99debb153ebd8097fc3db65f4eb5f136b09a58 GIT binary patch literal 354 zcmX|7u}%Xq484>Js!IKbY^X!e?V%1x2nh)U3oM9*CCVjk8=7-YxwO?W^ACJOzlEt{ zW90`B-8zv&1uyn{w(RHk*6VeX7&q^m*-Oly4fqSTFSeanye2w%OlsC|Jzw81@=~g~ zoFZ3_f;41k%B8j3O?YX_<0|q+AxU#<2)Utvej*iek5&fMv8}Ot*JmF`LTIOiSSQ=& z+HMU61yJx%p|2oEPdZ&WU#S^fI<+W}LZl7NYsiM#7_#y3bTrNfh4gb1P=yPvyU`-BX9cGSB(oqIg+%eeyRzZ9P#IJag7L+w0A~ZpW hw5)fXv%=|x#dCicl{aQpjh9~sjIr+)V{PA#@CQ{AZo~ip literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/autocompletion.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/autocompletion.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..97a0008ba82f44e7f7981c664fb6663e5c0c6ddd GIT binary patch literal 8541 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 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/base_command.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/base_command.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..fc7cbab4f5cbd63fd2ac5f7b9cca983b98cc7626 GIT binary patch literal 10531 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 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/cmdoptions.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/cmdoptions.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..d9f4769acad013aab9dddd0aebffd1bcf7fab771 GIT binary patch literal 30450 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 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/main.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/main.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..137be446eea6de417f48673cd7d3c8be9504ef45 GIT binary patch literal 2374 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 Yh^xc5TW%-52(6Bn_PqYsKpHas7iPSI?EnA( literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/parser.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/parser.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..2eb55887443339f27258bb703da22eaa19a9e394 GIT binary patch literal 15098 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 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/progress_bars.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/progress_bars.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..1eff6b30fa2feaffa74c49071cf4f35b33a6a220 GIT binary patch literal 2696 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 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/spinners.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/spinners.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..c6e5e98a7d6800f61daa009afd21b0af29aae507 GIT binary patch literal 7916 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 PS6E@AAM;RRfz1B{ZnW$X literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/status_codes.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/status_codes.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..d94de64082678eb36cae68cbdc1a44ab6d6662d9 GIT binary patch literal 451 zcmX|-Pfx-y6u>+Fiy=b9K%!?84^qT%Ffk?wGZJw#8^dImW~>cNpj*}g;l{V{GkEZm zc!79XxO(Dd!p)OiK;Pll_g;T(U;2^Bq=AV0&t;#B^(!p?LfR#p6Op_E3`~F}Q^FB5 zf}>^>$IKXxoAFuVEV&NVb$DPM2@wqu3sDeI&JwGnZq)0tuCL;+L27Rv53;#= XCMXmaARio`EI=_hJX(URe<0LfyB~!9 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/cli/autocompletion.py b/.venv/lib/python3.12/site-packages/pip/_internal/cli/autocompletion.py new file mode 100644 index 00000000..e5950b90 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_internal/cli/autocompletion.py @@ -0,0 +1,172 @@ +"""Logic that powers autocompletion installed by ``pip completion``. +""" + +import optparse +import os +import sys +from itertools import chain +from typing import Any, Iterable, List, Optional + +from pip._internal.cli.main_parser import create_main_parser +from pip._internal.commands import commands_dict, create_command +from pip._internal.metadata import get_default_environment + + +def autocomplete() -> None: + """Entry Point for completion of main and subcommand options.""" + # Don't complete if user hasn't sourced bash_completion file. + if "PIP_AUTO_COMPLETE" not in os.environ: + return + cwords = os.environ["COMP_WORDS"].split()[1:] + cword = int(os.environ["COMP_CWORD"]) + try: + current = cwords[cword - 1] + except IndexError: + current = "" + + parser = create_main_parser() + subcommands = list(commands_dict) + options = [] + + # subcommand + subcommand_name: Optional[str] = None + for word in cwords: + if word in subcommands: + subcommand_name = word + break + # subcommand options + if subcommand_name is not None: + # special case: 'help' subcommand has no options + if subcommand_name == "help": + sys.exit(1) + # special case: list locally installed dists for show and uninstall + should_list_installed = not current.startswith("-") and subcommand_name in [ + "show", + "uninstall", + ] + if should_list_installed: + env = get_default_environment() + lc = current.lower() + installed = [ + dist.canonical_name + for dist in env.iter_installed_distributions(local_only=True) + if dist.canonical_name.startswith(lc) + and dist.canonical_name not in cwords[1:] + ] + # if there are no dists installed, fall back to option completion + if installed: + for dist in installed: + print(dist) + sys.exit(1) + + should_list_installables = ( + not current.startswith("-") and subcommand_name == "install" + ) + if should_list_installables: + for path in auto_complete_paths(current, "path"): + print(path) + sys.exit(1) + + subcommand = create_command(subcommand_name) + + for opt in subcommand.parser.option_list_all: + if opt.help != optparse.SUPPRESS_HELP: + options += [ + (opt_str, opt.nargs) for opt_str in opt._long_opts + opt._short_opts + ] + + # filter out previously specified options from available options + prev_opts = [x.split("=")[0] for x in cwords[1 : cword - 1]] + options = [(x, v) for (x, v) in options if x not in prev_opts] + # filter options by current input + options = [(k, v) for k, v in options if k.startswith(current)] + # get completion type given cwords and available subcommand options + completion_type = get_path_completion_type( + cwords, + cword, + subcommand.parser.option_list_all, + ) + # get completion files and directories if ``completion_type`` is + # ````, ``

`` or ```` + if completion_type: + paths = auto_complete_paths(current, completion_type) + options = [(path, 0) for path in paths] + for option in options: + opt_label = option[0] + # append '=' to options which require args + if option[1] and option[0][:2] == "--": + opt_label += "=" + print(opt_label) + else: + # show main parser options only when necessary + + opts = [i.option_list for i in parser.option_groups] + opts.append(parser.option_list) + flattened_opts = chain.from_iterable(opts) + if current.startswith("-"): + for opt in flattened_opts: + if opt.help != optparse.SUPPRESS_HELP: + subcommands += opt._long_opts + opt._short_opts + else: + # get completion type given cwords and all available options + completion_type = get_path_completion_type(cwords, cword, flattened_opts) + if completion_type: + subcommands = list(auto_complete_paths(current, completion_type)) + + print(" ".join([x for x in subcommands if x.startswith(current)])) + sys.exit(1) + + +def get_path_completion_type( + cwords: List[str], cword: int, opts: Iterable[Any] +) -> Optional[str]: + """Get the type of path completion (``file``, ``dir``, ``path`` or None) + + :param cwords: same as the environmental variable ``COMP_WORDS`` + :param cword: same as the environmental variable ``COMP_CWORD`` + :param opts: The available options to check + :return: path completion type (``file``, ``dir``, ``path`` or None) + """ + if cword < 2 or not cwords[cword - 2].startswith("-"): + return None + for opt in opts: + if opt.help == optparse.SUPPRESS_HELP: + continue + for o in str(opt).split("/"): + if cwords[cword - 2].split("=")[0] == o: + if not opt.metavar or any( + x in ("path", "file", "dir") for x in opt.metavar.split("/") + ): + return opt.metavar + return None + + +def auto_complete_paths(current: str, completion_type: str) -> Iterable[str]: + """If ``completion_type`` is ``file`` or ``path``, list all regular files + and directories starting with ``current``; otherwise only list directories + starting with ``current``. + + :param current: The word to be completed + :param completion_type: path completion type(``file``, ``path`` or ``dir``) + :return: A generator of regular files and/or directories + """ + directory, filename = os.path.split(current) + current_path = os.path.abspath(directory) + # Don't complete paths if they can't be accessed + if not os.access(current_path, os.R_OK): + return + filename = os.path.normcase(filename) + # list all files that start with ``filename`` + file_list = ( + x for x in os.listdir(current_path) if os.path.normcase(x).startswith(filename) + ) + for f in file_list: + opt = os.path.join(current_path, f) + comp_file = os.path.normcase(os.path.join(directory, f)) + # complete regular files when there is not ```` after option + # complete directories when there is ````, ```` or + # ````after option + if completion_type != "dir" and os.path.isfile(opt): + yield comp_file + elif os.path.isdir(opt): + yield os.path.join(comp_file, "") diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/cli/base_command.py b/.venv/lib/python3.12/site-packages/pip/_internal/cli/base_command.py new file mode 100644 index 00000000..db9d5cc6 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_internal/cli/base_command.py @@ -0,0 +1,236 @@ +"""Base Command class, and related routines""" + +import functools +import logging +import logging.config +import optparse +import os +import sys +import traceback +from optparse import Values +from typing import Any, Callable, List, Optional, Tuple + +from pip._vendor.rich import traceback as rich_traceback + +from pip._internal.cli import cmdoptions +from pip._internal.cli.command_context import CommandContextMixIn +from pip._internal.cli.parser import ConfigOptionParser, UpdatingDefaultsHelpFormatter +from pip._internal.cli.status_codes import ( + ERROR, + PREVIOUS_BUILD_DIR_ERROR, + UNKNOWN_ERROR, + VIRTUALENV_NOT_FOUND, +) +from pip._internal.exceptions import ( + BadCommand, + CommandError, + DiagnosticPipError, + InstallationError, + NetworkConnectionError, + PreviousBuildDirError, + UninstallationError, +) +from pip._internal.utils.filesystem import check_path_owner +from pip._internal.utils.logging import BrokenStdoutLoggingError, setup_logging +from pip._internal.utils.misc import get_prog, normalize_path +from pip._internal.utils.temp_dir import TempDirectoryTypeRegistry as TempDirRegistry +from pip._internal.utils.temp_dir import global_tempdir_manager, tempdir_registry +from pip._internal.utils.virtualenv import running_under_virtualenv + +__all__ = ["Command"] + +logger = logging.getLogger(__name__) + + +class Command(CommandContextMixIn): + usage: str = "" + ignore_require_venv: bool = False + + def __init__(self, name: str, summary: str, isolated: bool = False) -> None: + super().__init__() + + self.name = name + self.summary = summary + self.parser = ConfigOptionParser( + usage=self.usage, + prog=f"{get_prog()} {name}", + formatter=UpdatingDefaultsHelpFormatter(), + add_help_option=False, + name=name, + description=self.__doc__, + isolated=isolated, + ) + + self.tempdir_registry: Optional[TempDirRegistry] = None + + # Commands should add options to this option group + optgroup_name = f"{self.name.capitalize()} Options" + self.cmd_opts = optparse.OptionGroup(self.parser, optgroup_name) + + # Add the general options + gen_opts = cmdoptions.make_option_group( + cmdoptions.general_group, + self.parser, + ) + self.parser.add_option_group(gen_opts) + + self.add_options() + + def add_options(self) -> None: + pass + + def handle_pip_version_check(self, options: Values) -> None: + """ + This is a no-op so that commands by default do not do the pip version + check. + """ + # Make sure we do the pip version check if the index_group options + # are present. + assert not hasattr(options, "no_index") + + def run(self, options: Values, args: List[str]) -> int: + raise NotImplementedError + + def parse_args(self, args: List[str]) -> Tuple[Values, List[str]]: + # factored out for testability + return self.parser.parse_args(args) + + def main(self, args: List[str]) -> int: + try: + with self.main_context(): + return self._main(args) + finally: + logging.shutdown() + + def _main(self, args: List[str]) -> int: + # We must initialize this before the tempdir manager, otherwise the + # configuration would not be accessible by the time we clean up the + # tempdir manager. + self.tempdir_registry = self.enter_context(tempdir_registry()) + # Intentionally set as early as possible so globally-managed temporary + # directories are available to the rest of the code. + self.enter_context(global_tempdir_manager()) + + options, args = self.parse_args(args) + + # Set verbosity so that it can be used elsewhere. + self.verbosity = options.verbose - options.quiet + + level_number = setup_logging( + verbosity=self.verbosity, + no_color=options.no_color, + user_log_file=options.log, + ) + + always_enabled_features = set(options.features_enabled) & set( + cmdoptions.ALWAYS_ENABLED_FEATURES + ) + if always_enabled_features: + logger.warning( + "The following features are always enabled: %s. ", + ", ".join(sorted(always_enabled_features)), + ) + + # Make sure that the --python argument isn't specified after the + # subcommand. We can tell, because if --python was specified, + # we should only reach this point if we're running in the created + # subprocess, which has the _PIP_RUNNING_IN_SUBPROCESS environment + # variable set. + if options.python and "_PIP_RUNNING_IN_SUBPROCESS" not in os.environ: + logger.critical( + "The --python option must be placed before the pip subcommand name" + ) + sys.exit(ERROR) + + # TODO: Try to get these passing down from the command? + # without resorting to os.environ to hold these. + # This also affects isolated builds and it should. + + if options.no_input: + os.environ["PIP_NO_INPUT"] = "1" + + if options.exists_action: + os.environ["PIP_EXISTS_ACTION"] = " ".join(options.exists_action) + + if options.require_venv and not self.ignore_require_venv: + # If a venv is required check if it can really be found + if not running_under_virtualenv(): + logger.critical("Could not find an activated virtualenv (required).") + sys.exit(VIRTUALENV_NOT_FOUND) + + if options.cache_dir: + options.cache_dir = normalize_path(options.cache_dir) + if not check_path_owner(options.cache_dir): + logger.warning( + "The directory '%s' or its parent directory is not owned " + "or is not writable by the current user. The cache " + "has been disabled. Check the permissions and owner of " + "that directory. If executing pip with sudo, you should " + "use sudo's -H flag.", + options.cache_dir, + ) + options.cache_dir = None + + def intercepts_unhandled_exc( + run_func: Callable[..., int] + ) -> Callable[..., int]: + @functools.wraps(run_func) + def exc_logging_wrapper(*args: Any) -> int: + try: + status = run_func(*args) + assert isinstance(status, int) + return status + except DiagnosticPipError as exc: + logger.error("%s", exc, extra={"rich": True}) + logger.debug("Exception information:", exc_info=True) + + return ERROR + except PreviousBuildDirError as exc: + logger.critical(str(exc)) + logger.debug("Exception information:", exc_info=True) + + return PREVIOUS_BUILD_DIR_ERROR + except ( + InstallationError, + UninstallationError, + BadCommand, + NetworkConnectionError, + ) as exc: + logger.critical(str(exc)) + logger.debug("Exception information:", exc_info=True) + + return ERROR + except CommandError as exc: + logger.critical("%s", exc) + logger.debug("Exception information:", exc_info=True) + + return ERROR + except BrokenStdoutLoggingError: + # Bypass our logger and write any remaining messages to + # stderr because stdout no longer works. + print("ERROR: Pipe to stdout was broken", file=sys.stderr) + if level_number <= logging.DEBUG: + traceback.print_exc(file=sys.stderr) + + return ERROR + except KeyboardInterrupt: + logger.critical("Operation cancelled by user") + logger.debug("Exception information:", exc_info=True) + + return ERROR + except BaseException: + logger.critical("Exception:", exc_info=True) + + return UNKNOWN_ERROR + + return exc_logging_wrapper + + try: + if not options.debug_mode: + run = intercepts_unhandled_exc(self.run) + else: + run = self.run + rich_traceback.install(show_locals=True) + return run(options, args) + finally: + self.handle_pip_version_check(options) diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/cli/cmdoptions.py b/.venv/lib/python3.12/site-packages/pip/_internal/cli/cmdoptions.py new file mode 100644 index 00000000..d6432560 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_internal/cli/cmdoptions.py @@ -0,0 +1,1074 @@ +""" +shared options and groups + +The principle here is to define options once, but *not* instantiate them +globally. One reason being that options with action='append' can carry state +between parses. pip parses general options twice internally, and shouldn't +pass on state. To be consistent, all options will follow this design. +""" + +# The following comment should be removed at some point in the future. +# mypy: strict-optional=False + +import importlib.util +import logging +import os +import textwrap +from functools import partial +from optparse import SUPPRESS_HELP, Option, OptionGroup, OptionParser, Values +from textwrap import dedent +from typing import Any, Callable, Dict, Optional, Tuple + +from pip._vendor.packaging.utils import canonicalize_name + +from pip._internal.cli.parser import ConfigOptionParser +from pip._internal.exceptions import CommandError +from pip._internal.locations import USER_CACHE_DIR, get_src_prefix +from pip._internal.models.format_control import FormatControl +from pip._internal.models.index import PyPI +from pip._internal.models.target_python import TargetPython +from pip._internal.utils.hashes import STRONG_HASHES +from pip._internal.utils.misc import strtobool + +logger = logging.getLogger(__name__) + + +def raise_option_error(parser: OptionParser, option: Option, msg: str) -> None: + """ + Raise an option parsing error using parser.error(). + + Args: + parser: an OptionParser instance. + option: an Option instance. + msg: the error text. + """ + msg = f"{option} error: {msg}" + msg = textwrap.fill(" ".join(msg.split())) + parser.error(msg) + + +def make_option_group(group: Dict[str, Any], parser: ConfigOptionParser) -> OptionGroup: + """ + Return an OptionGroup object + group -- assumed to be dict with 'name' and 'options' keys + parser -- an optparse Parser + """ + option_group = OptionGroup(parser, group["name"]) + for option in group["options"]: + option_group.add_option(option()) + return option_group + + +def check_dist_restriction(options: Values, check_target: bool = False) -> None: + """Function for determining if custom platform options are allowed. + + :param options: The OptionParser options. + :param check_target: Whether or not to check if --target is being used. + """ + dist_restriction_set = any( + [ + options.python_version, + options.platforms, + options.abis, + options.implementation, + ] + ) + + binary_only = FormatControl(set(), {":all:"}) + sdist_dependencies_allowed = ( + options.format_control != binary_only and not options.ignore_dependencies + ) + + # Installations or downloads using dist restrictions must not combine + # source distributions and dist-specific wheels, as they are not + # guaranteed to be locally compatible. + if dist_restriction_set and sdist_dependencies_allowed: + raise CommandError( + "When restricting platform and interpreter constraints using " + "--python-version, --platform, --abi, or --implementation, " + "either --no-deps must be set, or --only-binary=:all: must be " + "set and --no-binary must not be set (or must be set to " + ":none:)." + ) + + if check_target: + if not options.dry_run and dist_restriction_set and not options.target_dir: + raise CommandError( + "Can not use any platform or abi specific options unless " + "installing via '--target' or using '--dry-run'" + ) + + +def _path_option_check(option: Option, opt: str, value: str) -> str: + return os.path.expanduser(value) + + +def _package_name_option_check(option: Option, opt: str, value: str) -> str: + return canonicalize_name(value) + + +class PipOption(Option): + TYPES = Option.TYPES + ("path", "package_name") + TYPE_CHECKER = Option.TYPE_CHECKER.copy() + TYPE_CHECKER["package_name"] = _package_name_option_check + TYPE_CHECKER["path"] = _path_option_check + + +########### +# options # +########### + +help_: Callable[..., Option] = partial( + Option, + "-h", + "--help", + dest="help", + action="help", + help="Show help.", +) + +debug_mode: Callable[..., Option] = partial( + Option, + "--debug", + dest="debug_mode", + action="store_true", + default=False, + help=( + "Let unhandled exceptions propagate outside the main subroutine, " + "instead of logging them to stderr." + ), +) + +isolated_mode: Callable[..., Option] = partial( + Option, + "--isolated", + dest="isolated_mode", + action="store_true", + default=False, + help=( + "Run pip in an isolated mode, ignoring environment variables and user " + "configuration." + ), +) + +require_virtualenv: Callable[..., Option] = partial( + Option, + "--require-virtualenv", + "--require-venv", + dest="require_venv", + action="store_true", + default=False, + help=( + "Allow pip to only run in a virtual environment; " + "exit with an error otherwise." + ), +) + +override_externally_managed: Callable[..., Option] = partial( + Option, + "--break-system-packages", + dest="override_externally_managed", + action="store_true", + help="Allow pip to modify an EXTERNALLY-MANAGED Python installation", +) + +python: Callable[..., Option] = partial( + Option, + "--python", + dest="python", + help="Run pip with the specified Python interpreter.", +) + +verbose: Callable[..., Option] = partial( + Option, + "-v", + "--verbose", + dest="verbose", + action="count", + default=0, + help="Give more output. Option is additive, and can be used up to 3 times.", +) + +no_color: Callable[..., Option] = partial( + Option, + "--no-color", + dest="no_color", + action="store_true", + default=False, + help="Suppress colored output.", +) + +version: Callable[..., Option] = partial( + Option, + "-V", + "--version", + dest="version", + action="store_true", + help="Show version and exit.", +) + +quiet: Callable[..., Option] = partial( + Option, + "-q", + "--quiet", + dest="quiet", + action="count", + default=0, + help=( + "Give less output. Option is additive, and can be used up to 3" + " times (corresponding to WARNING, ERROR, and CRITICAL logging" + " levels)." + ), +) + +progress_bar: Callable[..., Option] = partial( + Option, + "--progress-bar", + dest="progress_bar", + type="choice", + choices=["on", "off"], + default="on", + help="Specify whether the progress bar should be used [on, off] (default: on)", +) + +log: Callable[..., Option] = partial( + PipOption, + "--log", + "--log-file", + "--local-log", + dest="log", + metavar="path", + type="path", + help="Path to a verbose appending log.", +) + +no_input: Callable[..., Option] = partial( + Option, + # Don't ask for input + "--no-input", + dest="no_input", + action="store_true", + default=False, + help="Disable prompting for input.", +) + +keyring_provider: Callable[..., Option] = partial( + Option, + "--keyring-provider", + dest="keyring_provider", + choices=["auto", "disabled", "import", "subprocess"], + default="auto", + help=( + "Enable the credential lookup via the keyring library if user input is allowed." + " Specify which mechanism to use [disabled, import, subprocess]." + " (default: disabled)" + ), +) + +proxy: Callable[..., Option] = partial( + Option, + "--proxy", + dest="proxy", + type="str", + default="", + help="Specify a proxy in the form scheme://[user:passwd@]proxy.server:port.", +) + +retries: Callable[..., Option] = partial( + Option, + "--retries", + dest="retries", + type="int", + default=5, + help="Maximum number of retries each connection should attempt " + "(default %default times).", +) + +timeout: Callable[..., Option] = partial( + Option, + "--timeout", + "--default-timeout", + metavar="sec", + dest="timeout", + type="float", + default=15, + help="Set the socket timeout (default %default seconds).", +) + + +def exists_action() -> Option: + return Option( + # Option when path already exist + "--exists-action", + dest="exists_action", + type="choice", + choices=["s", "i", "w", "b", "a"], + default=[], + action="append", + metavar="action", + help="Default action when a path already exists: " + "(s)witch, (i)gnore, (w)ipe, (b)ackup, (a)bort.", + ) + + +cert: Callable[..., Option] = partial( + PipOption, + "--cert", + dest="cert", + type="path", + metavar="path", + help=( + "Path to PEM-encoded CA certificate bundle. " + "If provided, overrides the default. " + "See 'SSL Certificate Verification' in pip documentation " + "for more information." + ), +) + +client_cert: Callable[..., Option] = partial( + PipOption, + "--client-cert", + dest="client_cert", + type="path", + default=None, + metavar="path", + help="Path to SSL client certificate, a single file containing the " + "private key and the certificate in PEM format.", +) + +index_url: Callable[..., Option] = partial( + Option, + "-i", + "--index-url", + "--pypi-url", + dest="index_url", + metavar="URL", + default=PyPI.simple_url, + help="Base URL of the Python Package Index (default %default). " + "This should point to a repository compliant with PEP 503 " + "(the simple repository API) or a local directory laid out " + "in the same format.", +) + + +def extra_index_url() -> Option: + return Option( + "--extra-index-url", + dest="extra_index_urls", + metavar="URL", + action="append", + default=[], + help="Extra URLs of package indexes to use in addition to " + "--index-url. Should follow the same rules as " + "--index-url.", + ) + + +no_index: Callable[..., Option] = partial( + Option, + "--no-index", + dest="no_index", + action="store_true", + default=False, + help="Ignore package index (only looking at --find-links URLs instead).", +) + + +def find_links() -> Option: + return Option( + "-f", + "--find-links", + dest="find_links", + action="append", + default=[], + metavar="url", + help="If a URL or path to an html file, then parse for links to " + "archives such as sdist (.tar.gz) or wheel (.whl) files. " + "If a local path or file:// URL that's a directory, " + "then look for archives in the directory listing. " + "Links to VCS project URLs are not supported.", + ) + + +def trusted_host() -> Option: + return Option( + "--trusted-host", + dest="trusted_hosts", + action="append", + metavar="HOSTNAME", + default=[], + help="Mark this host or host:port pair as trusted, even though it " + "does not have valid or any HTTPS.", + ) + + +def constraints() -> Option: + return Option( + "-c", + "--constraint", + dest="constraints", + action="append", + default=[], + metavar="file", + help="Constrain versions using the given constraints file. " + "This option can be used multiple times.", + ) + + +def requirements() -> Option: + return Option( + "-r", + "--requirement", + dest="requirements", + action="append", + default=[], + metavar="file", + help="Install from the given requirements file. " + "This option can be used multiple times.", + ) + + +def editable() -> Option: + return Option( + "-e", + "--editable", + dest="editables", + action="append", + default=[], + metavar="path/url", + help=( + "Install a project in editable mode (i.e. setuptools " + '"develop mode") from a local project path or a VCS url.' + ), + ) + + +def _handle_src(option: Option, opt_str: str, value: str, parser: OptionParser) -> None: + value = os.path.abspath(value) + setattr(parser.values, option.dest, value) + + +src: Callable[..., Option] = partial( + PipOption, + "--src", + "--source", + "--source-dir", + "--source-directory", + dest="src_dir", + type="path", + metavar="dir", + default=get_src_prefix(), + action="callback", + callback=_handle_src, + help="Directory to check out editable projects into. " + 'The default in a virtualenv is "/src". ' + 'The default for global installs is "/src".', +) + + +def _get_format_control(values: Values, option: Option) -> Any: + """Get a format_control object.""" + return getattr(values, option.dest) + + +def _handle_no_binary( + option: Option, opt_str: str, value: str, parser: OptionParser +) -> None: + existing = _get_format_control(parser.values, option) + FormatControl.handle_mutual_excludes( + value, + existing.no_binary, + existing.only_binary, + ) + + +def _handle_only_binary( + option: Option, opt_str: str, value: str, parser: OptionParser +) -> None: + existing = _get_format_control(parser.values, option) + FormatControl.handle_mutual_excludes( + value, + existing.only_binary, + existing.no_binary, + ) + + +def no_binary() -> Option: + format_control = FormatControl(set(), set()) + return Option( + "--no-binary", + dest="format_control", + action="callback", + callback=_handle_no_binary, + type="str", + default=format_control, + help="Do not use binary packages. Can be supplied multiple times, and " + 'each time adds to the existing value. Accepts either ":all:" to ' + 'disable all binary packages, ":none:" to empty the set (notice ' + "the colons), or one or more package names with commas between " + "them (no colons). Note that some packages are tricky to compile " + "and may fail to install when this option is used on them.", + ) + + +def only_binary() -> Option: + format_control = FormatControl(set(), set()) + return Option( + "--only-binary", + dest="format_control", + action="callback", + callback=_handle_only_binary, + type="str", + default=format_control, + help="Do not use source packages. Can be supplied multiple times, and " + 'each time adds to the existing value. Accepts either ":all:" to ' + 'disable all source packages, ":none:" to empty the set, or one ' + "or more package names with commas between them. Packages " + "without binary distributions will fail to install when this " + "option is used on them.", + ) + + +platforms: Callable[..., Option] = partial( + Option, + "--platform", + dest="platforms", + metavar="platform", + action="append", + default=None, + help=( + "Only use wheels compatible with . Defaults to the " + "platform of the running system. Use this option multiple times to " + "specify multiple platforms supported by the target interpreter." + ), +) + + +# This was made a separate function for unit-testing purposes. +def _convert_python_version(value: str) -> Tuple[Tuple[int, ...], Optional[str]]: + """ + Convert a version string like "3", "37", or "3.7.3" into a tuple of ints. + + :return: A 2-tuple (version_info, error_msg), where `error_msg` is + non-None if and only if there was a parsing error. + """ + if not value: + # The empty string is the same as not providing a value. + return (None, None) + + parts = value.split(".") + if len(parts) > 3: + return ((), "at most three version parts are allowed") + + if len(parts) == 1: + # Then we are in the case of "3" or "37". + value = parts[0] + if len(value) > 1: + parts = [value[0], value[1:]] + + try: + version_info = tuple(int(part) for part in parts) + except ValueError: + return ((), "each version part must be an integer") + + return (version_info, None) + + +def _handle_python_version( + option: Option, opt_str: str, value: str, parser: OptionParser +) -> None: + """ + Handle a provided --python-version value. + """ + version_info, error_msg = _convert_python_version(value) + if error_msg is not None: + msg = f"invalid --python-version value: {value!r}: {error_msg}" + raise_option_error(parser, option=option, msg=msg) + + parser.values.python_version = version_info + + +python_version: Callable[..., Option] = partial( + Option, + "--python-version", + dest="python_version", + metavar="python_version", + action="callback", + callback=_handle_python_version, + type="str", + default=None, + help=dedent( + """\ + The Python interpreter version to use for wheel and "Requires-Python" + compatibility checks. Defaults to a version derived from the running + interpreter. The version can be specified using up to three dot-separated + integers (e.g. "3" for 3.0.0, "3.7" for 3.7.0, or "3.7.3"). A major-minor + version can also be given as a string without dots (e.g. "37" for 3.7.0). + """ + ), +) + + +implementation: Callable[..., Option] = partial( + Option, + "--implementation", + dest="implementation", + metavar="implementation", + default=None, + help=( + "Only use wheels compatible with Python " + "implementation , e.g. 'pp', 'jy', 'cp', " + " or 'ip'. If not specified, then the current " + "interpreter implementation is used. Use 'py' to force " + "implementation-agnostic wheels." + ), +) + + +abis: Callable[..., Option] = partial( + Option, + "--abi", + dest="abis", + metavar="abi", + action="append", + default=None, + help=( + "Only use wheels compatible with Python abi , e.g. 'pypy_41'. " + "If not specified, then the current interpreter abi tag is used. " + "Use this option multiple times to specify multiple abis supported " + "by the target interpreter. Generally you will need to specify " + "--implementation, --platform, and --python-version when using this " + "option." + ), +) + + +def add_target_python_options(cmd_opts: OptionGroup) -> None: + cmd_opts.add_option(platforms()) + cmd_opts.add_option(python_version()) + cmd_opts.add_option(implementation()) + cmd_opts.add_option(abis()) + + +def make_target_python(options: Values) -> TargetPython: + target_python = TargetPython( + platforms=options.platforms, + py_version_info=options.python_version, + abis=options.abis, + implementation=options.implementation, + ) + + return target_python + + +def prefer_binary() -> Option: + return Option( + "--prefer-binary", + dest="prefer_binary", + action="store_true", + default=False, + help=( + "Prefer binary packages over source packages, even if the " + "source packages are newer." + ), + ) + + +cache_dir: Callable[..., Option] = partial( + PipOption, + "--cache-dir", + dest="cache_dir", + default=USER_CACHE_DIR, + metavar="dir", + type="path", + help="Store the cache data in .", +) + + +def _handle_no_cache_dir( + option: Option, opt: str, value: str, parser: OptionParser +) -> None: + """ + Process a value provided for the --no-cache-dir option. + + This is an optparse.Option callback for the --no-cache-dir option. + """ + # The value argument will be None if --no-cache-dir is passed via the + # command-line, since the option doesn't accept arguments. However, + # the value can be non-None if the option is triggered e.g. by an + # environment variable, like PIP_NO_CACHE_DIR=true. + if value is not None: + # Then parse the string value to get argument error-checking. + try: + strtobool(value) + except ValueError as exc: + raise_option_error(parser, option=option, msg=str(exc)) + + # Originally, setting PIP_NO_CACHE_DIR to a value that strtobool() + # converted to 0 (like "false" or "no") caused cache_dir to be disabled + # rather than enabled (logic would say the latter). Thus, we disable + # the cache directory not just on values that parse to True, but (for + # backwards compatibility reasons) also on values that parse to False. + # In other words, always set it to False if the option is provided in + # some (valid) form. + parser.values.cache_dir = False + + +no_cache: Callable[..., Option] = partial( + Option, + "--no-cache-dir", + dest="cache_dir", + action="callback", + callback=_handle_no_cache_dir, + help="Disable the cache.", +) + +no_deps: Callable[..., Option] = partial( + Option, + "--no-deps", + "--no-dependencies", + dest="ignore_dependencies", + action="store_true", + default=False, + help="Don't install package dependencies.", +) + +ignore_requires_python: Callable[..., Option] = partial( + Option, + "--ignore-requires-python", + dest="ignore_requires_python", + action="store_true", + help="Ignore the Requires-Python information.", +) + +no_build_isolation: Callable[..., Option] = partial( + Option, + "--no-build-isolation", + dest="build_isolation", + action="store_false", + default=True, + help="Disable isolation when building a modern source distribution. " + "Build dependencies specified by PEP 518 must be already installed " + "if this option is used.", +) + +check_build_deps: Callable[..., Option] = partial( + Option, + "--check-build-dependencies", + dest="check_build_deps", + action="store_true", + default=False, + help="Check the build dependencies when PEP517 is used.", +) + + +def _handle_no_use_pep517( + option: Option, opt: str, value: str, parser: OptionParser +) -> None: + """ + Process a value provided for the --no-use-pep517 option. + + This is an optparse.Option callback for the no_use_pep517 option. + """ + # Since --no-use-pep517 doesn't accept arguments, the value argument + # will be None if --no-use-pep517 is passed via the command-line. + # However, the value can be non-None if the option is triggered e.g. + # by an environment variable, for example "PIP_NO_USE_PEP517=true". + if value is not None: + msg = """A value was passed for --no-use-pep517, + probably using either the PIP_NO_USE_PEP517 environment variable + or the "no-use-pep517" config file option. Use an appropriate value + of the PIP_USE_PEP517 environment variable or the "use-pep517" + config file option instead. + """ + raise_option_error(parser, option=option, msg=msg) + + # If user doesn't wish to use pep517, we check if setuptools and wheel are installed + # and raise error if it is not. + packages = ("setuptools", "wheel") + if not all(importlib.util.find_spec(package) for package in packages): + msg = ( + f"It is not possible to use --no-use-pep517 " + f"without {' and '.join(packages)} installed." + ) + raise_option_error(parser, option=option, msg=msg) + + # Otherwise, --no-use-pep517 was passed via the command-line. + parser.values.use_pep517 = False + + +use_pep517: Any = partial( + Option, + "--use-pep517", + dest="use_pep517", + action="store_true", + default=None, + help="Use PEP 517 for building source distributions " + "(use --no-use-pep517 to force legacy behaviour).", +) + +no_use_pep517: Any = partial( + Option, + "--no-use-pep517", + dest="use_pep517", + action="callback", + callback=_handle_no_use_pep517, + default=None, + help=SUPPRESS_HELP, +) + + +def _handle_config_settings( + option: Option, opt_str: str, value: str, parser: OptionParser +) -> None: + key, sep, val = value.partition("=") + if sep != "=": + parser.error(f"Arguments to {opt_str} must be of the form KEY=VAL") + dest = getattr(parser.values, option.dest) + if dest is None: + dest = {} + setattr(parser.values, option.dest, dest) + if key in dest: + if isinstance(dest[key], list): + dest[key].append(val) + else: + dest[key] = [dest[key], val] + else: + dest[key] = val + + +config_settings: Callable[..., Option] = partial( + Option, + "-C", + "--config-settings", + dest="config_settings", + type=str, + action="callback", + callback=_handle_config_settings, + metavar="settings", + help="Configuration settings to be passed to the PEP 517 build backend. " + "Settings take the form KEY=VALUE. Use multiple --config-settings options " + "to pass multiple keys to the backend.", +) + +build_options: Callable[..., Option] = partial( + Option, + "--build-option", + dest="build_options", + metavar="options", + action="append", + help="Extra arguments to be supplied to 'setup.py bdist_wheel'.", +) + +global_options: Callable[..., Option] = partial( + Option, + "--global-option", + dest="global_options", + action="append", + metavar="options", + help="Extra global options to be supplied to the setup.py " + "call before the install or bdist_wheel command.", +) + +no_clean: Callable[..., Option] = partial( + Option, + "--no-clean", + action="store_true", + default=False, + help="Don't clean up build directories.", +) + +pre: Callable[..., Option] = partial( + Option, + "--pre", + action="store_true", + default=False, + help="Include pre-release and development versions. By default, " + "pip only finds stable versions.", +) + +disable_pip_version_check: Callable[..., Option] = partial( + Option, + "--disable-pip-version-check", + dest="disable_pip_version_check", + action="store_true", + default=True, + help="Don't periodically check PyPI to determine whether a new version " + "of pip is available for download. Implied with --no-index.", +) + +root_user_action: Callable[..., Option] = partial( + Option, + "--root-user-action", + dest="root_user_action", + default="warn", + choices=["warn", "ignore"], + help="Action if pip is run as a root user. By default, a warning message is shown.", +) + + +def _handle_merge_hash( + option: Option, opt_str: str, value: str, parser: OptionParser +) -> None: + """Given a value spelled "algo:digest", append the digest to a list + pointed to in a dict by the algo name.""" + if not parser.values.hashes: + parser.values.hashes = {} + try: + algo, digest = value.split(":", 1) + except ValueError: + parser.error( + f"Arguments to {opt_str} must be a hash name " + "followed by a value, like --hash=sha256:" + "abcde..." + ) + if algo not in STRONG_HASHES: + parser.error( + "Allowed hash algorithms for {} are {}.".format( + opt_str, ", ".join(STRONG_HASHES) + ) + ) + parser.values.hashes.setdefault(algo, []).append(digest) + + +hash: Callable[..., Option] = partial( + Option, + "--hash", + # Hash values eventually end up in InstallRequirement.hashes due to + # __dict__ copying in process_line(). + dest="hashes", + action="callback", + callback=_handle_merge_hash, + type="string", + help="Verify that the package's archive matches this " + "hash before installing. Example: --hash=sha256:abcdef...", +) + + +require_hashes: Callable[..., Option] = partial( + Option, + "--require-hashes", + dest="require_hashes", + action="store_true", + default=False, + help="Require a hash to check each requirement against, for " + "repeatable installs. This option is implied when any package in a " + "requirements file has a --hash option.", +) + + +list_path: Callable[..., Option] = partial( + PipOption, + "--path", + dest="path", + type="path", + action="append", + help="Restrict to the specified installation path for listing " + "packages (can be used multiple times).", +) + + +def check_list_path_option(options: Values) -> None: + if options.path and (options.user or options.local): + raise CommandError("Cannot combine '--path' with '--user' or '--local'") + + +list_exclude: Callable[..., Option] = partial( + PipOption, + "--exclude", + dest="excludes", + action="append", + metavar="package", + type="package_name", + help="Exclude specified package from the output", +) + + +no_python_version_warning: Callable[..., Option] = partial( + Option, + "--no-python-version-warning", + dest="no_python_version_warning", + action="store_true", + default=False, + help="Silence deprecation warnings for upcoming unsupported Pythons.", +) + + +# Features that are now always on. A warning is printed if they are used. +ALWAYS_ENABLED_FEATURES = [ + "no-binary-enable-wheel-cache", # always on since 23.1 +] + +use_new_feature: Callable[..., Option] = partial( + Option, + "--use-feature", + dest="features_enabled", + metavar="feature", + action="append", + default=[], + choices=[ + "fast-deps", + "truststore", + ] + + ALWAYS_ENABLED_FEATURES, + help="Enable new functionality, that may be backward incompatible.", +) + +use_deprecated_feature: Callable[..., Option] = partial( + Option, + "--use-deprecated", + dest="deprecated_features_enabled", + metavar="feature", + action="append", + default=[], + choices=[ + "legacy-resolver", + ], + help=("Enable deprecated functionality, that will be removed in the future."), +) + + +########## +# groups # +########## + +general_group: Dict[str, Any] = { + "name": "General Options", + "options": [ + help_, + debug_mode, + isolated_mode, + require_virtualenv, + python, + verbose, + version, + quiet, + log, + no_input, + keyring_provider, + proxy, + retries, + timeout, + exists_action, + trusted_host, + cert, + client_cert, + cache_dir, + no_cache, + disable_pip_version_check, + no_color, + no_python_version_warning, + use_new_feature, + use_deprecated_feature, + ], +} + +index_group: Dict[str, Any] = { + "name": "Package Index Options", + "options": [ + index_url, + extra_index_url, + no_index, + find_links, + ], +} diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/cli/command_context.py b/.venv/lib/python3.12/site-packages/pip/_internal/cli/command_context.py new file mode 100644 index 00000000..139995ac --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_internal/cli/command_context.py @@ -0,0 +1,27 @@ +from contextlib import ExitStack, contextmanager +from typing import ContextManager, Generator, TypeVar + +_T = TypeVar("_T", covariant=True) + + +class CommandContextMixIn: + def __init__(self) -> None: + super().__init__() + self._in_main_context = False + self._main_context = ExitStack() + + @contextmanager + def main_context(self) -> Generator[None, None, None]: + assert not self._in_main_context + + self._in_main_context = True + try: + with self._main_context: + yield + finally: + self._in_main_context = False + + def enter_context(self, context_provider: ContextManager[_T]) -> _T: + assert self._in_main_context + + return self._main_context.enter_context(context_provider) diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/cli/main.py b/.venv/lib/python3.12/site-packages/pip/_internal/cli/main.py new file mode 100644 index 00000000..7e061f5b --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_internal/cli/main.py @@ -0,0 +1,79 @@ +"""Primary application entrypoint. +""" +import locale +import logging +import os +import sys +import warnings +from typing import List, Optional + +from pip._internal.cli.autocompletion import autocomplete +from pip._internal.cli.main_parser import parse_command +from pip._internal.commands import create_command +from pip._internal.exceptions import PipError +from pip._internal.utils import deprecation + +logger = logging.getLogger(__name__) + + +# Do not import and use main() directly! Using it directly is actively +# discouraged by pip's maintainers. The name, location and behavior of +# this function is subject to change, so calling it directly is not +# portable across different pip versions. + +# In addition, running pip in-process is unsupported and unsafe. This is +# elaborated in detail at +# https://pip.pypa.io/en/stable/user_guide/#using-pip-from-your-program. +# That document also provides suggestions that should work for nearly +# all users that are considering importing and using main() directly. + +# However, we know that certain users will still want to invoke pip +# in-process. If you understand and accept the implications of using pip +# in an unsupported manner, the best approach is to use runpy to avoid +# depending on the exact location of this entry point. + +# The following example shows how to use runpy to invoke pip in that +# case: +# +# sys.argv = ["pip", your, args, here] +# runpy.run_module("pip", run_name="__main__") +# +# Note that this will exit the process after running, unlike a direct +# call to main. As it is not safe to do any processing after calling +# main, this should not be an issue in practice. + + +def main(args: Optional[List[str]] = None) -> int: + if args is None: + args = sys.argv[1:] + + # Suppress the pkg_resources deprecation warning + # Note - we use a module of .*pkg_resources to cover + # the normal case (pip._vendor.pkg_resources) and the + # devendored case (a bare pkg_resources) + warnings.filterwarnings( + action="ignore", category=DeprecationWarning, module=".*pkg_resources" + ) + + # Configure our deprecation warnings to be sent through loggers + deprecation.install_warning_logger() + + autocomplete() + + try: + cmd_name, cmd_args = parse_command(args) + except PipError as exc: + sys.stderr.write(f"ERROR: {exc}") + sys.stderr.write(os.linesep) + sys.exit(1) + + # Needed for locale.getpreferredencoding(False) to work + # in pip._internal.utils.encoding.auto_decode + try: + locale.setlocale(locale.LC_ALL, "") + except locale.Error as e: + # setlocale can apparently crash if locale are uninitialized + logger.debug("Ignoring error %s when setting locale", e) + command = create_command(cmd_name, isolated=("--isolated" in cmd_args)) + + return command.main(cmd_args) diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/cli/main_parser.py b/.venv/lib/python3.12/site-packages/pip/_internal/cli/main_parser.py new file mode 100644 index 00000000..5ade356b --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_internal/cli/main_parser.py @@ -0,0 +1,134 @@ +"""A single place for constructing and exposing the main parser +""" + +import os +import subprocess +import sys +from typing import List, Optional, Tuple + +from pip._internal.build_env import get_runnable_pip +from pip._internal.cli import cmdoptions +from pip._internal.cli.parser import ConfigOptionParser, UpdatingDefaultsHelpFormatter +from pip._internal.commands import commands_dict, get_similar_commands +from pip._internal.exceptions import CommandError +from pip._internal.utils.misc import get_pip_version, get_prog + +__all__ = ["create_main_parser", "parse_command"] + + +def create_main_parser() -> ConfigOptionParser: + """Creates and returns the main parser for pip's CLI""" + + parser = ConfigOptionParser( + usage="\n%prog [options]", + add_help_option=False, + formatter=UpdatingDefaultsHelpFormatter(), + name="global", + prog=get_prog(), + ) + parser.disable_interspersed_args() + + parser.version = get_pip_version() + + # add the general options + gen_opts = cmdoptions.make_option_group(cmdoptions.general_group, parser) + parser.add_option_group(gen_opts) + + # so the help formatter knows + parser.main = True # type: ignore + + # create command listing for description + description = [""] + [ + f"{name:27} {command_info.summary}" + for name, command_info in commands_dict.items() + ] + parser.description = "\n".join(description) + + return parser + + +def identify_python_interpreter(python: str) -> Optional[str]: + # If the named file exists, use it. + # If it's a directory, assume it's a virtual environment and + # look for the environment's Python executable. + if os.path.exists(python): + if os.path.isdir(python): + # bin/python for Unix, Scripts/python.exe for Windows + # Try both in case of odd cases like cygwin. + for exe in ("bin/python", "Scripts/python.exe"): + py = os.path.join(python, exe) + if os.path.exists(py): + return py + else: + return python + + # Could not find the interpreter specified + return None + + +def parse_command(args: List[str]) -> Tuple[str, List[str]]: + parser = create_main_parser() + + # Note: parser calls disable_interspersed_args(), so the result of this + # call is to split the initial args into the general options before the + # subcommand and everything else. + # For example: + # args: ['--timeout=5', 'install', '--user', 'INITools'] + # general_options: ['--timeout==5'] + # args_else: ['install', '--user', 'INITools'] + general_options, args_else = parser.parse_args(args) + + # --python + if general_options.python and "_PIP_RUNNING_IN_SUBPROCESS" not in os.environ: + # Re-invoke pip using the specified Python interpreter + interpreter = identify_python_interpreter(general_options.python) + if interpreter is None: + raise CommandError( + f"Could not locate Python interpreter {general_options.python}" + ) + + pip_cmd = [ + interpreter, + get_runnable_pip(), + ] + pip_cmd.extend(args) + + # Set a flag so the child doesn't re-invoke itself, causing + # an infinite loop. + os.environ["_PIP_RUNNING_IN_SUBPROCESS"] = "1" + returncode = 0 + try: + proc = subprocess.run(pip_cmd) + returncode = proc.returncode + except (subprocess.SubprocessError, OSError) as exc: + raise CommandError(f"Failed to run pip under {interpreter}: {exc}") + sys.exit(returncode) + + # --version + if general_options.version: + sys.stdout.write(parser.version) + sys.stdout.write(os.linesep) + sys.exit() + + # pip || pip help -> print_help() + if not args_else or (args_else[0] == "help" and len(args_else) == 1): + parser.print_help() + sys.exit() + + # the subcommand name + cmd_name = args_else[0] + + if cmd_name not in commands_dict: + guess = get_similar_commands(cmd_name) + + msg = [f'unknown command "{cmd_name}"'] + if guess: + msg.append(f'maybe you meant "{guess}"') + + raise CommandError(" - ".join(msg)) + + # all the args without the subcommand + cmd_args = args[:] + cmd_args.remove(cmd_name) + + return cmd_name, cmd_args diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/cli/parser.py b/.venv/lib/python3.12/site-packages/pip/_internal/cli/parser.py new file mode 100644 index 00000000..ae554b24 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_internal/cli/parser.py @@ -0,0 +1,294 @@ +"""Base option parser setup""" + +import logging +import optparse +import shutil +import sys +import textwrap +from contextlib import suppress +from typing import Any, Dict, Generator, List, Tuple + +from pip._internal.cli.status_codes import UNKNOWN_ERROR +from pip._internal.configuration import Configuration, ConfigurationError +from pip._internal.utils.misc import redact_auth_from_url, strtobool + +logger = logging.getLogger(__name__) + + +class PrettyHelpFormatter(optparse.IndentedHelpFormatter): + """A prettier/less verbose help formatter for optparse.""" + + def __init__(self, *args: Any, **kwargs: Any) -> None: + # help position must be aligned with __init__.parseopts.description + kwargs["max_help_position"] = 30 + kwargs["indent_increment"] = 1 + kwargs["width"] = shutil.get_terminal_size()[0] - 2 + super().__init__(*args, **kwargs) + + def format_option_strings(self, option: optparse.Option) -> str: + return self._format_option_strings(option) + + def _format_option_strings( + self, option: optparse.Option, mvarfmt: str = " <{}>", optsep: str = ", " + ) -> str: + """ + Return a comma-separated list of option strings and metavars. + + :param option: tuple of (short opt, long opt), e.g: ('-f', '--format') + :param mvarfmt: metavar format string + :param optsep: separator + """ + opts = [] + + if option._short_opts: + opts.append(option._short_opts[0]) + if option._long_opts: + opts.append(option._long_opts[0]) + if len(opts) > 1: + opts.insert(1, optsep) + + if option.takes_value(): + assert option.dest is not None + metavar = option.metavar or option.dest.lower() + opts.append(mvarfmt.format(metavar.lower())) + + return "".join(opts) + + def format_heading(self, heading: str) -> str: + if heading == "Options": + return "" + return heading + ":\n" + + def format_usage(self, usage: str) -> str: + """ + Ensure there is only one newline between usage and the first heading + if there is no description. + """ + msg = "\nUsage: {}\n".format(self.indent_lines(textwrap.dedent(usage), " ")) + return msg + + def format_description(self, description: str) -> str: + # leave full control over description to us + if description: + if hasattr(self.parser, "main"): + label = "Commands" + else: + label = "Description" + # some doc strings have initial newlines, some don't + description = description.lstrip("\n") + # some doc strings have final newlines and spaces, some don't + description = description.rstrip() + # dedent, then reindent + description = self.indent_lines(textwrap.dedent(description), " ") + description = f"{label}:\n{description}\n" + return description + else: + return "" + + def format_epilog(self, epilog: str) -> str: + # leave full control over epilog to us + if epilog: + return epilog + else: + return "" + + def indent_lines(self, text: str, indent: str) -> str: + new_lines = [indent + line for line in text.split("\n")] + return "\n".join(new_lines) + + +class UpdatingDefaultsHelpFormatter(PrettyHelpFormatter): + """Custom help formatter for use in ConfigOptionParser. + + This is updates the defaults before expanding them, allowing + them to show up correctly in the help listing. + + Also redact auth from url type options + """ + + def expand_default(self, option: optparse.Option) -> str: + default_values = None + if self.parser is not None: + assert isinstance(self.parser, ConfigOptionParser) + self.parser._update_defaults(self.parser.defaults) + assert option.dest is not None + default_values = self.parser.defaults.get(option.dest) + help_text = super().expand_default(option) + + if default_values and option.metavar == "URL": + if isinstance(default_values, str): + default_values = [default_values] + + # If its not a list, we should abort and just return the help text + if not isinstance(default_values, list): + default_values = [] + + for val in default_values: + help_text = help_text.replace(val, redact_auth_from_url(val)) + + return help_text + + +class CustomOptionParser(optparse.OptionParser): + def insert_option_group( + self, idx: int, *args: Any, **kwargs: Any + ) -> optparse.OptionGroup: + """Insert an OptionGroup at a given position.""" + group = self.add_option_group(*args, **kwargs) + + self.option_groups.pop() + self.option_groups.insert(idx, group) + + return group + + @property + def option_list_all(self) -> List[optparse.Option]: + """Get a list of all options, including those in option groups.""" + res = self.option_list[:] + for i in self.option_groups: + res.extend(i.option_list) + + return res + + +class ConfigOptionParser(CustomOptionParser): + """Custom option parser which updates its defaults by checking the + configuration files and environmental variables""" + + def __init__( + self, + *args: Any, + name: str, + isolated: bool = False, + **kwargs: Any, + ) -> None: + self.name = name + self.config = Configuration(isolated) + + assert self.name + super().__init__(*args, **kwargs) + + def check_default(self, option: optparse.Option, key: str, val: Any) -> Any: + try: + return option.check_value(key, val) + except optparse.OptionValueError as exc: + print(f"An error occurred during configuration: {exc}") + sys.exit(3) + + def _get_ordered_configuration_items( + self, + ) -> Generator[Tuple[str, Any], None, None]: + # Configuration gives keys in an unordered manner. Order them. + override_order = ["global", self.name, ":env:"] + + # Pool the options into different groups + section_items: Dict[str, List[Tuple[str, Any]]] = { + name: [] for name in override_order + } + for section_key, val in self.config.items(): + # ignore empty values + if not val: + logger.debug( + "Ignoring configuration key '%s' as it's value is empty.", + section_key, + ) + continue + + section, key = section_key.split(".", 1) + if section in override_order: + section_items[section].append((key, val)) + + # Yield each group in their override order + for section in override_order: + for key, val in section_items[section]: + yield key, val + + def _update_defaults(self, defaults: Dict[str, Any]) -> Dict[str, Any]: + """Updates the given defaults with values from the config files and + the environ. Does a little special handling for certain types of + options (lists).""" + + # Accumulate complex default state. + self.values = optparse.Values(self.defaults) + late_eval = set() + # Then set the options with those values + for key, val in self._get_ordered_configuration_items(): + # '--' because configuration supports only long names + option = self.get_option("--" + key) + + # Ignore options not present in this parser. E.g. non-globals put + # in [global] by users that want them to apply to all applicable + # commands. + if option is None: + continue + + assert option.dest is not None + + if option.action in ("store_true", "store_false"): + try: + val = strtobool(val) + except ValueError: + self.error( + f"{val} is not a valid value for {key} option, " + "please specify a boolean value like yes/no, " + "true/false or 1/0 instead." + ) + elif option.action == "count": + with suppress(ValueError): + val = strtobool(val) + with suppress(ValueError): + val = int(val) + if not isinstance(val, int) or val < 0: + self.error( + f"{val} is not a valid value for {key} option, " + "please instead specify either a non-negative integer " + "or a boolean value like yes/no or false/true " + "which is equivalent to 1/0." + ) + elif option.action == "append": + val = val.split() + val = [self.check_default(option, key, v) for v in val] + elif option.action == "callback": + assert option.callback is not None + late_eval.add(option.dest) + opt_str = option.get_opt_string() + val = option.convert_value(opt_str, val) + # From take_action + args = option.callback_args or () + kwargs = option.callback_kwargs or {} + option.callback(option, opt_str, val, self, *args, **kwargs) + else: + val = self.check_default(option, key, val) + + defaults[option.dest] = val + + for key in late_eval: + defaults[key] = getattr(self.values, key) + self.values = None + return defaults + + def get_default_values(self) -> optparse.Values: + """Overriding to make updating the defaults after instantiation of + the option parser possible, _update_defaults() does the dirty work.""" + if not self.process_default_values: + # Old, pre-Optik 1.5 behaviour. + return optparse.Values(self.defaults) + + # Load the configuration, or error out in case of an error + try: + self.config.load() + except ConfigurationError as err: + self.exit(UNKNOWN_ERROR, str(err)) + + defaults = self._update_defaults(self.defaults.copy()) # ours + for option in self._get_all_options(): + assert option.dest is not None + default = defaults.get(option.dest) + if isinstance(default, str): + opt_str = option.get_opt_string() + defaults[option.dest] = option.check_value(opt_str, default) + return optparse.Values(defaults) + + def error(self, msg: str) -> None: + self.print_usage(sys.stderr) + self.exit(UNKNOWN_ERROR, f"{msg}\n") diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/cli/progress_bars.py b/.venv/lib/python3.12/site-packages/pip/_internal/cli/progress_bars.py new file mode 100644 index 00000000..0ad14031 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_internal/cli/progress_bars.py @@ -0,0 +1,68 @@ +import functools +from typing import Callable, Generator, Iterable, Iterator, Optional, Tuple + +from pip._vendor.rich.progress import ( + BarColumn, + DownloadColumn, + FileSizeColumn, + Progress, + ProgressColumn, + SpinnerColumn, + TextColumn, + TimeElapsedColumn, + TimeRemainingColumn, + TransferSpeedColumn, +) + +from pip._internal.utils.logging import get_indentation + +DownloadProgressRenderer = Callable[[Iterable[bytes]], Iterator[bytes]] + + +def _rich_progress_bar( + iterable: Iterable[bytes], + *, + bar_type: str, + size: int, +) -> Generator[bytes, None, None]: + assert bar_type == "on", "This should only be used in the default mode." + + if not size: + total = float("inf") + columns: Tuple[ProgressColumn, ...] = ( + TextColumn("[progress.description]{task.description}"), + SpinnerColumn("line", speed=1.5), + FileSizeColumn(), + TransferSpeedColumn(), + TimeElapsedColumn(), + ) + else: + total = size + columns = ( + TextColumn("[progress.description]{task.description}"), + BarColumn(), + DownloadColumn(), + TransferSpeedColumn(), + TextColumn("eta"), + TimeRemainingColumn(), + ) + + progress = Progress(*columns, refresh_per_second=30) + task_id = progress.add_task(" " * (get_indentation() + 2), total=total) + with progress: + for chunk in iterable: + yield chunk + progress.update(task_id, advance=len(chunk)) + + +def get_download_progress_renderer( + *, bar_type: str, size: Optional[int] = None +) -> DownloadProgressRenderer: + """Get an object that can be used to render the download progress. + + Returns a callable, that takes an iterable to "wrap". + """ + if bar_type == "on": + return functools.partial(_rich_progress_bar, bar_type=bar_type, size=size) + else: + return iter # no-op, when passed an iterator diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/cli/req_command.py b/.venv/lib/python3.12/site-packages/pip/_internal/cli/req_command.py new file mode 100644 index 00000000..6f2f79c6 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_internal/cli/req_command.py @@ -0,0 +1,505 @@ +"""Contains the Command base classes that depend on PipSession. + +The classes in this module are in a separate module so the commands not +needing download / PackageFinder capability don't unnecessarily import the +PackageFinder machinery and all its vendored dependencies, etc. +""" + +import logging +import os +import sys +from functools import partial +from optparse import Values +from typing import TYPE_CHECKING, Any, List, Optional, Tuple + +from pip._internal.cache import WheelCache +from pip._internal.cli import cmdoptions +from pip._internal.cli.base_command import Command +from pip._internal.cli.command_context import CommandContextMixIn +from pip._internal.exceptions import CommandError, PreviousBuildDirError +from pip._internal.index.collector import LinkCollector +from pip._internal.index.package_finder import PackageFinder +from pip._internal.models.selection_prefs import SelectionPreferences +from pip._internal.models.target_python import TargetPython +from pip._internal.network.session import PipSession +from pip._internal.operations.build.build_tracker import BuildTracker +from pip._internal.operations.prepare import RequirementPreparer +from pip._internal.req.constructors import ( + install_req_from_editable, + install_req_from_line, + install_req_from_parsed_requirement, + install_req_from_req_string, +) +from pip._internal.req.req_file import parse_requirements +from pip._internal.req.req_install import InstallRequirement +from pip._internal.resolution.base import BaseResolver +from pip._internal.self_outdated_check import pip_self_version_check +from pip._internal.utils.temp_dir import ( + TempDirectory, + TempDirectoryTypeRegistry, + tempdir_kinds, +) +from pip._internal.utils.virtualenv import running_under_virtualenv + +if TYPE_CHECKING: + from ssl import SSLContext + +logger = logging.getLogger(__name__) + + +def _create_truststore_ssl_context() -> Optional["SSLContext"]: + if sys.version_info < (3, 10): + raise CommandError("The truststore feature is only available for Python 3.10+") + + try: + import ssl + except ImportError: + logger.warning("Disabling truststore since ssl support is missing") + return None + + try: + from pip._vendor import truststore + except ImportError as e: + raise CommandError(f"The truststore feature is unavailable: {e}") + + return truststore.SSLContext(ssl.PROTOCOL_TLS_CLIENT) + + +class SessionCommandMixin(CommandContextMixIn): + + """ + A class mixin for command classes needing _build_session(). + """ + + def __init__(self) -> None: + super().__init__() + self._session: Optional[PipSession] = None + + @classmethod + def _get_index_urls(cls, options: Values) -> Optional[List[str]]: + """Return a list of index urls from user-provided options.""" + index_urls = [] + if not getattr(options, "no_index", False): + url = getattr(options, "index_url", None) + if url: + index_urls.append(url) + urls = getattr(options, "extra_index_urls", None) + if urls: + index_urls.extend(urls) + # Return None rather than an empty list + return index_urls or None + + def get_default_session(self, options: Values) -> PipSession: + """Get a default-managed session.""" + if self._session is None: + self._session = self.enter_context(self._build_session(options)) + # there's no type annotation on requests.Session, so it's + # automatically ContextManager[Any] and self._session becomes Any, + # then https://github.com/python/mypy/issues/7696 kicks in + assert self._session is not None + return self._session + + def _build_session( + self, + options: Values, + retries: Optional[int] = None, + timeout: Optional[int] = None, + fallback_to_certifi: bool = False, + ) -> PipSession: + cache_dir = options.cache_dir + assert not cache_dir or os.path.isabs(cache_dir) + + if "truststore" in options.features_enabled: + try: + ssl_context = _create_truststore_ssl_context() + except Exception: + if not fallback_to_certifi: + raise + ssl_context = None + else: + ssl_context = None + + session = PipSession( + cache=os.path.join(cache_dir, "http-v2") if cache_dir else None, + retries=retries if retries is not None else options.retries, + trusted_hosts=options.trusted_hosts, + index_urls=self._get_index_urls(options), + ssl_context=ssl_context, + ) + + # Handle custom ca-bundles from the user + if options.cert: + session.verify = options.cert + + # Handle SSL client certificate + if options.client_cert: + session.cert = options.client_cert + + # Handle timeouts + if options.timeout or timeout: + session.timeout = timeout if timeout is not None else options.timeout + + # Handle configured proxies + if options.proxy: + session.proxies = { + "http": options.proxy, + "https": options.proxy, + } + + # Determine if we can prompt the user for authentication or not + session.auth.prompting = not options.no_input + session.auth.keyring_provider = options.keyring_provider + + return session + + +class IndexGroupCommand(Command, SessionCommandMixin): + + """ + Abstract base class for commands with the index_group options. + + This also corresponds to the commands that permit the pip version check. + """ + + def handle_pip_version_check(self, options: Values) -> None: + """ + Do the pip version check if not disabled. + + This overrides the default behavior of not doing the check. + """ + # Make sure the index_group options are present. + assert hasattr(options, "no_index") + + if options.disable_pip_version_check or options.no_index: + return + + # Otherwise, check if we're using the latest version of pip available. + session = self._build_session( + options, + retries=0, + timeout=min(5, options.timeout), + # This is set to ensure the function does not fail when truststore is + # specified in use-feature but cannot be loaded. This usually raises a + # CommandError and shows a nice user-facing error, but this function is not + # called in that try-except block. + fallback_to_certifi=True, + ) + with session: + pip_self_version_check(session, options) + + +KEEPABLE_TEMPDIR_TYPES = [ + tempdir_kinds.BUILD_ENV, + tempdir_kinds.EPHEM_WHEEL_CACHE, + tempdir_kinds.REQ_BUILD, +] + + +def warn_if_run_as_root() -> None: + """Output a warning for sudo users on Unix. + + In a virtual environment, sudo pip still writes to virtualenv. + On Windows, users may run pip as Administrator without issues. + This warning only applies to Unix root users outside of virtualenv. + """ + if running_under_virtualenv(): + return + if not hasattr(os, "getuid"): + return + # On Windows, there are no "system managed" Python packages. Installing as + # Administrator via pip is the correct way of updating system environments. + # + # We choose sys.platform over utils.compat.WINDOWS here to enable Mypy platform + # checks: https://mypy.readthedocs.io/en/stable/common_issues.html + if sys.platform == "win32" or sys.platform == "cygwin": + return + + if os.getuid() != 0: + return + + logger.warning( + "Running pip as the 'root' user can result in broken permissions and " + "conflicting behaviour with the system package manager. " + "It is recommended to use a virtual environment instead: " + "https://pip.pypa.io/warnings/venv" + ) + + +def with_cleanup(func: Any) -> Any: + """Decorator for common logic related to managing temporary + directories. + """ + + def configure_tempdir_registry(registry: TempDirectoryTypeRegistry) -> None: + for t in KEEPABLE_TEMPDIR_TYPES: + registry.set_delete(t, False) + + def wrapper( + self: RequirementCommand, options: Values, args: List[Any] + ) -> Optional[int]: + assert self.tempdir_registry is not None + if options.no_clean: + configure_tempdir_registry(self.tempdir_registry) + + try: + return func(self, options, args) + except PreviousBuildDirError: + # This kind of conflict can occur when the user passes an explicit + # build directory with a pre-existing folder. In that case we do + # not want to accidentally remove it. + configure_tempdir_registry(self.tempdir_registry) + raise + + return wrapper + + +class RequirementCommand(IndexGroupCommand): + def __init__(self, *args: Any, **kw: Any) -> None: + super().__init__(*args, **kw) + + self.cmd_opts.add_option(cmdoptions.no_clean()) + + @staticmethod + def determine_resolver_variant(options: Values) -> str: + """Determines which resolver should be used, based on the given options.""" + if "legacy-resolver" in options.deprecated_features_enabled: + return "legacy" + + return "resolvelib" + + @classmethod + def make_requirement_preparer( + cls, + temp_build_dir: TempDirectory, + options: Values, + build_tracker: BuildTracker, + session: PipSession, + finder: PackageFinder, + use_user_site: bool, + download_dir: Optional[str] = None, + verbosity: int = 0, + ) -> RequirementPreparer: + """ + Create a RequirementPreparer instance for the given parameters. + """ + temp_build_dir_path = temp_build_dir.path + assert temp_build_dir_path is not None + legacy_resolver = False + + resolver_variant = cls.determine_resolver_variant(options) + if resolver_variant == "resolvelib": + lazy_wheel = "fast-deps" in options.features_enabled + if lazy_wheel: + logger.warning( + "pip is using lazily downloaded wheels using HTTP " + "range requests to obtain dependency information. " + "This experimental feature is enabled through " + "--use-feature=fast-deps and it is not ready for " + "production." + ) + else: + legacy_resolver = True + lazy_wheel = False + if "fast-deps" in options.features_enabled: + logger.warning( + "fast-deps has no effect when used with the legacy resolver." + ) + + return RequirementPreparer( + build_dir=temp_build_dir_path, + src_dir=options.src_dir, + download_dir=download_dir, + build_isolation=options.build_isolation, + check_build_deps=options.check_build_deps, + build_tracker=build_tracker, + session=session, + progress_bar=options.progress_bar, + finder=finder, + require_hashes=options.require_hashes, + use_user_site=use_user_site, + lazy_wheel=lazy_wheel, + verbosity=verbosity, + legacy_resolver=legacy_resolver, + ) + + @classmethod + def make_resolver( + cls, + preparer: RequirementPreparer, + finder: PackageFinder, + options: Values, + wheel_cache: Optional[WheelCache] = None, + use_user_site: bool = False, + ignore_installed: bool = True, + ignore_requires_python: bool = False, + force_reinstall: bool = False, + upgrade_strategy: str = "to-satisfy-only", + use_pep517: Optional[bool] = None, + py_version_info: Optional[Tuple[int, ...]] = None, + ) -> BaseResolver: + """ + Create a Resolver instance for the given parameters. + """ + make_install_req = partial( + install_req_from_req_string, + isolated=options.isolated_mode, + use_pep517=use_pep517, + ) + resolver_variant = cls.determine_resolver_variant(options) + # The long import name and duplicated invocation is needed to convince + # Mypy into correctly typechecking. Otherwise it would complain the + # "Resolver" class being redefined. + if resolver_variant == "resolvelib": + import pip._internal.resolution.resolvelib.resolver + + return pip._internal.resolution.resolvelib.resolver.Resolver( + preparer=preparer, + finder=finder, + wheel_cache=wheel_cache, + make_install_req=make_install_req, + use_user_site=use_user_site, + ignore_dependencies=options.ignore_dependencies, + ignore_installed=ignore_installed, + ignore_requires_python=ignore_requires_python, + force_reinstall=force_reinstall, + upgrade_strategy=upgrade_strategy, + py_version_info=py_version_info, + ) + import pip._internal.resolution.legacy.resolver + + return pip._internal.resolution.legacy.resolver.Resolver( + preparer=preparer, + finder=finder, + wheel_cache=wheel_cache, + make_install_req=make_install_req, + use_user_site=use_user_site, + ignore_dependencies=options.ignore_dependencies, + ignore_installed=ignore_installed, + ignore_requires_python=ignore_requires_python, + force_reinstall=force_reinstall, + upgrade_strategy=upgrade_strategy, + py_version_info=py_version_info, + ) + + def get_requirements( + self, + args: List[str], + options: Values, + finder: PackageFinder, + session: PipSession, + ) -> List[InstallRequirement]: + """ + Parse command-line arguments into the corresponding requirements. + """ + requirements: List[InstallRequirement] = [] + for filename in options.constraints: + for parsed_req in parse_requirements( + filename, + constraint=True, + finder=finder, + options=options, + session=session, + ): + req_to_add = install_req_from_parsed_requirement( + parsed_req, + isolated=options.isolated_mode, + user_supplied=False, + ) + requirements.append(req_to_add) + + for req in args: + req_to_add = install_req_from_line( + req, + comes_from=None, + isolated=options.isolated_mode, + use_pep517=options.use_pep517, + user_supplied=True, + config_settings=getattr(options, "config_settings", None), + ) + requirements.append(req_to_add) + + for req in options.editables: + req_to_add = install_req_from_editable( + req, + user_supplied=True, + isolated=options.isolated_mode, + use_pep517=options.use_pep517, + config_settings=getattr(options, "config_settings", None), + ) + requirements.append(req_to_add) + + # NOTE: options.require_hashes may be set if --require-hashes is True + for filename in options.requirements: + for parsed_req in parse_requirements( + filename, finder=finder, options=options, session=session + ): + req_to_add = install_req_from_parsed_requirement( + parsed_req, + isolated=options.isolated_mode, + use_pep517=options.use_pep517, + user_supplied=True, + config_settings=parsed_req.options.get("config_settings") + if parsed_req.options + else None, + ) + requirements.append(req_to_add) + + # If any requirement has hash options, enable hash checking. + if any(req.has_hash_options for req in requirements): + options.require_hashes = True + + if not (args or options.editables or options.requirements): + opts = {"name": self.name} + if options.find_links: + raise CommandError( + "You must give at least one requirement to {name} " + '(maybe you meant "pip {name} {links}"?)'.format( + **dict(opts, links=" ".join(options.find_links)) + ) + ) + else: + raise CommandError( + "You must give at least one requirement to {name} " + '(see "pip help {name}")'.format(**opts) + ) + + return requirements + + @staticmethod + def trace_basic_info(finder: PackageFinder) -> None: + """ + Trace basic information about the provided objects. + """ + # Display where finder is looking for packages + search_scope = finder.search_scope + locations = search_scope.get_formatted_locations() + if locations: + logger.info(locations) + + def _build_package_finder( + self, + options: Values, + session: PipSession, + target_python: Optional[TargetPython] = None, + ignore_requires_python: Optional[bool] = None, + ) -> PackageFinder: + """ + Create a package finder appropriate to this requirement command. + + :param ignore_requires_python: Whether to ignore incompatible + "Requires-Python" values in links. Defaults to False. + """ + link_collector = LinkCollector.create(session, options=options) + selection_prefs = SelectionPreferences( + allow_yanked=True, + format_control=options.format_control, + allow_all_prereleases=options.pre, + prefer_binary=options.prefer_binary, + ignore_requires_python=ignore_requires_python, + ) + + return PackageFinder.create( + link_collector=link_collector, + selection_prefs=selection_prefs, + target_python=target_python, + ) diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/cli/spinners.py b/.venv/lib/python3.12/site-packages/pip/_internal/cli/spinners.py new file mode 100644 index 00000000..cf2b976f --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_internal/cli/spinners.py @@ -0,0 +1,159 @@ +import contextlib +import itertools +import logging +import sys +import time +from typing import IO, Generator, Optional + +from pip._internal.utils.compat import WINDOWS +from pip._internal.utils.logging import get_indentation + +logger = logging.getLogger(__name__) + + +class SpinnerInterface: + def spin(self) -> None: + raise NotImplementedError() + + def finish(self, final_status: str) -> None: + raise NotImplementedError() + + +class InteractiveSpinner(SpinnerInterface): + def __init__( + self, + message: str, + file: Optional[IO[str]] = None, + spin_chars: str = "-\\|/", + # Empirically, 8 updates/second looks nice + min_update_interval_seconds: float = 0.125, + ): + self._message = message + if file is None: + file = sys.stdout + self._file = file + self._rate_limiter = RateLimiter(min_update_interval_seconds) + self._finished = False + + self._spin_cycle = itertools.cycle(spin_chars) + + self._file.write(" " * get_indentation() + self._message + " ... ") + self._width = 0 + + def _write(self, status: str) -> None: + assert not self._finished + # Erase what we wrote before by backspacing to the beginning, writing + # spaces to overwrite the old text, and then backspacing again + backup = "\b" * self._width + self._file.write(backup + " " * self._width + backup) + # Now we have a blank slate to add our status + self._file.write(status) + self._width = len(status) + self._file.flush() + self._rate_limiter.reset() + + def spin(self) -> None: + if self._finished: + return + if not self._rate_limiter.ready(): + return + self._write(next(self._spin_cycle)) + + def finish(self, final_status: str) -> None: + if self._finished: + return + self._write(final_status) + self._file.write("\n") + self._file.flush() + self._finished = True + + +# Used for dumb terminals, non-interactive installs (no tty), etc. +# We still print updates occasionally (once every 60 seconds by default) to +# act as a keep-alive for systems like Travis-CI that take lack-of-output as +# an indication that a task has frozen. +class NonInteractiveSpinner(SpinnerInterface): + def __init__(self, message: str, min_update_interval_seconds: float = 60.0) -> None: + self._message = message + self._finished = False + self._rate_limiter = RateLimiter(min_update_interval_seconds) + self._update("started") + + def _update(self, status: str) -> None: + assert not self._finished + self._rate_limiter.reset() + logger.info("%s: %s", self._message, status) + + def spin(self) -> None: + if self._finished: + return + if not self._rate_limiter.ready(): + return + self._update("still running...") + + def finish(self, final_status: str) -> None: + if self._finished: + return + self._update(f"finished with status '{final_status}'") + self._finished = True + + +class RateLimiter: + def __init__(self, min_update_interval_seconds: float) -> None: + self._min_update_interval_seconds = min_update_interval_seconds + self._last_update: float = 0 + + def ready(self) -> bool: + now = time.time() + delta = now - self._last_update + return delta >= self._min_update_interval_seconds + + def reset(self) -> None: + self._last_update = time.time() + + +@contextlib.contextmanager +def open_spinner(message: str) -> Generator[SpinnerInterface, None, None]: + # Interactive spinner goes directly to sys.stdout rather than being routed + # through the logging system, but it acts like it has level INFO, + # i.e. it's only displayed if we're at level INFO or better. + # Non-interactive spinner goes through the logging system, so it is always + # in sync with logging configuration. + if sys.stdout.isatty() and logger.getEffectiveLevel() <= logging.INFO: + spinner: SpinnerInterface = InteractiveSpinner(message) + else: + spinner = NonInteractiveSpinner(message) + try: + with hidden_cursor(sys.stdout): + yield spinner + except KeyboardInterrupt: + spinner.finish("canceled") + raise + except Exception: + spinner.finish("error") + raise + else: + spinner.finish("done") + + +HIDE_CURSOR = "\x1b[?25l" +SHOW_CURSOR = "\x1b[?25h" + + +@contextlib.contextmanager +def hidden_cursor(file: IO[str]) -> Generator[None, None, None]: + # The Windows terminal does not support the hide/show cursor ANSI codes, + # even via colorama. So don't even try. + if WINDOWS: + yield + # We don't want to clutter the output with control characters if we're + # writing to a file, or if the user is running with --quiet. + # See https://github.com/pypa/pip/issues/3418 + elif not file.isatty() or logger.getEffectiveLevel() > logging.INFO: + yield + else: + file.write(HIDE_CURSOR) + try: + yield + finally: + file.write(SHOW_CURSOR) diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/cli/status_codes.py b/.venv/lib/python3.12/site-packages/pip/_internal/cli/status_codes.py new file mode 100644 index 00000000..5e29502c --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_internal/cli/status_codes.py @@ -0,0 +1,6 @@ +SUCCESS = 0 +ERROR = 1 +UNKNOWN_ERROR = 2 +VIRTUALENV_NOT_FOUND = 3 +PREVIOUS_BUILD_DIR_ERROR = 4 +NO_MATCHES_FOUND = 23 diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/commands/__init__.py b/.venv/lib/python3.12/site-packages/pip/_internal/commands/__init__.py new file mode 100644 index 00000000..858a4101 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_internal/commands/__init__.py @@ -0,0 +1,132 @@ +""" +Package containing all pip commands +""" + +import importlib +from collections import namedtuple +from typing import Any, Dict, Optional + +from pip._internal.cli.base_command import Command + +CommandInfo = namedtuple("CommandInfo", "module_path, class_name, summary") + +# This dictionary does a bunch of heavy lifting for help output: +# - Enables avoiding additional (costly) imports for presenting `--help`. +# - The ordering matters for help display. +# +# Even though the module path starts with the same "pip._internal.commands" +# prefix, the full path makes testing easier (specifically when modifying +# `commands_dict` in test setup / teardown). +commands_dict: Dict[str, CommandInfo] = { + "install": CommandInfo( + "pip._internal.commands.install", + "InstallCommand", + "Install packages.", + ), + "download": CommandInfo( + "pip._internal.commands.download", + "DownloadCommand", + "Download packages.", + ), + "uninstall": CommandInfo( + "pip._internal.commands.uninstall", + "UninstallCommand", + "Uninstall packages.", + ), + "freeze": CommandInfo( + "pip._internal.commands.freeze", + "FreezeCommand", + "Output installed packages in requirements format.", + ), + "inspect": CommandInfo( + "pip._internal.commands.inspect", + "InspectCommand", + "Inspect the python environment.", + ), + "list": CommandInfo( + "pip._internal.commands.list", + "ListCommand", + "List installed packages.", + ), + "show": CommandInfo( + "pip._internal.commands.show", + "ShowCommand", + "Show information about installed packages.", + ), + "check": CommandInfo( + "pip._internal.commands.check", + "CheckCommand", + "Verify installed packages have compatible dependencies.", + ), + "config": CommandInfo( + "pip._internal.commands.configuration", + "ConfigurationCommand", + "Manage local and global configuration.", + ), + "search": CommandInfo( + "pip._internal.commands.search", + "SearchCommand", + "Search PyPI for packages.", + ), + "cache": CommandInfo( + "pip._internal.commands.cache", + "CacheCommand", + "Inspect and manage pip's wheel cache.", + ), + "index": CommandInfo( + "pip._internal.commands.index", + "IndexCommand", + "Inspect information available from package indexes.", + ), + "wheel": CommandInfo( + "pip._internal.commands.wheel", + "WheelCommand", + "Build wheels from your requirements.", + ), + "hash": CommandInfo( + "pip._internal.commands.hash", + "HashCommand", + "Compute hashes of package archives.", + ), + "completion": CommandInfo( + "pip._internal.commands.completion", + "CompletionCommand", + "A helper command used for command completion.", + ), + "debug": CommandInfo( + "pip._internal.commands.debug", + "DebugCommand", + "Show information useful for debugging.", + ), + "help": CommandInfo( + "pip._internal.commands.help", + "HelpCommand", + "Show help for commands.", + ), +} + + +def create_command(name: str, **kwargs: Any) -> Command: + """ + Create an instance of the Command class with the given name. + """ + module_path, class_name, summary = commands_dict[name] + module = importlib.import_module(module_path) + command_class = getattr(module, class_name) + command = command_class(name=name, summary=summary, **kwargs) + + return command + + +def get_similar_commands(name: str) -> Optional[str]: + """Command name auto-correct.""" + from difflib import get_close_matches + + name = name.lower() + + close_commands = get_close_matches(name, commands_dict.keys()) + + if close_commands: + return close_commands[0] + else: + return None diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/__init__.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..f65d15418b853235ac9c87d3c16ba4c490af692d GIT binary patch literal 4078 zcmaJ^&2!tv6<>fP2#F#oS(3lx57?GuQ?^J;w&KQi?8=fI%Z?={s-0Fzh67=jA}kPK z7NBG@)C>A2JJvHwFa*60uvlTPjF!u}bj7TZLU&MCd7cfG}D@SiqtoED7+97-A{1 z6cHE}HKL{1QmiB`Nu~HwoMSOVE_E$+2}ndFf+ZY(4m#{v>edkkQPPdOa5qjokNEf> z1l+^XBu?RU2<_!)AKr)iL+AiU2l0MZrt=sAv#<1EgF(DNLfz?1kw2))SBDf|w;6heQ-(RcA>d?kcl z<>-6(8onMvf6mcqd;`yf&{>Y&#JBMKA@nv!=kOhT_YJy~AQI^z-39Rwgq$St2Up>X z?~xunPhxn1bQL6g|JTu_6vq}wob)iuLKJ@pXu2w9KB|p$-&eI&b%iLJWjd;E>gI}~ z8irEV%K(*1s)_CHf3rEA&j?<(sg?+KDrJLYB3@+Lta{N|U2{Bnq3r0EsTyDupYhvy ziB@6GELb(AWZ{ZI@@3U2o>MeKwe37pJEzzc=!RCkxNh1G^j$j!ooDm9=@1Hv*}#o# zi}zASTFf%S3bjUtk%}1Ir3QU&kS^tgbjkqLiyn(J~ccuIbb=Sr1t+YUs988|p9s zMtX@4;2j7aWRTJNaDNH4Jn??7pcRY1ufBcz_9E?aL6OV*2NMWU_Nj&yL7 zvtG{(GYaG{JtR~wRNvyNQdHO2YAHb?>&pgFFewug6I0U(B%TE8sGzUZhC6k}=?aC$ zmgx=5gsVa4qxV#kElI=DR6~IksH_;)G8BF7R%7VPCMwm69TUi>z2qV{3)Bz!Rpoy5 z{v1n@cK)zHsSu3LfnqEKihTmLksw8wo3L9jzhUU7ZDqYk2)N9QL0N|oJ?^N?S+8e~ z83oE00_8oEyr$}g%EDftRw-~DrU@Fd@W*(s9sA*|*Yh!RE$CC zbk9Ei7wqh09&ayev*O<568W>Q`K(-;lX6NveGd;ob`HUnNiTg=>IG< z=%G+CcptpM3Y-}%K;TE`009XBf_I>Mfa|hGVQ(QQ$(G}G9nUu!S3qiEZxU8sxCTdEr| zC%7-6daND^?m8Qii0Tp+>!=>Z!XL%D@U`$eVIy9TFQQDOcB@-~XND3Lrd>7ty~ET9 zn|ro_wnpxseagD-6gj*CxnL@6lvys25$QQ_%8R$o#Xq4;l%8csmtHDc)G_pBFX3POVt)@Y^^W4CT2ho?oh>eFmKmH|GGM${3 zdtei4=a%7I#@Tg?+FCI;YiSjJ+~k&ZbG4eAJU=;=o18lT?!?scIGpRNx&tT3G+t97 z6!;zh?Bu;^Le`L6o6nc2^$6^8SqR2j4u+WX&zlR`iOHM|8sov?o`Z#wYu^rXfxo#t zV7imfXUkPDrSVzFw@7*g22+BceFt6*^n;AfOuhKU_UX&p(c#A3FAr~h{9SVYx5?q{ zKkygt_yYKux#efqpqOz<{MbIGg7RJG*%a} zz%qRiRU?^b?QoE2ET)YekcgCl825&UxU&jaC^wBMKJFUEw zl~?J0%C5MXUN4@{V@u2D=_J&>gk~8A3=g(Zn=(f{$*GoMSE6j0QxVrl5v zWffu&qzPN~lqJ4D>WJ-7FP+b;rfI?QV)D=>%OyS*I>AcJBR=XM<*WXZx<*-+vAx9p z5aQj82!ik*Q52%PG7|d!flmGtjc%jS@6qJz)WNNzFVEcBN!@KEn)@CK8PSaBlm4|lY(O#(;VMMbB#nMj_uAFh@L#})Ts6MHgwPlh%44p4*p-h0wNGju z;FN-5$<0+)KJCf}T=@!6X{mXFQ)4KWdec|N@9Qk5E}~ds^R6q8xbmPYp9Cr?HK#ar zZ4Y(Pr>=AAwt!+io1eJys4MSx-l@@3LC+U_uz!vYQA#&mO;se6{fdEAo{4FL@a0F#rGn literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/cache.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/cache.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..0f6469c0f44a66632335de6931539e8c8536609b GIT binary patch literal 9787 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 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/check.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/check.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..ad15e7fff75c9b56e8c2aabb8b7f5e602e8813ad GIT binary patch literal 2166 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 R)%SJZp?l$fbMUbz`!8RfE=d3Y literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/configuration.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/configuration.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..289beaacbb7c185ac78144a155c4985987cceb8f GIT binary patch literal 13288 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 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/download.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/download.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..7c040b1dcb12ffc05875c76801c0e888d769e48c GIT binary patch literal 7665 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 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/hash.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/hash.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..5a03e9c124389e20b102d3979202ca56a9d0eddf GIT binary patch literal 3059 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 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/index.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/index.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..d364eb920f3d0f09eef0a883f4237ee87993d950 GIT binary patch literal 6796 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 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/inspect.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/inspect.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..df7a5ff5ddd66b69d1246bf794bbbc19e0011a26 GIT binary patch literal 4051 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 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/install.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/install.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..17283ba7f000151ffd3e09bb8af785768e583758 GIT binary patch literal 28989 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 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/list.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/list.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..c60f10ff9087fa76540a75e12f50d81c549ff896 GIT binary patch literal 15732 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 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/show.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/show.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..82f5445bc954b271cff2a6e15c533737fe66af82 GIT binary patch literal 9804 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 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/commands/cache.py b/.venv/lib/python3.12/site-packages/pip/_internal/commands/cache.py new file mode 100644 index 00000000..32833615 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_internal/commands/cache.py @@ -0,0 +1,225 @@ +import os +import textwrap +from optparse import Values +from typing import Any, List + +from pip._internal.cli.base_command import Command +from pip._internal.cli.status_codes import ERROR, SUCCESS +from pip._internal.exceptions import CommandError, PipError +from pip._internal.utils import filesystem +from pip._internal.utils.logging import getLogger + +logger = getLogger(__name__) + + +class CacheCommand(Command): + """ + Inspect and manage pip's wheel cache. + + Subcommands: + + - dir: Show the cache directory. + - info: Show information about the cache. + - list: List filenames of packages stored in the cache. + - remove: Remove one or more package from the cache. + - purge: Remove all items from the cache. + + ```` can be a glob expression or a package name. + """ + + ignore_require_venv = True + usage = """ + %prog dir + %prog info + %prog list [] [--format=[human, abspath]] + %prog remove + %prog purge + """ + + def add_options(self) -> None: + self.cmd_opts.add_option( + "--format", + action="store", + dest="list_format", + default="human", + choices=("human", "abspath"), + help="Select the output format among: human (default) or abspath", + ) + + self.parser.insert_option_group(0, self.cmd_opts) + + def run(self, options: Values, args: List[str]) -> int: + handlers = { + "dir": self.get_cache_dir, + "info": self.get_cache_info, + "list": self.list_cache_items, + "remove": self.remove_cache_items, + "purge": self.purge_cache, + } + + if not options.cache_dir: + logger.error("pip cache commands can not function since cache is disabled.") + return ERROR + + # Determine action + if not args or args[0] not in handlers: + logger.error( + "Need an action (%s) to perform.", + ", ".join(sorted(handlers)), + ) + return ERROR + + action = args[0] + + # Error handling happens here, not in the action-handlers. + try: + handlers[action](options, args[1:]) + except PipError as e: + logger.error(e.args[0]) + return ERROR + + return SUCCESS + + def get_cache_dir(self, options: Values, args: List[Any]) -> None: + if args: + raise CommandError("Too many arguments") + + logger.info(options.cache_dir) + + def get_cache_info(self, options: Values, args: List[Any]) -> None: + if args: + raise CommandError("Too many arguments") + + num_http_files = len(self._find_http_files(options)) + num_packages = len(self._find_wheels(options, "*")) + + http_cache_location = self._cache_dir(options, "http-v2") + old_http_cache_location = self._cache_dir(options, "http") + wheels_cache_location = self._cache_dir(options, "wheels") + http_cache_size = filesystem.format_size( + filesystem.directory_size(http_cache_location) + + filesystem.directory_size(old_http_cache_location) + ) + wheels_cache_size = filesystem.format_directory_size(wheels_cache_location) + + message = ( + textwrap.dedent( + """ + Package index page cache location (pip v23.3+): {http_cache_location} + Package index page cache location (older pips): {old_http_cache_location} + Package index page cache size: {http_cache_size} + Number of HTTP files: {num_http_files} + Locally built wheels location: {wheels_cache_location} + Locally built wheels size: {wheels_cache_size} + Number of locally built wheels: {package_count} + """ # noqa: E501 + ) + .format( + http_cache_location=http_cache_location, + old_http_cache_location=old_http_cache_location, + http_cache_size=http_cache_size, + num_http_files=num_http_files, + wheels_cache_location=wheels_cache_location, + package_count=num_packages, + wheels_cache_size=wheels_cache_size, + ) + .strip() + ) + + logger.info(message) + + def list_cache_items(self, options: Values, args: List[Any]) -> None: + if len(args) > 1: + raise CommandError("Too many arguments") + + if args: + pattern = args[0] + else: + pattern = "*" + + files = self._find_wheels(options, pattern) + if options.list_format == "human": + self.format_for_human(files) + else: + self.format_for_abspath(files) + + def format_for_human(self, files: List[str]) -> None: + if not files: + logger.info("No locally built wheels cached.") + return + + results = [] + for filename in files: + wheel = os.path.basename(filename) + size = filesystem.format_file_size(filename) + results.append(f" - {wheel} ({size})") + logger.info("Cache contents:\n") + logger.info("\n".join(sorted(results))) + + def format_for_abspath(self, files: List[str]) -> None: + if files: + logger.info("\n".join(sorted(files))) + + def remove_cache_items(self, options: Values, args: List[Any]) -> None: + if len(args) > 1: + raise CommandError("Too many arguments") + + if not args: + raise CommandError("Please provide a pattern") + + files = self._find_wheels(options, args[0]) + + no_matching_msg = "No matching packages" + if args[0] == "*": + # Only fetch http files if no specific pattern given + files += self._find_http_files(options) + else: + # Add the pattern to the log message + no_matching_msg += f' for pattern "{args[0]}"' + + if not files: + logger.warning(no_matching_msg) + + for filename in files: + os.unlink(filename) + logger.verbose("Removed %s", filename) + logger.info("Files removed: %s", len(files)) + + def purge_cache(self, options: Values, args: List[Any]) -> None: + if args: + raise CommandError("Too many arguments") + + return self.remove_cache_items(options, ["*"]) + + def _cache_dir(self, options: Values, subdir: str) -> str: + return os.path.join(options.cache_dir, subdir) + + def _find_http_files(self, options: Values) -> List[str]: + old_http_dir = self._cache_dir(options, "http") + new_http_dir = self._cache_dir(options, "http-v2") + return filesystem.find_files(old_http_dir, "*") + filesystem.find_files( + new_http_dir, "*" + ) + + def _find_wheels(self, options: Values, pattern: str) -> List[str]: + wheel_dir = self._cache_dir(options, "wheels") + + # The wheel filename format, as specified in PEP 427, is: + # {distribution}-{version}(-{build})?-{python}-{abi}-{platform}.whl + # + # Additionally, non-alphanumeric values in the distribution are + # normalized to underscores (_), meaning hyphens can never occur + # before `-{version}`. + # + # Given that information: + # - If the pattern we're given contains a hyphen (-), the user is + # providing at least the version. Thus, we can just append `*.whl` + # to match the rest of it. + # - If the pattern we're given doesn't contain a hyphen (-), the + # user is only providing the name. Thus, we append `-*.whl` to + # match the hyphen before the version, followed by anything else. + # + # PEP 427: https://www.python.org/dev/peps/pep-0427/ + pattern = pattern + ("*.whl" if "-" in pattern else "-*.whl") + + return filesystem.find_files(wheel_dir, pattern) diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/commands/check.py b/.venv/lib/python3.12/site-packages/pip/_internal/commands/check.py new file mode 100644 index 00000000..5efd0a34 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_internal/commands/check.py @@ -0,0 +1,54 @@ +import logging +from optparse import Values +from typing import List + +from pip._internal.cli.base_command import Command +from pip._internal.cli.status_codes import ERROR, SUCCESS +from pip._internal.operations.check import ( + check_package_set, + create_package_set_from_installed, + warn_legacy_versions_and_specifiers, +) +from pip._internal.utils.misc import write_output + +logger = logging.getLogger(__name__) + + +class CheckCommand(Command): + """Verify installed packages have compatible dependencies.""" + + usage = """ + %prog [options]""" + + def run(self, options: Values, args: List[str]) -> int: + package_set, parsing_probs = create_package_set_from_installed() + warn_legacy_versions_and_specifiers(package_set) + missing, conflicting = check_package_set(package_set) + + for project_name in missing: + version = package_set[project_name].version + for dependency in missing[project_name]: + write_output( + "%s %s requires %s, which is not installed.", + project_name, + version, + dependency[0], + ) + + for project_name in conflicting: + version = package_set[project_name].version + for dep_name, dep_version, req in conflicting[project_name]: + write_output( + "%s %s has requirement %s, but you have %s %s.", + project_name, + version, + req, + dep_name, + dep_version, + ) + + if missing or conflicting or parsing_probs: + return ERROR + else: + write_output("No broken requirements found.") + return SUCCESS diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/commands/completion.py b/.venv/lib/python3.12/site-packages/pip/_internal/commands/completion.py new file mode 100644 index 00000000..9e89e279 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_internal/commands/completion.py @@ -0,0 +1,130 @@ +import sys +import textwrap +from optparse import Values +from typing import List + +from pip._internal.cli.base_command import Command +from pip._internal.cli.status_codes import SUCCESS +from pip._internal.utils.misc import get_prog + +BASE_COMPLETION = """ +# pip {shell} completion start{script}# pip {shell} completion end +""" + +COMPLETION_SCRIPTS = { + "bash": """ + _pip_completion() + {{ + COMPREPLY=( $( COMP_WORDS="${{COMP_WORDS[*]}}" \\ + COMP_CWORD=$COMP_CWORD \\ + PIP_AUTO_COMPLETE=1 $1 2>/dev/null ) ) + }} + complete -o default -F _pip_completion {prog} + """, + "zsh": """ + #compdef -P pip[0-9.]# + __pip() {{ + compadd $( COMP_WORDS="$words[*]" \\ + COMP_CWORD=$((CURRENT-1)) \\ + PIP_AUTO_COMPLETE=1 $words[1] 2>/dev/null ) + }} + if [[ $zsh_eval_context[-1] == loadautofunc ]]; then + # autoload from fpath, call function directly + __pip "$@" + else + # eval/source/. command, register function for later + compdef __pip -P 'pip[0-9.]#' + fi + """, + "fish": """ + function __fish_complete_pip + set -lx COMP_WORDS (commandline -o) "" + set -lx COMP_CWORD ( \\ + math (contains -i -- (commandline -t) $COMP_WORDS)-1 \\ + ) + set -lx PIP_AUTO_COMPLETE 1 + string split \\ -- (eval $COMP_WORDS[1]) + end + complete -fa "(__fish_complete_pip)" -c {prog} + """, + "powershell": """ + if ((Test-Path Function:\\TabExpansion) -and -not ` + (Test-Path Function:\\_pip_completeBackup)) {{ + Rename-Item Function:\\TabExpansion _pip_completeBackup + }} + function TabExpansion($line, $lastWord) {{ + $lastBlock = [regex]::Split($line, '[|;]')[-1].TrimStart() + if ($lastBlock.StartsWith("{prog} ")) {{ + $Env:COMP_WORDS=$lastBlock + $Env:COMP_CWORD=$lastBlock.Split().Length - 1 + $Env:PIP_AUTO_COMPLETE=1 + (& {prog}).Split() + Remove-Item Env:COMP_WORDS + Remove-Item Env:COMP_CWORD + Remove-Item Env:PIP_AUTO_COMPLETE + }} + elseif (Test-Path Function:\\_pip_completeBackup) {{ + # Fall back on existing tab expansion + _pip_completeBackup $line $lastWord + }} + }} + """, +} + + +class CompletionCommand(Command): + """A helper command to be used for command completion.""" + + ignore_require_venv = True + + def add_options(self) -> None: + self.cmd_opts.add_option( + "--bash", + "-b", + action="store_const", + const="bash", + dest="shell", + help="Emit completion code for bash", + ) + self.cmd_opts.add_option( + "--zsh", + "-z", + action="store_const", + const="zsh", + dest="shell", + help="Emit completion code for zsh", + ) + self.cmd_opts.add_option( + "--fish", + "-f", + action="store_const", + const="fish", + dest="shell", + help="Emit completion code for fish", + ) + self.cmd_opts.add_option( + "--powershell", + "-p", + action="store_const", + const="powershell", + dest="shell", + help="Emit completion code for powershell", + ) + + self.parser.insert_option_group(0, self.cmd_opts) + + def run(self, options: Values, args: List[str]) -> int: + """Prints the completion code of the given shell""" + shells = COMPLETION_SCRIPTS.keys() + shell_options = ["--" + shell for shell in sorted(shells)] + if options.shell in shells: + script = textwrap.dedent( + COMPLETION_SCRIPTS.get(options.shell, "").format(prog=get_prog()) + ) + print(BASE_COMPLETION.format(script=script, shell=options.shell)) + return SUCCESS + else: + sys.stderr.write( + "ERROR: You must pass {}\n".format(" or ".join(shell_options)) + ) + return SUCCESS diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/commands/configuration.py b/.venv/lib/python3.12/site-packages/pip/_internal/commands/configuration.py new file mode 100644 index 00000000..1a1dc6b6 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_internal/commands/configuration.py @@ -0,0 +1,280 @@ +import logging +import os +import subprocess +from optparse import Values +from typing import Any, List, Optional + +from pip._internal.cli.base_command import Command +from pip._internal.cli.status_codes import ERROR, SUCCESS +from pip._internal.configuration import ( + Configuration, + Kind, + get_configuration_files, + kinds, +) +from pip._internal.exceptions import PipError +from pip._internal.utils.logging import indent_log +from pip._internal.utils.misc import get_prog, write_output + +logger = logging.getLogger(__name__) + + +class ConfigurationCommand(Command): + """ + Manage local and global configuration. + + Subcommands: + + - list: List the active configuration (or from the file specified) + - edit: Edit the configuration file in an editor + - get: Get the value associated with command.option + - set: Set the command.option=value + - unset: Unset the value associated with command.option + - debug: List the configuration files and values defined under them + + Configuration keys should be dot separated command and option name, + with the special prefix "global" affecting any command. For example, + "pip config set global.index-url https://example.org/" would configure + the index url for all commands, but "pip config set download.timeout 10" + would configure a 10 second timeout only for "pip download" commands. + + If none of --user, --global and --site are passed, a virtual + environment configuration file is used if one is active and the file + exists. Otherwise, all modifications happen to the user file by + default. + """ + + ignore_require_venv = True + usage = """ + %prog [] list + %prog [] [--editor ] edit + + %prog [] get command.option + %prog [] set command.option value + %prog [] unset command.option + %prog [] debug + """ + + def add_options(self) -> None: + self.cmd_opts.add_option( + "--editor", + dest="editor", + action="store", + default=None, + help=( + "Editor to use to edit the file. Uses VISUAL or EDITOR " + "environment variables if not provided." + ), + ) + + self.cmd_opts.add_option( + "--global", + dest="global_file", + action="store_true", + default=False, + help="Use the system-wide configuration file only", + ) + + self.cmd_opts.add_option( + "--user", + dest="user_file", + action="store_true", + default=False, + help="Use the user configuration file only", + ) + + self.cmd_opts.add_option( + "--site", + dest="site_file", + action="store_true", + default=False, + help="Use the current environment configuration file only", + ) + + self.parser.insert_option_group(0, self.cmd_opts) + + def run(self, options: Values, args: List[str]) -> int: + handlers = { + "list": self.list_values, + "edit": self.open_in_editor, + "get": self.get_name, + "set": self.set_name_value, + "unset": self.unset_name, + "debug": self.list_config_values, + } + + # Determine action + if not args or args[0] not in handlers: + logger.error( + "Need an action (%s) to perform.", + ", ".join(sorted(handlers)), + ) + return ERROR + + action = args[0] + + # Determine which configuration files are to be loaded + # Depends on whether the command is modifying. + try: + load_only = self._determine_file( + options, need_value=(action in ["get", "set", "unset", "edit"]) + ) + except PipError as e: + logger.error(e.args[0]) + return ERROR + + # Load a new configuration + self.configuration = Configuration( + isolated=options.isolated_mode, load_only=load_only + ) + self.configuration.load() + + # Error handling happens here, not in the action-handlers. + try: + handlers[action](options, args[1:]) + except PipError as e: + logger.error(e.args[0]) + return ERROR + + return SUCCESS + + def _determine_file(self, options: Values, need_value: bool) -> Optional[Kind]: + file_options = [ + key + for key, value in ( + (kinds.USER, options.user_file), + (kinds.GLOBAL, options.global_file), + (kinds.SITE, options.site_file), + ) + if value + ] + + if not file_options: + if not need_value: + return None + # Default to user, unless there's a site file. + elif any( + os.path.exists(site_config_file) + for site_config_file in get_configuration_files()[kinds.SITE] + ): + return kinds.SITE + else: + return kinds.USER + elif len(file_options) == 1: + return file_options[0] + + raise PipError( + "Need exactly one file to operate upon " + "(--user, --site, --global) to perform." + ) + + def list_values(self, options: Values, args: List[str]) -> None: + self._get_n_args(args, "list", n=0) + + for key, value in sorted(self.configuration.items()): + write_output("%s=%r", key, value) + + def get_name(self, options: Values, args: List[str]) -> None: + key = self._get_n_args(args, "get [name]", n=1) + value = self.configuration.get_value(key) + + write_output("%s", value) + + def set_name_value(self, options: Values, args: List[str]) -> None: + key, value = self._get_n_args(args, "set [name] [value]", n=2) + self.configuration.set_value(key, value) + + self._save_configuration() + + def unset_name(self, options: Values, args: List[str]) -> None: + key = self._get_n_args(args, "unset [name]", n=1) + self.configuration.unset_value(key) + + self._save_configuration() + + def list_config_values(self, options: Values, args: List[str]) -> None: + """List config key-value pairs across different config files""" + self._get_n_args(args, "debug", n=0) + + self.print_env_var_values() + # Iterate over config files and print if they exist, and the + # key-value pairs present in them if they do + for variant, files in sorted(self.configuration.iter_config_files()): + write_output("%s:", variant) + for fname in files: + with indent_log(): + file_exists = os.path.exists(fname) + write_output("%s, exists: %r", fname, file_exists) + if file_exists: + self.print_config_file_values(variant) + + def print_config_file_values(self, variant: Kind) -> None: + """Get key-value pairs from the file of a variant""" + for name, value in self.configuration.get_values_in_config(variant).items(): + with indent_log(): + write_output("%s: %s", name, value) + + def print_env_var_values(self) -> None: + """Get key-values pairs present as environment variables""" + write_output("%s:", "env_var") + with indent_log(): + for key, value in sorted(self.configuration.get_environ_vars()): + env_var = f"PIP_{key.upper()}" + write_output("%s=%r", env_var, value) + + def open_in_editor(self, options: Values, args: List[str]) -> None: + editor = self._determine_editor(options) + + fname = self.configuration.get_file_to_edit() + if fname is None: + raise PipError("Could not determine appropriate file.") + elif '"' in fname: + # This shouldn't happen, unless we see a username like that. + # If that happens, we'd appreciate a pull request fixing this. + raise PipError( + f'Can not open an editor for a file name containing "\n{fname}' + ) + + try: + subprocess.check_call(f'{editor} "{fname}"', shell=True) + except FileNotFoundError as e: + if not e.filename: + e.filename = editor + raise + except subprocess.CalledProcessError as e: + raise PipError(f"Editor Subprocess exited with exit code {e.returncode}") + + def _get_n_args(self, args: List[str], example: str, n: int) -> Any: + """Helper to make sure the command got the right number of arguments""" + if len(args) != n: + msg = ( + f"Got unexpected number of arguments, expected {n}. " + f'(example: "{get_prog()} config {example}")' + ) + raise PipError(msg) + + if n == 1: + return args[0] + else: + return args + + def _save_configuration(self) -> None: + # We successfully ran a modifying command. Need to save the + # configuration. + try: + self.configuration.save() + except Exception: + logger.exception( + "Unable to save configuration. Please report this as a bug." + ) + raise PipError("Internal Error.") + + def _determine_editor(self, options: Values) -> str: + if options.editor is not None: + return options.editor + elif "VISUAL" in os.environ: + return os.environ["VISUAL"] + elif "EDITOR" in os.environ: + return os.environ["EDITOR"] + else: + raise PipError("Could not determine editor to use.") diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/commands/debug.py b/.venv/lib/python3.12/site-packages/pip/_internal/commands/debug.py new file mode 100644 index 00000000..7e5271c9 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_internal/commands/debug.py @@ -0,0 +1,201 @@ +import importlib.resources +import locale +import logging +import os +import sys +from optparse import Values +from types import ModuleType +from typing import Any, Dict, List, Optional + +import pip._vendor +from pip._vendor.certifi import where +from pip._vendor.packaging.version import parse as parse_version + +from pip._internal.cli import cmdoptions +from pip._internal.cli.base_command import Command +from pip._internal.cli.cmdoptions import make_target_python +from pip._internal.cli.status_codes import SUCCESS +from pip._internal.configuration import Configuration +from pip._internal.metadata import get_environment +from pip._internal.utils.logging import indent_log +from pip._internal.utils.misc import get_pip_version + +logger = logging.getLogger(__name__) + + +def show_value(name: str, value: Any) -> None: + logger.info("%s: %s", name, value) + + +def show_sys_implementation() -> None: + logger.info("sys.implementation:") + implementation_name = sys.implementation.name + with indent_log(): + show_value("name", implementation_name) + + +def create_vendor_txt_map() -> Dict[str, str]: + with importlib.resources.open_text("pip._vendor", "vendor.txt") as f: + # Purge non version specifying lines. + # Also, remove any space prefix or suffixes (including comments). + lines = [ + line.strip().split(" ", 1)[0] for line in f.readlines() if "==" in line + ] + + # Transform into "module" -> version dict. + return dict(line.split("==", 1) for line in lines) + + +def get_module_from_module_name(module_name: str) -> Optional[ModuleType]: + # Module name can be uppercase in vendor.txt for some reason... + module_name = module_name.lower().replace("-", "_") + # PATCH: setuptools is actually only pkg_resources. + if module_name == "setuptools": + module_name = "pkg_resources" + + try: + __import__(f"pip._vendor.{module_name}", globals(), locals(), level=0) + return getattr(pip._vendor, module_name) + except ImportError: + # We allow 'truststore' to fail to import due + # to being unavailable on Python 3.9 and earlier. + if module_name == "truststore" and sys.version_info < (3, 10): + return None + raise + + +def get_vendor_version_from_module(module_name: str) -> Optional[str]: + module = get_module_from_module_name(module_name) + version = getattr(module, "__version__", None) + + if module and not version: + # Try to find version in debundled module info. + assert module.__file__ is not None + env = get_environment([os.path.dirname(module.__file__)]) + dist = env.get_distribution(module_name) + if dist: + version = str(dist.version) + + return version + + +def show_actual_vendor_versions(vendor_txt_versions: Dict[str, str]) -> None: + """Log the actual version and print extra info if there is + a conflict or if the actual version could not be imported. + """ + for module_name, expected_version in vendor_txt_versions.items(): + extra_message = "" + actual_version = get_vendor_version_from_module(module_name) + if not actual_version: + extra_message = ( + " (Unable to locate actual module version, using" + " vendor.txt specified version)" + ) + actual_version = expected_version + elif parse_version(actual_version) != parse_version(expected_version): + extra_message = ( + " (CONFLICT: vendor.txt suggests version should" + f" be {expected_version})" + ) + logger.info("%s==%s%s", module_name, actual_version, extra_message) + + +def show_vendor_versions() -> None: + logger.info("vendored library versions:") + + vendor_txt_versions = create_vendor_txt_map() + with indent_log(): + show_actual_vendor_versions(vendor_txt_versions) + + +def show_tags(options: Values) -> None: + tag_limit = 10 + + target_python = make_target_python(options) + tags = target_python.get_sorted_tags() + + # Display the target options that were explicitly provided. + formatted_target = target_python.format_given() + suffix = "" + if formatted_target: + suffix = f" (target: {formatted_target})" + + msg = f"Compatible tags: {len(tags)}{suffix}" + logger.info(msg) + + if options.verbose < 1 and len(tags) > tag_limit: + tags_limited = True + tags = tags[:tag_limit] + else: + tags_limited = False + + with indent_log(): + for tag in tags: + logger.info(str(tag)) + + if tags_limited: + msg = f"...\n[First {tag_limit} tags shown. Pass --verbose to show all.]" + logger.info(msg) + + +def ca_bundle_info(config: Configuration) -> str: + levels = {key.split(".", 1)[0] for key, _ in config.items()} + if not levels: + return "Not specified" + + levels_that_override_global = ["install", "wheel", "download"] + global_overriding_level = [ + level for level in levels if level in levels_that_override_global + ] + if not global_overriding_level: + return "global" + + if "global" in levels: + levels.remove("global") + return ", ".join(levels) + + +class DebugCommand(Command): + """ + Display debug information. + """ + + usage = """ + %prog """ + ignore_require_venv = True + + def add_options(self) -> None: + cmdoptions.add_target_python_options(self.cmd_opts) + self.parser.insert_option_group(0, self.cmd_opts) + self.parser.config.load() + + def run(self, options: Values, args: List[str]) -> int: + logger.warning( + "This command is only meant for debugging. " + "Do not use this with automation for parsing and getting these " + "details, since the output and options of this command may " + "change without notice." + ) + show_value("pip version", get_pip_version()) + show_value("sys.version", sys.version) + show_value("sys.executable", sys.executable) + show_value("sys.getdefaultencoding", sys.getdefaultencoding()) + show_value("sys.getfilesystemencoding", sys.getfilesystemencoding()) + show_value( + "locale.getpreferredencoding", + locale.getpreferredencoding(), + ) + show_value("sys.platform", sys.platform) + show_sys_implementation() + + show_value("'cert' config value", ca_bundle_info(self.parser.config)) + show_value("REQUESTS_CA_BUNDLE", os.environ.get("REQUESTS_CA_BUNDLE")) + show_value("CURL_CA_BUNDLE", os.environ.get("CURL_CA_BUNDLE")) + show_value("pip._vendor.certifi.where()", where()) + show_value("pip._vendor.DEBUNDLED", pip._vendor.DEBUNDLED) + + show_vendor_versions() + + show_tags(options) + + return SUCCESS diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/commands/download.py b/.venv/lib/python3.12/site-packages/pip/_internal/commands/download.py new file mode 100644 index 00000000..54247a78 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_internal/commands/download.py @@ -0,0 +1,147 @@ +import logging +import os +from optparse import Values +from typing import List + +from pip._internal.cli import cmdoptions +from pip._internal.cli.cmdoptions import make_target_python +from pip._internal.cli.req_command import RequirementCommand, with_cleanup +from pip._internal.cli.status_codes import SUCCESS +from pip._internal.operations.build.build_tracker import get_build_tracker +from pip._internal.req.req_install import check_legacy_setup_py_options +from pip._internal.utils.misc import ensure_dir, normalize_path, write_output +from pip._internal.utils.temp_dir import TempDirectory + +logger = logging.getLogger(__name__) + + +class DownloadCommand(RequirementCommand): + """ + Download packages from: + + - PyPI (and other indexes) using requirement specifiers. + - VCS project urls. + - Local project directories. + - Local or remote source archives. + + pip also supports downloading from "requirements files", which provide + an easy way to specify a whole environment to be downloaded. + """ + + usage = """ + %prog [options] [package-index-options] ... + %prog [options] -r [package-index-options] ... + %prog [options] ... + %prog [options] ... + %prog [options] ...""" + + def add_options(self) -> None: + self.cmd_opts.add_option(cmdoptions.constraints()) + self.cmd_opts.add_option(cmdoptions.requirements()) + self.cmd_opts.add_option(cmdoptions.no_deps()) + self.cmd_opts.add_option(cmdoptions.global_options()) + self.cmd_opts.add_option(cmdoptions.no_binary()) + self.cmd_opts.add_option(cmdoptions.only_binary()) + self.cmd_opts.add_option(cmdoptions.prefer_binary()) + self.cmd_opts.add_option(cmdoptions.src()) + self.cmd_opts.add_option(cmdoptions.pre()) + self.cmd_opts.add_option(cmdoptions.require_hashes()) + self.cmd_opts.add_option(cmdoptions.progress_bar()) + self.cmd_opts.add_option(cmdoptions.no_build_isolation()) + self.cmd_opts.add_option(cmdoptions.use_pep517()) + self.cmd_opts.add_option(cmdoptions.no_use_pep517()) + self.cmd_opts.add_option(cmdoptions.check_build_deps()) + self.cmd_opts.add_option(cmdoptions.ignore_requires_python()) + + self.cmd_opts.add_option( + "-d", + "--dest", + "--destination-dir", + "--destination-directory", + dest="download_dir", + metavar="dir", + default=os.curdir, + help="Download packages into .", + ) + + cmdoptions.add_target_python_options(self.cmd_opts) + + index_opts = cmdoptions.make_option_group( + cmdoptions.index_group, + self.parser, + ) + + self.parser.insert_option_group(0, index_opts) + self.parser.insert_option_group(0, self.cmd_opts) + + @with_cleanup + def run(self, options: Values, args: List[str]) -> int: + options.ignore_installed = True + # editable doesn't really make sense for `pip download`, but the bowels + # of the RequirementSet code require that property. + options.editables = [] + + cmdoptions.check_dist_restriction(options) + + options.download_dir = normalize_path(options.download_dir) + ensure_dir(options.download_dir) + + session = self.get_default_session(options) + + target_python = make_target_python(options) + finder = self._build_package_finder( + options=options, + session=session, + target_python=target_python, + ignore_requires_python=options.ignore_requires_python, + ) + + build_tracker = self.enter_context(get_build_tracker()) + + directory = TempDirectory( + delete=not options.no_clean, + kind="download", + globally_managed=True, + ) + + reqs = self.get_requirements(args, options, finder, session) + check_legacy_setup_py_options(options, reqs) + + preparer = self.make_requirement_preparer( + temp_build_dir=directory, + options=options, + build_tracker=build_tracker, + session=session, + finder=finder, + download_dir=options.download_dir, + use_user_site=False, + verbosity=self.verbosity, + ) + + resolver = self.make_resolver( + preparer=preparer, + finder=finder, + options=options, + ignore_requires_python=options.ignore_requires_python, + use_pep517=options.use_pep517, + py_version_info=options.python_version, + ) + + self.trace_basic_info(finder) + + requirement_set = resolver.resolve(reqs, check_supported_wheels=True) + + downloaded: List[str] = [] + for req in requirement_set.requirements.values(): + if req.satisfied_by is None: + assert req.name is not None + preparer.save_linked_requirement(req) + downloaded.append(req.name) + + preparer.prepare_linked_requirements_more(requirement_set.requirements.values()) + requirement_set.warn_legacy_versions_and_specifiers() + + if downloaded: + write_output("Successfully downloaded %s", " ".join(downloaded)) + + return SUCCESS diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/commands/freeze.py b/.venv/lib/python3.12/site-packages/pip/_internal/commands/freeze.py new file mode 100644 index 00000000..e64cb3d4 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_internal/commands/freeze.py @@ -0,0 +1,109 @@ +import sys +from optparse import Values +from typing import AbstractSet, List + +from pip._internal.cli import cmdoptions +from pip._internal.cli.base_command import Command +from pip._internal.cli.status_codes import SUCCESS +from pip._internal.operations.freeze import freeze +from pip._internal.utils.compat import stdlib_pkgs + + +def _should_suppress_build_backends() -> bool: + return sys.version_info < (3, 12) + + +def _dev_pkgs() -> AbstractSet[str]: + pkgs = {"pip"} + + if _should_suppress_build_backends(): + pkgs |= {"setuptools", "distribute", "wheel"} + pkgs |= {"setuptools", "distribute", "wheel", "pkg-resources"} + + return pkgs + + +class FreezeCommand(Command): + """ + Output installed packages in requirements format. + + packages are listed in a case-insensitive sorted order. + """ + + usage = """ + %prog [options]""" + log_streams = ("ext://sys.stderr", "ext://sys.stderr") + + def add_options(self) -> None: + self.cmd_opts.add_option( + "-r", + "--requirement", + dest="requirements", + action="append", + default=[], + metavar="file", + help=( + "Use the order in the given requirements file and its " + "comments when generating output. This option can be " + "used multiple times." + ), + ) + self.cmd_opts.add_option( + "-l", + "--local", + dest="local", + action="store_true", + default=False, + help=( + "If in a virtualenv that has global access, do not output " + "globally-installed packages." + ), + ) + self.cmd_opts.add_option( + "--user", + dest="user", + action="store_true", + default=False, + help="Only output packages installed in user-site.", + ) + self.cmd_opts.add_option(cmdoptions.list_path()) + self.cmd_opts.add_option( + "--all", + dest="freeze_all", + action="store_true", + help=( + "Do not skip these packages in the output:" + " {}".format(", ".join(_dev_pkgs())) + ), + ) + self.cmd_opts.add_option( + "--exclude-editable", + dest="exclude_editable", + action="store_true", + help="Exclude editable package from output.", + ) + self.cmd_opts.add_option(cmdoptions.list_exclude()) + + self.parser.insert_option_group(0, self.cmd_opts) + + def run(self, options: Values, args: List[str]) -> int: + skip = set(stdlib_pkgs) + if not options.freeze_all: + skip.update(_dev_pkgs()) + + if options.excludes: + skip.update(options.excludes) + + cmdoptions.check_list_path_option(options) + + for line in freeze( + requirement=options.requirements, + local_only=options.local, + user_only=options.user, + paths=options.path, + isolated=options.isolated_mode, + skip=skip, + exclude_editable=options.exclude_editable, + ): + sys.stdout.write(line + "\n") + return SUCCESS diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/commands/hash.py b/.venv/lib/python3.12/site-packages/pip/_internal/commands/hash.py new file mode 100644 index 00000000..042dac81 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_internal/commands/hash.py @@ -0,0 +1,59 @@ +import hashlib +import logging +import sys +from optparse import Values +from typing import List + +from pip._internal.cli.base_command import Command +from pip._internal.cli.status_codes import ERROR, SUCCESS +from pip._internal.utils.hashes import FAVORITE_HASH, STRONG_HASHES +from pip._internal.utils.misc import read_chunks, write_output + +logger = logging.getLogger(__name__) + + +class HashCommand(Command): + """ + Compute a hash of a local package archive. + + These can be used with --hash in a requirements file to do repeatable + installs. + """ + + usage = "%prog [options] ..." + ignore_require_venv = True + + def add_options(self) -> None: + self.cmd_opts.add_option( + "-a", + "--algorithm", + dest="algorithm", + choices=STRONG_HASHES, + action="store", + default=FAVORITE_HASH, + help="The hash algorithm to use: one of {}".format( + ", ".join(STRONG_HASHES) + ), + ) + self.parser.insert_option_group(0, self.cmd_opts) + + def run(self, options: Values, args: List[str]) -> int: + if not args: + self.parser.print_usage(sys.stderr) + return ERROR + + algorithm = options.algorithm + for path in args: + write_output( + "%s:\n--hash=%s:%s", path, algorithm, _hash_of_file(path, algorithm) + ) + return SUCCESS + + +def _hash_of_file(path: str, algorithm: str) -> str: + """Return the hash digest of a file.""" + with open(path, "rb") as archive: + hash = hashlib.new(algorithm) + for chunk in read_chunks(archive): + hash.update(chunk) + return hash.hexdigest() diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/commands/help.py b/.venv/lib/python3.12/site-packages/pip/_internal/commands/help.py new file mode 100644 index 00000000..62066318 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_internal/commands/help.py @@ -0,0 +1,41 @@ +from optparse import Values +from typing import List + +from pip._internal.cli.base_command import Command +from pip._internal.cli.status_codes import SUCCESS +from pip._internal.exceptions import CommandError + + +class HelpCommand(Command): + """Show help for commands""" + + usage = """ + %prog """ + ignore_require_venv = True + + def run(self, options: Values, args: List[str]) -> int: + from pip._internal.commands import ( + commands_dict, + create_command, + get_similar_commands, + ) + + try: + # 'pip help' with no args is handled by pip.__init__.parseopt() + cmd_name = args[0] # the command we need help for + except IndexError: + return SUCCESS + + if cmd_name not in commands_dict: + guess = get_similar_commands(cmd_name) + + msg = [f'unknown command "{cmd_name}"'] + if guess: + msg.append(f'maybe you meant "{guess}"') + + raise CommandError(" - ".join(msg)) + + command = create_command(cmd_name) + command.parser.print_help() + + return SUCCESS diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/commands/index.py b/.venv/lib/python3.12/site-packages/pip/_internal/commands/index.py new file mode 100644 index 00000000..f55e9e49 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_internal/commands/index.py @@ -0,0 +1,139 @@ +import logging +from optparse import Values +from typing import Any, Iterable, List, Optional, Union + +from pip._vendor.packaging.version import LegacyVersion, Version + +from pip._internal.cli import cmdoptions +from pip._internal.cli.req_command import IndexGroupCommand +from pip._internal.cli.status_codes import ERROR, SUCCESS +from pip._internal.commands.search import print_dist_installation_info +from pip._internal.exceptions import CommandError, DistributionNotFound, PipError +from pip._internal.index.collector import LinkCollector +from pip._internal.index.package_finder import PackageFinder +from pip._internal.models.selection_prefs import SelectionPreferences +from pip._internal.models.target_python import TargetPython +from pip._internal.network.session import PipSession +from pip._internal.utils.misc import write_output + +logger = logging.getLogger(__name__) + + +class IndexCommand(IndexGroupCommand): + """ + Inspect information available from package indexes. + """ + + ignore_require_venv = True + usage = """ + %prog versions + """ + + def add_options(self) -> None: + cmdoptions.add_target_python_options(self.cmd_opts) + + self.cmd_opts.add_option(cmdoptions.ignore_requires_python()) + self.cmd_opts.add_option(cmdoptions.pre()) + self.cmd_opts.add_option(cmdoptions.no_binary()) + self.cmd_opts.add_option(cmdoptions.only_binary()) + + index_opts = cmdoptions.make_option_group( + cmdoptions.index_group, + self.parser, + ) + + self.parser.insert_option_group(0, index_opts) + self.parser.insert_option_group(0, self.cmd_opts) + + def run(self, options: Values, args: List[str]) -> int: + handlers = { + "versions": self.get_available_package_versions, + } + + logger.warning( + "pip index is currently an experimental command. " + "It may be removed/changed in a future release " + "without prior warning." + ) + + # Determine action + if not args or args[0] not in handlers: + logger.error( + "Need an action (%s) to perform.", + ", ".join(sorted(handlers)), + ) + return ERROR + + action = args[0] + + # Error handling happens here, not in the action-handlers. + try: + handlers[action](options, args[1:]) + except PipError as e: + logger.error(e.args[0]) + return ERROR + + return SUCCESS + + def _build_package_finder( + self, + options: Values, + session: PipSession, + target_python: Optional[TargetPython] = None, + ignore_requires_python: Optional[bool] = None, + ) -> PackageFinder: + """ + Create a package finder appropriate to the index command. + """ + link_collector = LinkCollector.create(session, options=options) + + # Pass allow_yanked=False to ignore yanked versions. + selection_prefs = SelectionPreferences( + allow_yanked=False, + allow_all_prereleases=options.pre, + ignore_requires_python=ignore_requires_python, + ) + + return PackageFinder.create( + link_collector=link_collector, + selection_prefs=selection_prefs, + target_python=target_python, + ) + + def get_available_package_versions(self, options: Values, args: List[Any]) -> None: + if len(args) != 1: + raise CommandError("You need to specify exactly one argument") + + target_python = cmdoptions.make_target_python(options) + query = args[0] + + with self._build_session(options) as session: + finder = self._build_package_finder( + options=options, + session=session, + target_python=target_python, + ignore_requires_python=options.ignore_requires_python, + ) + + versions: Iterable[Union[LegacyVersion, Version]] = ( + candidate.version for candidate in finder.find_all_candidates(query) + ) + + if not options.pre: + # Remove prereleases + versions = ( + version for version in versions if not version.is_prerelease + ) + versions = set(versions) + + if not versions: + raise DistributionNotFound( + f"No matching distribution found for {query}" + ) + + formatted_versions = [str(ver) for ver in sorted(versions, reverse=True)] + latest = formatted_versions[0] + + write_output(f"{query} ({latest})") + write_output("Available versions: {}".format(", ".join(formatted_versions))) + print_dist_installation_info(query, latest) diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/commands/inspect.py b/.venv/lib/python3.12/site-packages/pip/_internal/commands/inspect.py new file mode 100644 index 00000000..27c8fa3d --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_internal/commands/inspect.py @@ -0,0 +1,92 @@ +import logging +from optparse import Values +from typing import Any, Dict, List + +from pip._vendor.packaging.markers import default_environment +from pip._vendor.rich import print_json + +from pip import __version__ +from pip._internal.cli import cmdoptions +from pip._internal.cli.req_command import Command +from pip._internal.cli.status_codes import SUCCESS +from pip._internal.metadata import BaseDistribution, get_environment +from pip._internal.utils.compat import stdlib_pkgs +from pip._internal.utils.urls import path_to_url + +logger = logging.getLogger(__name__) + + +class InspectCommand(Command): + """ + Inspect the content of a Python environment and produce a report in JSON format. + """ + + ignore_require_venv = True + usage = """ + %prog [options]""" + + def add_options(self) -> None: + self.cmd_opts.add_option( + "--local", + action="store_true", + default=False, + help=( + "If in a virtualenv that has global access, do not list " + "globally-installed packages." + ), + ) + self.cmd_opts.add_option( + "--user", + dest="user", + action="store_true", + default=False, + help="Only output packages installed in user-site.", + ) + self.cmd_opts.add_option(cmdoptions.list_path()) + self.parser.insert_option_group(0, self.cmd_opts) + + def run(self, options: Values, args: List[str]) -> int: + cmdoptions.check_list_path_option(options) + dists = get_environment(options.path).iter_installed_distributions( + local_only=options.local, + user_only=options.user, + skip=set(stdlib_pkgs), + ) + output = { + "version": "1", + "pip_version": __version__, + "installed": [self._dist_to_dict(dist) for dist in dists], + "environment": default_environment(), + # TODO tags? scheme? + } + print_json(data=output) + return SUCCESS + + def _dist_to_dict(self, dist: BaseDistribution) -> Dict[str, Any]: + res: Dict[str, Any] = { + "metadata": dist.metadata_dict, + "metadata_location": dist.info_location, + } + # direct_url. Note that we don't have download_info (as in the installation + # report) since it is not recorded in installed metadata. + direct_url = dist.direct_url + if direct_url is not None: + res["direct_url"] = direct_url.to_dict() + else: + # Emulate direct_url for legacy editable installs. + editable_project_location = dist.editable_project_location + if editable_project_location is not None: + res["direct_url"] = { + "url": path_to_url(editable_project_location), + "dir_info": { + "editable": True, + }, + } + # installer + installer = dist.installer + if dist.installer: + res["installer"] = installer + # requested + if dist.installed_with_dist_info: + res["requested"] = dist.requested + return res diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/commands/install.py b/.venv/lib/python3.12/site-packages/pip/_internal/commands/install.py new file mode 100644 index 00000000..e944bb95 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_internal/commands/install.py @@ -0,0 +1,774 @@ +import errno +import json +import operator +import os +import shutil +import site +from optparse import SUPPRESS_HELP, Values +from typing import List, Optional + +from pip._vendor.rich import print_json + +from pip._internal.cache import WheelCache +from pip._internal.cli import cmdoptions +from pip._internal.cli.cmdoptions import make_target_python +from pip._internal.cli.req_command import ( + RequirementCommand, + warn_if_run_as_root, + with_cleanup, +) +from pip._internal.cli.status_codes import ERROR, SUCCESS +from pip._internal.exceptions import CommandError, InstallationError +from pip._internal.locations import get_scheme +from pip._internal.metadata import get_environment +from pip._internal.models.installation_report import InstallationReport +from pip._internal.operations.build.build_tracker import get_build_tracker +from pip._internal.operations.check import ConflictDetails, check_install_conflicts +from pip._internal.req import install_given_reqs +from pip._internal.req.req_install import ( + InstallRequirement, + check_legacy_setup_py_options, +) +from pip._internal.utils.compat import WINDOWS +from pip._internal.utils.filesystem import test_writable_dir +from pip._internal.utils.logging import getLogger +from pip._internal.utils.misc import ( + check_externally_managed, + ensure_dir, + get_pip_version, + protect_pip_from_modification_on_windows, + write_output, +) +from pip._internal.utils.temp_dir import TempDirectory +from pip._internal.utils.virtualenv import ( + running_under_virtualenv, + virtualenv_no_global, +) +from pip._internal.wheel_builder import build, should_build_for_install_command + +logger = getLogger(__name__) + + +class InstallCommand(RequirementCommand): + """ + Install packages from: + + - PyPI (and other indexes) using requirement specifiers. + - VCS project urls. + - Local project directories. + - Local or remote source archives. + + pip also supports installing from "requirements files", which provide + an easy way to specify a whole environment to be installed. + """ + + usage = """ + %prog [options] [package-index-options] ... + %prog [options] -r [package-index-options] ... + %prog [options] [-e] ... + %prog [options] [-e] ... + %prog [options] ...""" + + def add_options(self) -> None: + self.cmd_opts.add_option(cmdoptions.requirements()) + self.cmd_opts.add_option(cmdoptions.constraints()) + self.cmd_opts.add_option(cmdoptions.no_deps()) + self.cmd_opts.add_option(cmdoptions.pre()) + + self.cmd_opts.add_option(cmdoptions.editable()) + self.cmd_opts.add_option( + "--dry-run", + action="store_true", + dest="dry_run", + default=False, + help=( + "Don't actually install anything, just print what would be. " + "Can be used in combination with --ignore-installed " + "to 'resolve' the requirements." + ), + ) + self.cmd_opts.add_option( + "-t", + "--target", + dest="target_dir", + metavar="dir", + default=None, + help=( + "Install packages into . " + "By default this will not replace existing files/folders in " + ". Use --upgrade to replace existing packages in " + "with new versions." + ), + ) + cmdoptions.add_target_python_options(self.cmd_opts) + + self.cmd_opts.add_option( + "--user", + dest="use_user_site", + action="store_true", + help=( + "Install to the Python user install directory for your " + "platform. Typically ~/.local/, or %APPDATA%\\Python on " + "Windows. (See the Python documentation for site.USER_BASE " + "for full details.)" + ), + ) + self.cmd_opts.add_option( + "--no-user", + dest="use_user_site", + action="store_false", + help=SUPPRESS_HELP, + ) + self.cmd_opts.add_option( + "--root", + dest="root_path", + metavar="dir", + default=None, + help="Install everything relative to this alternate root directory.", + ) + self.cmd_opts.add_option( + "--prefix", + dest="prefix_path", + metavar="dir", + default=None, + help=( + "Installation prefix where lib, bin and other top-level " + "folders are placed. Note that the resulting installation may " + "contain scripts and other resources which reference the " + "Python interpreter of pip, and not that of ``--prefix``. " + "See also the ``--python`` option if the intention is to " + "install packages into another (possibly pip-free) " + "environment." + ), + ) + + self.cmd_opts.add_option(cmdoptions.src()) + + self.cmd_opts.add_option( + "-U", + "--upgrade", + dest="upgrade", + action="store_true", + help=( + "Upgrade all specified packages to the newest available " + "version. The handling of dependencies depends on the " + "upgrade-strategy used." + ), + ) + + self.cmd_opts.add_option( + "--upgrade-strategy", + dest="upgrade_strategy", + default="only-if-needed", + choices=["only-if-needed", "eager"], + help=( + "Determines how dependency upgrading should be handled " + "[default: %default]. " + '"eager" - dependencies are upgraded regardless of ' + "whether the currently installed version satisfies the " + "requirements of the upgraded package(s). " + '"only-if-needed" - are upgraded only when they do not ' + "satisfy the requirements of the upgraded package(s)." + ), + ) + + self.cmd_opts.add_option( + "--force-reinstall", + dest="force_reinstall", + action="store_true", + help="Reinstall all packages even if they are already up-to-date.", + ) + + self.cmd_opts.add_option( + "-I", + "--ignore-installed", + dest="ignore_installed", + action="store_true", + help=( + "Ignore the installed packages, overwriting them. " + "This can break your system if the existing package " + "is of a different version or was installed " + "with a different package manager!" + ), + ) + + self.cmd_opts.add_option(cmdoptions.ignore_requires_python()) + self.cmd_opts.add_option(cmdoptions.no_build_isolation()) + self.cmd_opts.add_option(cmdoptions.use_pep517()) + self.cmd_opts.add_option(cmdoptions.no_use_pep517()) + self.cmd_opts.add_option(cmdoptions.check_build_deps()) + self.cmd_opts.add_option(cmdoptions.override_externally_managed()) + + self.cmd_opts.add_option(cmdoptions.config_settings()) + self.cmd_opts.add_option(cmdoptions.global_options()) + + self.cmd_opts.add_option( + "--compile", + action="store_true", + dest="compile", + default=True, + help="Compile Python source files to bytecode", + ) + + self.cmd_opts.add_option( + "--no-compile", + action="store_false", + dest="compile", + help="Do not compile Python source files to bytecode", + ) + + self.cmd_opts.add_option( + "--no-warn-script-location", + action="store_false", + dest="warn_script_location", + default=True, + help="Do not warn when installing scripts outside PATH", + ) + self.cmd_opts.add_option( + "--no-warn-conflicts", + action="store_false", + dest="warn_about_conflicts", + default=True, + help="Do not warn about broken dependencies", + ) + self.cmd_opts.add_option(cmdoptions.no_binary()) + self.cmd_opts.add_option(cmdoptions.only_binary()) + self.cmd_opts.add_option(cmdoptions.prefer_binary()) + self.cmd_opts.add_option(cmdoptions.require_hashes()) + self.cmd_opts.add_option(cmdoptions.progress_bar()) + self.cmd_opts.add_option(cmdoptions.root_user_action()) + + index_opts = cmdoptions.make_option_group( + cmdoptions.index_group, + self.parser, + ) + + self.parser.insert_option_group(0, index_opts) + self.parser.insert_option_group(0, self.cmd_opts) + + self.cmd_opts.add_option( + "--report", + dest="json_report_file", + metavar="file", + default=None, + help=( + "Generate a JSON file describing what pip did to install " + "the provided requirements. " + "Can be used in combination with --dry-run and --ignore-installed " + "to 'resolve' the requirements. " + "When - is used as file name it writes to stdout. " + "When writing to stdout, please combine with the --quiet option " + "to avoid mixing pip logging output with JSON output." + ), + ) + + @with_cleanup + def run(self, options: Values, args: List[str]) -> int: + if options.use_user_site and options.target_dir is not None: + raise CommandError("Can not combine '--user' and '--target'") + + # Check whether the environment we're installing into is externally + # managed, as specified in PEP 668. Specifying --root, --target, or + # --prefix disables the check, since there's no reliable way to locate + # the EXTERNALLY-MANAGED file for those cases. An exception is also + # made specifically for "--dry-run --report" for convenience. + installing_into_current_environment = ( + not (options.dry_run and options.json_report_file) + and options.root_path is None + and options.target_dir is None + and options.prefix_path is None + ) + if ( + installing_into_current_environment + and not options.override_externally_managed + ): + check_externally_managed() + + upgrade_strategy = "to-satisfy-only" + if options.upgrade: + upgrade_strategy = options.upgrade_strategy + + cmdoptions.check_dist_restriction(options, check_target=True) + + logger.verbose("Using %s", get_pip_version()) + options.use_user_site = decide_user_install( + options.use_user_site, + prefix_path=options.prefix_path, + target_dir=options.target_dir, + root_path=options.root_path, + isolated_mode=options.isolated_mode, + ) + + target_temp_dir: Optional[TempDirectory] = None + target_temp_dir_path: Optional[str] = None + if options.target_dir: + options.ignore_installed = True + options.target_dir = os.path.abspath(options.target_dir) + if ( + # fmt: off + os.path.exists(options.target_dir) and + not os.path.isdir(options.target_dir) + # fmt: on + ): + raise CommandError( + "Target path exists but is not a directory, will not continue." + ) + + # Create a target directory for using with the target option + target_temp_dir = TempDirectory(kind="target") + target_temp_dir_path = target_temp_dir.path + self.enter_context(target_temp_dir) + + global_options = options.global_options or [] + + session = self.get_default_session(options) + + target_python = make_target_python(options) + finder = self._build_package_finder( + options=options, + session=session, + target_python=target_python, + ignore_requires_python=options.ignore_requires_python, + ) + build_tracker = self.enter_context(get_build_tracker()) + + directory = TempDirectory( + delete=not options.no_clean, + kind="install", + globally_managed=True, + ) + + try: + reqs = self.get_requirements(args, options, finder, session) + check_legacy_setup_py_options(options, reqs) + + wheel_cache = WheelCache(options.cache_dir) + + # Only when installing is it permitted to use PEP 660. + # In other circumstances (pip wheel, pip download) we generate + # regular (i.e. non editable) metadata and wheels. + for req in reqs: + req.permit_editable_wheels = True + + preparer = self.make_requirement_preparer( + temp_build_dir=directory, + options=options, + build_tracker=build_tracker, + session=session, + finder=finder, + use_user_site=options.use_user_site, + verbosity=self.verbosity, + ) + resolver = self.make_resolver( + preparer=preparer, + finder=finder, + options=options, + wheel_cache=wheel_cache, + use_user_site=options.use_user_site, + ignore_installed=options.ignore_installed, + ignore_requires_python=options.ignore_requires_python, + force_reinstall=options.force_reinstall, + upgrade_strategy=upgrade_strategy, + use_pep517=options.use_pep517, + ) + + self.trace_basic_info(finder) + + requirement_set = resolver.resolve( + reqs, check_supported_wheels=not options.target_dir + ) + + if options.json_report_file: + report = InstallationReport(requirement_set.requirements_to_install) + if options.json_report_file == "-": + print_json(data=report.to_dict()) + else: + with open(options.json_report_file, "w", encoding="utf-8") as f: + json.dump(report.to_dict(), f, indent=2, ensure_ascii=False) + + if options.dry_run: + # In non dry-run mode, the legacy versions and specifiers check + # will be done as part of conflict detection. + requirement_set.warn_legacy_versions_and_specifiers() + would_install_items = sorted( + (r.metadata["name"], r.metadata["version"]) + for r in requirement_set.requirements_to_install + ) + if would_install_items: + write_output( + "Would install %s", + " ".join("-".join(item) for item in would_install_items), + ) + return SUCCESS + + try: + pip_req = requirement_set.get_requirement("pip") + except KeyError: + modifying_pip = False + else: + # If we're not replacing an already installed pip, + # we're not modifying it. + modifying_pip = pip_req.satisfied_by is None + protect_pip_from_modification_on_windows(modifying_pip=modifying_pip) + + reqs_to_build = [ + r + for r in requirement_set.requirements.values() + if should_build_for_install_command(r) + ] + + _, build_failures = build( + reqs_to_build, + wheel_cache=wheel_cache, + verify=True, + build_options=[], + global_options=global_options, + ) + + if build_failures: + raise InstallationError( + "Could not build wheels for {}, which is required to " + "install pyproject.toml-based projects".format( + ", ".join(r.name for r in build_failures) # type: ignore + ) + ) + + to_install = resolver.get_installation_order(requirement_set) + + # Check for conflicts in the package set we're installing. + conflicts: Optional[ConflictDetails] = None + should_warn_about_conflicts = ( + not options.ignore_dependencies and options.warn_about_conflicts + ) + if should_warn_about_conflicts: + conflicts = self._determine_conflicts(to_install) + + # Don't warn about script install locations if + # --target or --prefix has been specified + warn_script_location = options.warn_script_location + if options.target_dir or options.prefix_path: + warn_script_location = False + + installed = install_given_reqs( + to_install, + global_options, + root=options.root_path, + home=target_temp_dir_path, + prefix=options.prefix_path, + warn_script_location=warn_script_location, + use_user_site=options.use_user_site, + pycompile=options.compile, + ) + + lib_locations = get_lib_location_guesses( + user=options.use_user_site, + home=target_temp_dir_path, + root=options.root_path, + prefix=options.prefix_path, + isolated=options.isolated_mode, + ) + env = get_environment(lib_locations) + + installed.sort(key=operator.attrgetter("name")) + items = [] + for result in installed: + item = result.name + try: + installed_dist = env.get_distribution(item) + if installed_dist is not None: + item = f"{item}-{installed_dist.version}" + except Exception: + pass + items.append(item) + + if conflicts is not None: + self._warn_about_conflicts( + conflicts, + resolver_variant=self.determine_resolver_variant(options), + ) + + installed_desc = " ".join(items) + if installed_desc: + write_output( + "Successfully installed %s", + installed_desc, + ) + except OSError as error: + show_traceback = self.verbosity >= 1 + + message = create_os_error_message( + error, + show_traceback, + options.use_user_site, + ) + logger.error(message, exc_info=show_traceback) + + return ERROR + + if options.target_dir: + assert target_temp_dir + self._handle_target_dir( + options.target_dir, target_temp_dir, options.upgrade + ) + if options.root_user_action == "warn": + warn_if_run_as_root() + return SUCCESS + + def _handle_target_dir( + self, target_dir: str, target_temp_dir: TempDirectory, upgrade: bool + ) -> None: + ensure_dir(target_dir) + + # Checking both purelib and platlib directories for installed + # packages to be moved to target directory + lib_dir_list = [] + + # Checking both purelib and platlib directories for installed + # packages to be moved to target directory + scheme = get_scheme("", home=target_temp_dir.path) + purelib_dir = scheme.purelib + platlib_dir = scheme.platlib + data_dir = scheme.data + + if os.path.exists(purelib_dir): + lib_dir_list.append(purelib_dir) + if os.path.exists(platlib_dir) and platlib_dir != purelib_dir: + lib_dir_list.append(platlib_dir) + if os.path.exists(data_dir): + lib_dir_list.append(data_dir) + + for lib_dir in lib_dir_list: + for item in os.listdir(lib_dir): + if lib_dir == data_dir: + ddir = os.path.join(data_dir, item) + if any(s.startswith(ddir) for s in lib_dir_list[:-1]): + continue + target_item_dir = os.path.join(target_dir, item) + if os.path.exists(target_item_dir): + if not upgrade: + logger.warning( + "Target directory %s already exists. Specify " + "--upgrade to force replacement.", + target_item_dir, + ) + continue + if os.path.islink(target_item_dir): + logger.warning( + "Target directory %s already exists and is " + "a link. pip will not automatically replace " + "links, please remove if replacement is " + "desired.", + target_item_dir, + ) + continue + if os.path.isdir(target_item_dir): + shutil.rmtree(target_item_dir) + else: + os.remove(target_item_dir) + + shutil.move(os.path.join(lib_dir, item), target_item_dir) + + def _determine_conflicts( + self, to_install: List[InstallRequirement] + ) -> Optional[ConflictDetails]: + try: + return check_install_conflicts(to_install) + except Exception: + logger.exception( + "Error while checking for conflicts. Please file an issue on " + "pip's issue tracker: https://github.com/pypa/pip/issues/new" + ) + return None + + def _warn_about_conflicts( + self, conflict_details: ConflictDetails, resolver_variant: str + ) -> None: + package_set, (missing, conflicting) = conflict_details + if not missing and not conflicting: + return + + parts: List[str] = [] + if resolver_variant == "legacy": + parts.append( + "pip's legacy dependency resolver does not consider dependency " + "conflicts when selecting packages. This behaviour is the " + "source of the following dependency conflicts." + ) + else: + assert resolver_variant == "resolvelib" + parts.append( + "pip's dependency resolver does not currently take into account " + "all the packages that are installed. This behaviour is the " + "source of the following dependency conflicts." + ) + + # NOTE: There is some duplication here, with commands/check.py + for project_name in missing: + version = package_set[project_name][0] + for dependency in missing[project_name]: + message = ( + f"{project_name} {version} requires {dependency[1]}, " + "which is not installed." + ) + parts.append(message) + + for project_name in conflicting: + version = package_set[project_name][0] + for dep_name, dep_version, req in conflicting[project_name]: + message = ( + "{name} {version} requires {requirement}, but {you} have " + "{dep_name} {dep_version} which is incompatible." + ).format( + name=project_name, + version=version, + requirement=req, + dep_name=dep_name, + dep_version=dep_version, + you=("you" if resolver_variant == "resolvelib" else "you'll"), + ) + parts.append(message) + + logger.critical("\n".join(parts)) + + +def get_lib_location_guesses( + user: bool = False, + home: Optional[str] = None, + root: Optional[str] = None, + isolated: bool = False, + prefix: Optional[str] = None, +) -> List[str]: + scheme = get_scheme( + "", + user=user, + home=home, + root=root, + isolated=isolated, + prefix=prefix, + ) + return [scheme.purelib, scheme.platlib] + + +def site_packages_writable(root: Optional[str], isolated: bool) -> bool: + return all( + test_writable_dir(d) + for d in set(get_lib_location_guesses(root=root, isolated=isolated)) + ) + + +def decide_user_install( + use_user_site: Optional[bool], + prefix_path: Optional[str] = None, + target_dir: Optional[str] = None, + root_path: Optional[str] = None, + isolated_mode: bool = False, +) -> bool: + """Determine whether to do a user install based on the input options. + + If use_user_site is False, no additional checks are done. + If use_user_site is True, it is checked for compatibility with other + options. + If use_user_site is None, the default behaviour depends on the environment, + which is provided by the other arguments. + """ + # In some cases (config from tox), use_user_site can be set to an integer + # rather than a bool, which 'use_user_site is False' wouldn't catch. + if (use_user_site is not None) and (not use_user_site): + logger.debug("Non-user install by explicit request") + return False + + if use_user_site: + if prefix_path: + raise CommandError( + "Can not combine '--user' and '--prefix' as they imply " + "different installation locations" + ) + if virtualenv_no_global(): + raise InstallationError( + "Can not perform a '--user' install. User site-packages " + "are not visible in this virtualenv." + ) + logger.debug("User install by explicit request") + return True + + # If we are here, user installs have not been explicitly requested/avoided + assert use_user_site is None + + # user install incompatible with --prefix/--target + if prefix_path or target_dir: + logger.debug("Non-user install due to --prefix or --target option") + return False + + # If user installs are not enabled, choose a non-user install + if not site.ENABLE_USER_SITE: + logger.debug("Non-user install because user site-packages disabled") + return False + + # If we have permission for a non-user install, do that, + # otherwise do a user install. + if site_packages_writable(root=root_path, isolated=isolated_mode): + logger.debug("Non-user install because site-packages writeable") + return False + + logger.info( + "Defaulting to user installation because normal site-packages " + "is not writeable" + ) + return True + + +def create_os_error_message( + error: OSError, show_traceback: bool, using_user_site: bool +) -> str: + """Format an error message for an OSError + + It may occur anytime during the execution of the install command. + """ + parts = [] + + # Mention the error if we are not going to show a traceback + parts.append("Could not install packages due to an OSError") + if not show_traceback: + parts.append(": ") + parts.append(str(error)) + else: + parts.append(".") + + # Spilt the error indication from a helper message (if any) + parts[-1] += "\n" + + # Suggest useful actions to the user: + # (1) using user site-packages or (2) verifying the permissions + if error.errno == errno.EACCES: + user_option_part = "Consider using the `--user` option" + permissions_part = "Check the permissions" + + if not running_under_virtualenv() and not using_user_site: + parts.extend( + [ + user_option_part, + " or ", + permissions_part.lower(), + ] + ) + else: + parts.append(permissions_part) + parts.append(".\n") + + # Suggest the user to enable Long Paths if path length is + # more than 260 + if ( + WINDOWS + and error.errno == errno.ENOENT + and error.filename + and len(error.filename) > 260 + ): + parts.append( + "HINT: This error might have occurred since " + "this system does not have Windows Long Path " + "support enabled. You can find information on " + "how to enable this at " + "https://pip.pypa.io/warnings/enable-long-paths\n" + ) + + return "".join(parts).strip() + "\n" diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/commands/list.py b/.venv/lib/python3.12/site-packages/pip/_internal/commands/list.py new file mode 100644 index 00000000..32fb19b2 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_internal/commands/list.py @@ -0,0 +1,370 @@ +import json +import logging +from optparse import Values +from typing import TYPE_CHECKING, Generator, List, Optional, Sequence, Tuple, cast + +from pip._vendor.packaging.utils import canonicalize_name + +from pip._internal.cli import cmdoptions +from pip._internal.cli.req_command import IndexGroupCommand +from pip._internal.cli.status_codes import SUCCESS +from pip._internal.exceptions import CommandError +from pip._internal.index.collector import LinkCollector +from pip._internal.index.package_finder import PackageFinder +from pip._internal.metadata import BaseDistribution, get_environment +from pip._internal.models.selection_prefs import SelectionPreferences +from pip._internal.network.session import PipSession +from pip._internal.utils.compat import stdlib_pkgs +from pip._internal.utils.misc import tabulate, write_output + +if TYPE_CHECKING: + from pip._internal.metadata.base import DistributionVersion + + class _DistWithLatestInfo(BaseDistribution): + """Give the distribution object a couple of extra fields. + + These will be populated during ``get_outdated()``. This is dirty but + makes the rest of the code much cleaner. + """ + + latest_version: DistributionVersion + latest_filetype: str + + _ProcessedDists = Sequence[_DistWithLatestInfo] + + +from pip._vendor.packaging.version import parse + +logger = logging.getLogger(__name__) + + +class ListCommand(IndexGroupCommand): + """ + List installed packages, including editables. + + Packages are listed in a case-insensitive sorted order. + """ + + ignore_require_venv = True + usage = """ + %prog [options]""" + + def add_options(self) -> None: + self.cmd_opts.add_option( + "-o", + "--outdated", + action="store_true", + default=False, + help="List outdated packages", + ) + self.cmd_opts.add_option( + "-u", + "--uptodate", + action="store_true", + default=False, + help="List uptodate packages", + ) + self.cmd_opts.add_option( + "-e", + "--editable", + action="store_true", + default=False, + help="List editable projects.", + ) + self.cmd_opts.add_option( + "-l", + "--local", + action="store_true", + default=False, + help=( + "If in a virtualenv that has global access, do not list " + "globally-installed packages." + ), + ) + self.cmd_opts.add_option( + "--user", + dest="user", + action="store_true", + default=False, + help="Only output packages installed in user-site.", + ) + self.cmd_opts.add_option(cmdoptions.list_path()) + self.cmd_opts.add_option( + "--pre", + action="store_true", + default=False, + help=( + "Include pre-release and development versions. By default, " + "pip only finds stable versions." + ), + ) + + self.cmd_opts.add_option( + "--format", + action="store", + dest="list_format", + default="columns", + choices=("columns", "freeze", "json"), + help=( + "Select the output format among: columns (default), freeze, or json. " + "The 'freeze' format cannot be used with the --outdated option." + ), + ) + + self.cmd_opts.add_option( + "--not-required", + action="store_true", + dest="not_required", + help="List packages that are not dependencies of installed packages.", + ) + + self.cmd_opts.add_option( + "--exclude-editable", + action="store_false", + dest="include_editable", + help="Exclude editable package from output.", + ) + self.cmd_opts.add_option( + "--include-editable", + action="store_true", + dest="include_editable", + help="Include editable package from output.", + default=True, + ) + self.cmd_opts.add_option(cmdoptions.list_exclude()) + index_opts = cmdoptions.make_option_group(cmdoptions.index_group, self.parser) + + self.parser.insert_option_group(0, index_opts) + self.parser.insert_option_group(0, self.cmd_opts) + + def _build_package_finder( + self, options: Values, session: PipSession + ) -> PackageFinder: + """ + Create a package finder appropriate to this list command. + """ + link_collector = LinkCollector.create(session, options=options) + + # Pass allow_yanked=False to ignore yanked versions. + selection_prefs = SelectionPreferences( + allow_yanked=False, + allow_all_prereleases=options.pre, + ) + + return PackageFinder.create( + link_collector=link_collector, + selection_prefs=selection_prefs, + ) + + def run(self, options: Values, args: List[str]) -> int: + if options.outdated and options.uptodate: + raise CommandError("Options --outdated and --uptodate cannot be combined.") + + if options.outdated and options.list_format == "freeze": + raise CommandError( + "List format 'freeze' cannot be used with the --outdated option." + ) + + cmdoptions.check_list_path_option(options) + + skip = set(stdlib_pkgs) + if options.excludes: + skip.update(canonicalize_name(n) for n in options.excludes) + + packages: "_ProcessedDists" = [ + cast("_DistWithLatestInfo", d) + for d in get_environment(options.path).iter_installed_distributions( + local_only=options.local, + user_only=options.user, + editables_only=options.editable, + include_editables=options.include_editable, + skip=skip, + ) + ] + + # get_not_required must be called firstly in order to find and + # filter out all dependencies correctly. Otherwise a package + # can't be identified as requirement because some parent packages + # could be filtered out before. + if options.not_required: + packages = self.get_not_required(packages, options) + + if options.outdated: + packages = self.get_outdated(packages, options) + elif options.uptodate: + packages = self.get_uptodate(packages, options) + + self.output_package_listing(packages, options) + return SUCCESS + + def get_outdated( + self, packages: "_ProcessedDists", options: Values + ) -> "_ProcessedDists": + return [ + dist + for dist in self.iter_packages_latest_infos(packages, options) + if parse(str(dist.latest_version)) > parse(str(dist.version)) + ] + + def get_uptodate( + self, packages: "_ProcessedDists", options: Values + ) -> "_ProcessedDists": + return [ + dist + for dist in self.iter_packages_latest_infos(packages, options) + if parse(str(dist.latest_version)) == parse(str(dist.version)) + ] + + def get_not_required( + self, packages: "_ProcessedDists", options: Values + ) -> "_ProcessedDists": + dep_keys = { + canonicalize_name(dep.name) + for dist in packages + for dep in (dist.iter_dependencies() or ()) + } + + # Create a set to remove duplicate packages, and cast it to a list + # to keep the return type consistent with get_outdated and + # get_uptodate + return list({pkg for pkg in packages if pkg.canonical_name not in dep_keys}) + + def iter_packages_latest_infos( + self, packages: "_ProcessedDists", options: Values + ) -> Generator["_DistWithLatestInfo", None, None]: + with self._build_session(options) as session: + finder = self._build_package_finder(options, session) + + def latest_info( + dist: "_DistWithLatestInfo", + ) -> Optional["_DistWithLatestInfo"]: + all_candidates = finder.find_all_candidates(dist.canonical_name) + if not options.pre: + # Remove prereleases + all_candidates = [ + candidate + for candidate in all_candidates + if not candidate.version.is_prerelease + ] + + evaluator = finder.make_candidate_evaluator( + project_name=dist.canonical_name, + ) + best_candidate = evaluator.sort_best_candidate(all_candidates) + if best_candidate is None: + return None + + remote_version = best_candidate.version + if best_candidate.link.is_wheel: + typ = "wheel" + else: + typ = "sdist" + dist.latest_version = remote_version + dist.latest_filetype = typ + return dist + + for dist in map(latest_info, packages): + if dist is not None: + yield dist + + def output_package_listing( + self, packages: "_ProcessedDists", options: Values + ) -> None: + packages = sorted( + packages, + key=lambda dist: dist.canonical_name, + ) + if options.list_format == "columns" and packages: + data, header = format_for_columns(packages, options) + self.output_package_listing_columns(data, header) + elif options.list_format == "freeze": + for dist in packages: + if options.verbose >= 1: + write_output( + "%s==%s (%s)", dist.raw_name, dist.version, dist.location + ) + else: + write_output("%s==%s", dist.raw_name, dist.version) + elif options.list_format == "json": + write_output(format_for_json(packages, options)) + + def output_package_listing_columns( + self, data: List[List[str]], header: List[str] + ) -> None: + # insert the header first: we need to know the size of column names + if len(data) > 0: + data.insert(0, header) + + pkg_strings, sizes = tabulate(data) + + # Create and add a separator. + if len(data) > 0: + pkg_strings.insert(1, " ".join("-" * x for x in sizes)) + + for val in pkg_strings: + write_output(val) + + +def format_for_columns( + pkgs: "_ProcessedDists", options: Values +) -> Tuple[List[List[str]], List[str]]: + """ + Convert the package data into something usable + by output_package_listing_columns. + """ + header = ["Package", "Version"] + + running_outdated = options.outdated + if running_outdated: + header.extend(["Latest", "Type"]) + + has_editables = any(x.editable for x in pkgs) + if has_editables: + header.append("Editable project location") + + if options.verbose >= 1: + header.append("Location") + if options.verbose >= 1: + header.append("Installer") + + data = [] + for proj in pkgs: + # if we're working on the 'outdated' list, separate out the + # latest_version and type + row = [proj.raw_name, str(proj.version)] + + if running_outdated: + row.append(str(proj.latest_version)) + row.append(proj.latest_filetype) + + if has_editables: + row.append(proj.editable_project_location or "") + + if options.verbose >= 1: + row.append(proj.location or "") + if options.verbose >= 1: + row.append(proj.installer) + + data.append(row) + + return data, header + + +def format_for_json(packages: "_ProcessedDists", options: Values) -> str: + data = [] + for dist in packages: + info = { + "name": dist.raw_name, + "version": str(dist.version), + } + if options.verbose >= 1: + info["location"] = dist.location or "" + info["installer"] = dist.installer + if options.outdated: + info["latest_version"] = str(dist.latest_version) + info["latest_filetype"] = dist.latest_filetype + editable_project_location = dist.editable_project_location + if editable_project_location: + info["editable_project_location"] = editable_project_location + data.append(info) + return json.dumps(data) diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/commands/search.py b/.venv/lib/python3.12/site-packages/pip/_internal/commands/search.py new file mode 100644 index 00000000..03ed925b --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_internal/commands/search.py @@ -0,0 +1,174 @@ +import logging +import shutil +import sys +import textwrap +import xmlrpc.client +from collections import OrderedDict +from optparse import Values +from typing import TYPE_CHECKING, Dict, List, Optional + +from pip._vendor.packaging.version import parse as parse_version + +from pip._internal.cli.base_command import Command +from pip._internal.cli.req_command import SessionCommandMixin +from pip._internal.cli.status_codes import NO_MATCHES_FOUND, SUCCESS +from pip._internal.exceptions import CommandError +from pip._internal.metadata import get_default_environment +from pip._internal.models.index import PyPI +from pip._internal.network.xmlrpc import PipXmlrpcTransport +from pip._internal.utils.logging import indent_log +from pip._internal.utils.misc import write_output + +if TYPE_CHECKING: + from typing import TypedDict + + class TransformedHit(TypedDict): + name: str + summary: str + versions: List[str] + + +logger = logging.getLogger(__name__) + + +class SearchCommand(Command, SessionCommandMixin): + """Search for PyPI packages whose name or summary contains .""" + + usage = """ + %prog [options] """ + ignore_require_venv = True + + def add_options(self) -> None: + self.cmd_opts.add_option( + "-i", + "--index", + dest="index", + metavar="URL", + default=PyPI.pypi_url, + help="Base URL of Python Package Index (default %default)", + ) + + self.parser.insert_option_group(0, self.cmd_opts) + + def run(self, options: Values, args: List[str]) -> int: + if not args: + raise CommandError("Missing required argument (search query).") + query = args + pypi_hits = self.search(query, options) + hits = transform_hits(pypi_hits) + + terminal_width = None + if sys.stdout.isatty(): + terminal_width = shutil.get_terminal_size()[0] + + print_results(hits, terminal_width=terminal_width) + if pypi_hits: + return SUCCESS + return NO_MATCHES_FOUND + + def search(self, query: List[str], options: Values) -> List[Dict[str, str]]: + index_url = options.index + + session = self.get_default_session(options) + + transport = PipXmlrpcTransport(index_url, session) + pypi = xmlrpc.client.ServerProxy(index_url, transport) + try: + hits = pypi.search({"name": query, "summary": query}, "or") + except xmlrpc.client.Fault as fault: + message = "XMLRPC request failed [code: {code}]\n{string}".format( + code=fault.faultCode, + string=fault.faultString, + ) + raise CommandError(message) + assert isinstance(hits, list) + return hits + + +def transform_hits(hits: List[Dict[str, str]]) -> List["TransformedHit"]: + """ + The list from pypi is really a list of versions. We want a list of + packages with the list of versions stored inline. This converts the + list from pypi into one we can use. + """ + packages: Dict[str, "TransformedHit"] = OrderedDict() + for hit in hits: + name = hit["name"] + summary = hit["summary"] + version = hit["version"] + + if name not in packages.keys(): + packages[name] = { + "name": name, + "summary": summary, + "versions": [version], + } + else: + packages[name]["versions"].append(version) + + # if this is the highest version, replace summary and score + if version == highest_version(packages[name]["versions"]): + packages[name]["summary"] = summary + + return list(packages.values()) + + +def print_dist_installation_info(name: str, latest: str) -> None: + env = get_default_environment() + dist = env.get_distribution(name) + if dist is not None: + with indent_log(): + if dist.version == latest: + write_output("INSTALLED: %s (latest)", dist.version) + else: + write_output("INSTALLED: %s", dist.version) + if parse_version(latest).pre: + write_output( + "LATEST: %s (pre-release; install" + " with `pip install --pre`)", + latest, + ) + else: + write_output("LATEST: %s", latest) + + +def print_results( + hits: List["TransformedHit"], + name_column_width: Optional[int] = None, + terminal_width: Optional[int] = None, +) -> None: + if not hits: + return + if name_column_width is None: + name_column_width = ( + max( + [ + len(hit["name"]) + len(highest_version(hit.get("versions", ["-"]))) + for hit in hits + ] + ) + + 4 + ) + + for hit in hits: + name = hit["name"] + summary = hit["summary"] or "" + latest = highest_version(hit.get("versions", ["-"])) + if terminal_width is not None: + target_width = terminal_width - name_column_width - 5 + if target_width > 10: + # wrap and indent summary to fit terminal + summary_lines = textwrap.wrap(summary, target_width) + summary = ("\n" + " " * (name_column_width + 3)).join(summary_lines) + + name_latest = f"{name} ({latest})" + line = f"{name_latest:{name_column_width}} - {summary}" + try: + write_output(line) + print_dist_installation_info(name, latest) + except UnicodeEncodeError: + pass + + +def highest_version(versions: List[str]) -> str: + return max(versions, key=parse_version) diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/commands/show.py b/.venv/lib/python3.12/site-packages/pip/_internal/commands/show.py new file mode 100644 index 00000000..3f10701f --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_internal/commands/show.py @@ -0,0 +1,189 @@ +import logging +from optparse import Values +from typing import Generator, Iterable, Iterator, List, NamedTuple, Optional + +from pip._vendor.packaging.utils import canonicalize_name + +from pip._internal.cli.base_command import Command +from pip._internal.cli.status_codes import ERROR, SUCCESS +from pip._internal.metadata import BaseDistribution, get_default_environment +from pip._internal.utils.misc import write_output + +logger = logging.getLogger(__name__) + + +class ShowCommand(Command): + """ + Show information about one or more installed packages. + + The output is in RFC-compliant mail header format. + """ + + usage = """ + %prog [options] ...""" + ignore_require_venv = True + + def add_options(self) -> None: + self.cmd_opts.add_option( + "-f", + "--files", + dest="files", + action="store_true", + default=False, + help="Show the full list of installed files for each package.", + ) + + self.parser.insert_option_group(0, self.cmd_opts) + + def run(self, options: Values, args: List[str]) -> int: + if not args: + logger.warning("ERROR: Please provide a package name or names.") + return ERROR + query = args + + results = search_packages_info(query) + if not print_results( + results, list_files=options.files, verbose=options.verbose + ): + return ERROR + return SUCCESS + + +class _PackageInfo(NamedTuple): + name: str + version: str + location: str + editable_project_location: Optional[str] + requires: List[str] + required_by: List[str] + installer: str + metadata_version: str + classifiers: List[str] + summary: str + homepage: str + project_urls: List[str] + author: str + author_email: str + license: str + entry_points: List[str] + files: Optional[List[str]] + + +def search_packages_info(query: List[str]) -> Generator[_PackageInfo, None, None]: + """ + Gather details from installed distributions. Print distribution name, + version, location, and installed files. Installed files requires a + pip generated 'installed-files.txt' in the distributions '.egg-info' + directory. + """ + env = get_default_environment() + + installed = {dist.canonical_name: dist for dist in env.iter_all_distributions()} + query_names = [canonicalize_name(name) for name in query] + missing = sorted( + [name for name, pkg in zip(query, query_names) if pkg not in installed] + ) + if missing: + logger.warning("Package(s) not found: %s", ", ".join(missing)) + + def _get_requiring_packages(current_dist: BaseDistribution) -> Iterator[str]: + return ( + dist.metadata["Name"] or "UNKNOWN" + for dist in installed.values() + if current_dist.canonical_name + in {canonicalize_name(d.name) for d in dist.iter_dependencies()} + ) + + for query_name in query_names: + try: + dist = installed[query_name] + except KeyError: + continue + + requires = sorted((req.name for req in dist.iter_dependencies()), key=str.lower) + required_by = sorted(_get_requiring_packages(dist), key=str.lower) + + try: + entry_points_text = dist.read_text("entry_points.txt") + entry_points = entry_points_text.splitlines(keepends=False) + except FileNotFoundError: + entry_points = [] + + files_iter = dist.iter_declared_entries() + if files_iter is None: + files: Optional[List[str]] = None + else: + files = sorted(files_iter) + + metadata = dist.metadata + + yield _PackageInfo( + name=dist.raw_name, + version=str(dist.version), + location=dist.location or "", + editable_project_location=dist.editable_project_location, + requires=requires, + required_by=required_by, + installer=dist.installer, + metadata_version=dist.metadata_version or "", + classifiers=metadata.get_all("Classifier", []), + summary=metadata.get("Summary", ""), + homepage=metadata.get("Home-page", ""), + project_urls=metadata.get_all("Project-URL", []), + author=metadata.get("Author", ""), + author_email=metadata.get("Author-email", ""), + license=metadata.get("License", ""), + entry_points=entry_points, + files=files, + ) + + +def print_results( + distributions: Iterable[_PackageInfo], + list_files: bool, + verbose: bool, +) -> bool: + """ + Print the information from installed distributions found. + """ + results_printed = False + for i, dist in enumerate(distributions): + results_printed = True + if i > 0: + write_output("---") + + write_output("Name: %s", dist.name) + write_output("Version: %s", dist.version) + write_output("Summary: %s", dist.summary) + write_output("Home-page: %s", dist.homepage) + write_output("Author: %s", dist.author) + write_output("Author-email: %s", dist.author_email) + write_output("License: %s", dist.license) + write_output("Location: %s", dist.location) + if dist.editable_project_location is not None: + write_output( + "Editable project location: %s", dist.editable_project_location + ) + write_output("Requires: %s", ", ".join(dist.requires)) + write_output("Required-by: %s", ", ".join(dist.required_by)) + + if verbose: + write_output("Metadata-Version: %s", dist.metadata_version) + write_output("Installer: %s", dist.installer) + write_output("Classifiers:") + for classifier in dist.classifiers: + write_output(" %s", classifier) + write_output("Entry-points:") + for entry in dist.entry_points: + write_output(" %s", entry.strip()) + write_output("Project-URLs:") + for project_url in dist.project_urls: + write_output(" %s", project_url) + if list_files: + write_output("Files:") + if dist.files is None: + write_output("Cannot locate RECORD or installed-files.txt") + else: + for line in dist.files: + write_output(" %s", line.strip()) + return results_printed diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/commands/uninstall.py b/.venv/lib/python3.12/site-packages/pip/_internal/commands/uninstall.py new file mode 100644 index 00000000..f198fc31 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_internal/commands/uninstall.py @@ -0,0 +1,113 @@ +import logging +from optparse import Values +from typing import List + +from pip._vendor.packaging.utils import canonicalize_name + +from pip._internal.cli import cmdoptions +from pip._internal.cli.base_command import Command +from pip._internal.cli.req_command import SessionCommandMixin, warn_if_run_as_root +from pip._internal.cli.status_codes import SUCCESS +from pip._internal.exceptions import InstallationError +from pip._internal.req import parse_requirements +from pip._internal.req.constructors import ( + install_req_from_line, + install_req_from_parsed_requirement, +) +from pip._internal.utils.misc import ( + check_externally_managed, + protect_pip_from_modification_on_windows, +) + +logger = logging.getLogger(__name__) + + +class UninstallCommand(Command, SessionCommandMixin): + """ + Uninstall packages. + + pip is able to uninstall most installed packages. Known exceptions are: + + - Pure distutils packages installed with ``python setup.py install``, which + leave behind no metadata to determine what files were installed. + - Script wrappers installed by ``python setup.py develop``. + """ + + usage = """ + %prog [options] ... + %prog [options] -r ...""" + + def add_options(self) -> None: + self.cmd_opts.add_option( + "-r", + "--requirement", + dest="requirements", + action="append", + default=[], + metavar="file", + help=( + "Uninstall all the packages listed in the given requirements " + "file. This option can be used multiple times." + ), + ) + self.cmd_opts.add_option( + "-y", + "--yes", + dest="yes", + action="store_true", + help="Don't ask for confirmation of uninstall deletions.", + ) + self.cmd_opts.add_option(cmdoptions.root_user_action()) + self.cmd_opts.add_option(cmdoptions.override_externally_managed()) + self.parser.insert_option_group(0, self.cmd_opts) + + def run(self, options: Values, args: List[str]) -> int: + session = self.get_default_session(options) + + reqs_to_uninstall = {} + for name in args: + req = install_req_from_line( + name, + isolated=options.isolated_mode, + ) + if req.name: + reqs_to_uninstall[canonicalize_name(req.name)] = req + else: + logger.warning( + "Invalid requirement: %r ignored -" + " the uninstall command expects named" + " requirements.", + name, + ) + for filename in options.requirements: + for parsed_req in parse_requirements( + filename, options=options, session=session + ): + req = install_req_from_parsed_requirement( + parsed_req, isolated=options.isolated_mode + ) + if req.name: + reqs_to_uninstall[canonicalize_name(req.name)] = req + if not reqs_to_uninstall: + raise InstallationError( + f"You must give at least one requirement to {self.name} (see " + f'"pip help {self.name}")' + ) + + if not options.override_externally_managed: + check_externally_managed() + + protect_pip_from_modification_on_windows( + modifying_pip="pip" in reqs_to_uninstall + ) + + for req in reqs_to_uninstall.values(): + uninstall_pathset = req.uninstall( + auto_confirm=options.yes, + verbose=self.verbosity > 0, + ) + if uninstall_pathset: + uninstall_pathset.commit() + if options.root_user_action == "warn": + warn_if_run_as_root() + return SUCCESS diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/commands/wheel.py b/.venv/lib/python3.12/site-packages/pip/_internal/commands/wheel.py new file mode 100644 index 00000000..ed578aa2 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_internal/commands/wheel.py @@ -0,0 +1,183 @@ +import logging +import os +import shutil +from optparse import Values +from typing import List + +from pip._internal.cache import WheelCache +from pip._internal.cli import cmdoptions +from pip._internal.cli.req_command import RequirementCommand, with_cleanup +from pip._internal.cli.status_codes import SUCCESS +from pip._internal.exceptions import CommandError +from pip._internal.operations.build.build_tracker import get_build_tracker +from pip._internal.req.req_install import ( + InstallRequirement, + check_legacy_setup_py_options, +) +from pip._internal.utils.misc import ensure_dir, normalize_path +from pip._internal.utils.temp_dir import TempDirectory +from pip._internal.wheel_builder import build, should_build_for_wheel_command + +logger = logging.getLogger(__name__) + + +class WheelCommand(RequirementCommand): + """ + Build Wheel archives for your requirements and dependencies. + + Wheel is a built-package format, and offers the advantage of not + recompiling your software during every install. For more details, see the + wheel docs: https://wheel.readthedocs.io/en/latest/ + + 'pip wheel' uses the build system interface as described here: + https://pip.pypa.io/en/stable/reference/build-system/ + + """ + + usage = """ + %prog [options] ... + %prog [options] -r ... + %prog [options] [-e] ... + %prog [options] [-e] ... + %prog [options] ...""" + + def add_options(self) -> None: + self.cmd_opts.add_option( + "-w", + "--wheel-dir", + dest="wheel_dir", + metavar="dir", + default=os.curdir, + help=( + "Build wheels into , where the default is the " + "current working directory." + ), + ) + self.cmd_opts.add_option(cmdoptions.no_binary()) + self.cmd_opts.add_option(cmdoptions.only_binary()) + self.cmd_opts.add_option(cmdoptions.prefer_binary()) + self.cmd_opts.add_option(cmdoptions.no_build_isolation()) + self.cmd_opts.add_option(cmdoptions.use_pep517()) + self.cmd_opts.add_option(cmdoptions.no_use_pep517()) + self.cmd_opts.add_option(cmdoptions.check_build_deps()) + self.cmd_opts.add_option(cmdoptions.constraints()) + self.cmd_opts.add_option(cmdoptions.editable()) + self.cmd_opts.add_option(cmdoptions.requirements()) + self.cmd_opts.add_option(cmdoptions.src()) + self.cmd_opts.add_option(cmdoptions.ignore_requires_python()) + self.cmd_opts.add_option(cmdoptions.no_deps()) + self.cmd_opts.add_option(cmdoptions.progress_bar()) + + self.cmd_opts.add_option( + "--no-verify", + dest="no_verify", + action="store_true", + default=False, + help="Don't verify if built wheel is valid.", + ) + + self.cmd_opts.add_option(cmdoptions.config_settings()) + self.cmd_opts.add_option(cmdoptions.build_options()) + self.cmd_opts.add_option(cmdoptions.global_options()) + + self.cmd_opts.add_option( + "--pre", + action="store_true", + default=False, + help=( + "Include pre-release and development versions. By default, " + "pip only finds stable versions." + ), + ) + + self.cmd_opts.add_option(cmdoptions.require_hashes()) + + index_opts = cmdoptions.make_option_group( + cmdoptions.index_group, + self.parser, + ) + + self.parser.insert_option_group(0, index_opts) + self.parser.insert_option_group(0, self.cmd_opts) + + @with_cleanup + def run(self, options: Values, args: List[str]) -> int: + session = self.get_default_session(options) + + finder = self._build_package_finder(options, session) + + options.wheel_dir = normalize_path(options.wheel_dir) + ensure_dir(options.wheel_dir) + + build_tracker = self.enter_context(get_build_tracker()) + + directory = TempDirectory( + delete=not options.no_clean, + kind="wheel", + globally_managed=True, + ) + + reqs = self.get_requirements(args, options, finder, session) + check_legacy_setup_py_options(options, reqs) + + wheel_cache = WheelCache(options.cache_dir) + + preparer = self.make_requirement_preparer( + temp_build_dir=directory, + options=options, + build_tracker=build_tracker, + session=session, + finder=finder, + download_dir=options.wheel_dir, + use_user_site=False, + verbosity=self.verbosity, + ) + + resolver = self.make_resolver( + preparer=preparer, + finder=finder, + options=options, + wheel_cache=wheel_cache, + ignore_requires_python=options.ignore_requires_python, + use_pep517=options.use_pep517, + ) + + self.trace_basic_info(finder) + + requirement_set = resolver.resolve(reqs, check_supported_wheels=True) + + reqs_to_build: List[InstallRequirement] = [] + for req in requirement_set.requirements.values(): + if req.is_wheel: + preparer.save_linked_requirement(req) + elif should_build_for_wheel_command(req): + reqs_to_build.append(req) + + preparer.prepare_linked_requirements_more(requirement_set.requirements.values()) + requirement_set.warn_legacy_versions_and_specifiers() + + # build wheels + build_successes, build_failures = build( + reqs_to_build, + wheel_cache=wheel_cache, + verify=(not options.no_verify), + build_options=options.build_options or [], + global_options=options.global_options or [], + ) + for req in build_successes: + assert req.link and req.link.is_wheel + assert req.local_file_path + # copy from cache to target directory + try: + shutil.copy(req.local_file_path, options.wheel_dir) + except OSError as e: + logger.warning( + "Building wheel for %s failed: %s", + req.name, + e, + ) + build_failures.append(req) + if len(build_failures) != 0: + raise CommandError("Failed to build one or more wheels") + + return SUCCESS diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/configuration.py b/.venv/lib/python3.12/site-packages/pip/_internal/configuration.py new file mode 100644 index 00000000..c25273d5 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_internal/configuration.py @@ -0,0 +1,383 @@ +"""Configuration management setup + +Some terminology: +- name + As written in config files. +- value + Value associated with a name +- key + Name combined with it's section (section.name) +- variant + A single word describing where the configuration key-value pair came from +""" + +import configparser +import locale +import os +import sys +from typing import Any, Dict, Iterable, List, NewType, Optional, Tuple + +from pip._internal.exceptions import ( + ConfigurationError, + ConfigurationFileCouldNotBeLoaded, +) +from pip._internal.utils import appdirs +from pip._internal.utils.compat import WINDOWS +from pip._internal.utils.logging import getLogger +from pip._internal.utils.misc import ensure_dir, enum + +RawConfigParser = configparser.RawConfigParser # Shorthand +Kind = NewType("Kind", str) + +CONFIG_BASENAME = "pip.ini" if WINDOWS else "pip.conf" +ENV_NAMES_IGNORED = "version", "help" + +# The kinds of configurations there are. +kinds = enum( + USER="user", # User Specific + GLOBAL="global", # System Wide + SITE="site", # [Virtual] Environment Specific + ENV="env", # from PIP_CONFIG_FILE + ENV_VAR="env-var", # from Environment Variables +) +OVERRIDE_ORDER = kinds.GLOBAL, kinds.USER, kinds.SITE, kinds.ENV, kinds.ENV_VAR +VALID_LOAD_ONLY = kinds.USER, kinds.GLOBAL, kinds.SITE + +logger = getLogger(__name__) + + +# NOTE: Maybe use the optionx attribute to normalize keynames. +def _normalize_name(name: str) -> str: + """Make a name consistent regardless of source (environment or file)""" + name = name.lower().replace("_", "-") + if name.startswith("--"): + name = name[2:] # only prefer long opts + return name + + +def _disassemble_key(name: str) -> List[str]: + if "." not in name: + error_message = ( + "Key does not contain dot separated section and key. " + f"Perhaps you wanted to use 'global.{name}' instead?" + ) + raise ConfigurationError(error_message) + return name.split(".", 1) + + +def get_configuration_files() -> Dict[Kind, List[str]]: + global_config_files = [ + os.path.join(path, CONFIG_BASENAME) for path in appdirs.site_config_dirs("pip") + ] + + site_config_file = os.path.join(sys.prefix, CONFIG_BASENAME) + legacy_config_file = os.path.join( + os.path.expanduser("~"), + "pip" if WINDOWS else ".pip", + CONFIG_BASENAME, + ) + new_config_file = os.path.join(appdirs.user_config_dir("pip"), CONFIG_BASENAME) + return { + kinds.GLOBAL: global_config_files, + kinds.SITE: [site_config_file], + kinds.USER: [legacy_config_file, new_config_file], + } + + +class Configuration: + """Handles management of configuration. + + Provides an interface to accessing and managing configuration files. + + This class converts provides an API that takes "section.key-name" style + keys and stores the value associated with it as "key-name" under the + section "section". + + This allows for a clean interface wherein the both the section and the + key-name are preserved in an easy to manage form in the configuration files + and the data stored is also nice. + """ + + def __init__(self, isolated: bool, load_only: Optional[Kind] = None) -> None: + super().__init__() + + if load_only is not None and load_only not in VALID_LOAD_ONLY: + raise ConfigurationError( + "Got invalid value for load_only - should be one of {}".format( + ", ".join(map(repr, VALID_LOAD_ONLY)) + ) + ) + self.isolated = isolated + self.load_only = load_only + + # Because we keep track of where we got the data from + self._parsers: Dict[Kind, List[Tuple[str, RawConfigParser]]] = { + variant: [] for variant in OVERRIDE_ORDER + } + self._config: Dict[Kind, Dict[str, Any]] = { + variant: {} for variant in OVERRIDE_ORDER + } + self._modified_parsers: List[Tuple[str, RawConfigParser]] = [] + + def load(self) -> None: + """Loads configuration from configuration files and environment""" + self._load_config_files() + if not self.isolated: + self._load_environment_vars() + + def get_file_to_edit(self) -> Optional[str]: + """Returns the file with highest priority in configuration""" + assert self.load_only is not None, "Need to be specified a file to be editing" + + try: + return self._get_parser_to_modify()[0] + except IndexError: + return None + + def items(self) -> Iterable[Tuple[str, Any]]: + """Returns key-value pairs like dict.items() representing the loaded + configuration + """ + return self._dictionary.items() + + def get_value(self, key: str) -> Any: + """Get a value from the configuration.""" + orig_key = key + key = _normalize_name(key) + try: + return self._dictionary[key] + except KeyError: + # disassembling triggers a more useful error message than simply + # "No such key" in the case that the key isn't in the form command.option + _disassemble_key(key) + raise ConfigurationError(f"No such key - {orig_key}") + + def set_value(self, key: str, value: Any) -> None: + """Modify a value in the configuration.""" + key = _normalize_name(key) + self._ensure_have_load_only() + + assert self.load_only + fname, parser = self._get_parser_to_modify() + + if parser is not None: + section, name = _disassemble_key(key) + + # Modify the parser and the configuration + if not parser.has_section(section): + parser.add_section(section) + parser.set(section, name, value) + + self._config[self.load_only][key] = value + self._mark_as_modified(fname, parser) + + def unset_value(self, key: str) -> None: + """Unset a value in the configuration.""" + orig_key = key + key = _normalize_name(key) + self._ensure_have_load_only() + + assert self.load_only + if key not in self._config[self.load_only]: + raise ConfigurationError(f"No such key - {orig_key}") + + fname, parser = self._get_parser_to_modify() + + if parser is not None: + section, name = _disassemble_key(key) + if not ( + parser.has_section(section) and parser.remove_option(section, name) + ): + # The option was not removed. + raise ConfigurationError( + "Fatal Internal error [id=1]. Please report as a bug." + ) + + # The section may be empty after the option was removed. + if not parser.items(section): + parser.remove_section(section) + self._mark_as_modified(fname, parser) + + del self._config[self.load_only][key] + + def save(self) -> None: + """Save the current in-memory state.""" + self._ensure_have_load_only() + + for fname, parser in self._modified_parsers: + logger.info("Writing to %s", fname) + + # Ensure directory exists. + ensure_dir(os.path.dirname(fname)) + + # Ensure directory's permission(need to be writeable) + try: + with open(fname, "w") as f: + parser.write(f) + except OSError as error: + raise ConfigurationError( + f"An error occurred while writing to the configuration file " + f"{fname}: {error}" + ) + + # + # Private routines + # + + def _ensure_have_load_only(self) -> None: + if self.load_only is None: + raise ConfigurationError("Needed a specific file to be modifying.") + logger.debug("Will be working with %s variant only", self.load_only) + + @property + def _dictionary(self) -> Dict[str, Any]: + """A dictionary representing the loaded configuration.""" + # NOTE: Dictionaries are not populated if not loaded. So, conditionals + # are not needed here. + retval = {} + + for variant in OVERRIDE_ORDER: + retval.update(self._config[variant]) + + return retval + + def _load_config_files(self) -> None: + """Loads configuration from configuration files""" + config_files = dict(self.iter_config_files()) + if config_files[kinds.ENV][0:1] == [os.devnull]: + logger.debug( + "Skipping loading configuration files due to " + "environment's PIP_CONFIG_FILE being os.devnull" + ) + return + + for variant, files in config_files.items(): + for fname in files: + # If there's specific variant set in `load_only`, load only + # that variant, not the others. + if self.load_only is not None and variant != self.load_only: + logger.debug("Skipping file '%s' (variant: %s)", fname, variant) + continue + + parser = self._load_file(variant, fname) + + # Keeping track of the parsers used + self._parsers[variant].append((fname, parser)) + + def _load_file(self, variant: Kind, fname: str) -> RawConfigParser: + logger.verbose("For variant '%s', will try loading '%s'", variant, fname) + parser = self._construct_parser(fname) + + for section in parser.sections(): + items = parser.items(section) + self._config[variant].update(self._normalized_keys(section, items)) + + return parser + + def _construct_parser(self, fname: str) -> RawConfigParser: + parser = configparser.RawConfigParser() + # If there is no such file, don't bother reading it but create the + # parser anyway, to hold the data. + # Doing this is useful when modifying and saving files, where we don't + # need to construct a parser. + if os.path.exists(fname): + locale_encoding = locale.getpreferredencoding(False) + try: + parser.read(fname, encoding=locale_encoding) + except UnicodeDecodeError: + # See https://github.com/pypa/pip/issues/4963 + raise ConfigurationFileCouldNotBeLoaded( + reason=f"contains invalid {locale_encoding} characters", + fname=fname, + ) + except configparser.Error as error: + # See https://github.com/pypa/pip/issues/4893 + raise ConfigurationFileCouldNotBeLoaded(error=error) + return parser + + def _load_environment_vars(self) -> None: + """Loads configuration from environment variables""" + self._config[kinds.ENV_VAR].update( + self._normalized_keys(":env:", self.get_environ_vars()) + ) + + def _normalized_keys( + self, section: str, items: Iterable[Tuple[str, Any]] + ) -> Dict[str, Any]: + """Normalizes items to construct a dictionary with normalized keys. + + This routine is where the names become keys and are made the same + regardless of source - configuration files or environment. + """ + normalized = {} + for name, val in items: + key = section + "." + _normalize_name(name) + normalized[key] = val + return normalized + + def get_environ_vars(self) -> Iterable[Tuple[str, str]]: + """Returns a generator with all environmental vars with prefix PIP_""" + for key, val in os.environ.items(): + if key.startswith("PIP_"): + name = key[4:].lower() + if name not in ENV_NAMES_IGNORED: + yield name, val + + # XXX: This is patched in the tests. + def iter_config_files(self) -> Iterable[Tuple[Kind, List[str]]]: + """Yields variant and configuration files associated with it. + + This should be treated like items of a dictionary. The order + here doesn't affect what gets overridden. That is controlled + by OVERRIDE_ORDER. However this does control the order they are + displayed to the user. It's probably most ergononmic to display + things in the same order as OVERRIDE_ORDER + """ + # SMELL: Move the conditions out of this function + + env_config_file = os.environ.get("PIP_CONFIG_FILE", None) + config_files = get_configuration_files() + + yield kinds.GLOBAL, config_files[kinds.GLOBAL] + + # per-user config is not loaded when env_config_file exists + should_load_user_config = not self.isolated and not ( + env_config_file and os.path.exists(env_config_file) + ) + if should_load_user_config: + # The legacy config file is overridden by the new config file + yield kinds.USER, config_files[kinds.USER] + + # virtualenv config + yield kinds.SITE, config_files[kinds.SITE] + + if env_config_file is not None: + yield kinds.ENV, [env_config_file] + else: + yield kinds.ENV, [] + + def get_values_in_config(self, variant: Kind) -> Dict[str, Any]: + """Get values present in a config file""" + return self._config[variant] + + def _get_parser_to_modify(self) -> Tuple[str, RawConfigParser]: + # Determine which parser to modify + assert self.load_only + parsers = self._parsers[self.load_only] + if not parsers: + # This should not happen if everything works correctly. + raise ConfigurationError( + "Fatal Internal error [id=2]. Please report as a bug." + ) + + # Use the highest priority parser. + return parsers[-1] + + # XXX: This is patched in the tests. + def _mark_as_modified(self, fname: str, parser: RawConfigParser) -> None: + file_parser_tuple = (fname, parser) + if file_parser_tuple not in self._modified_parsers: + self._modified_parsers.append(file_parser_tuple) + + def __repr__(self) -> str: + return f"{self.__class__.__name__}({self._dictionary!r})" diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/distributions/__init__.py b/.venv/lib/python3.12/site-packages/pip/_internal/distributions/__init__.py new file mode 100644 index 00000000..9a89a838 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_internal/distributions/__init__.py @@ -0,0 +1,21 @@ +from pip._internal.distributions.base import AbstractDistribution +from pip._internal.distributions.sdist import SourceDistribution +from pip._internal.distributions.wheel import WheelDistribution +from pip._internal.req.req_install import InstallRequirement + + +def make_distribution_for_install_requirement( + install_req: InstallRequirement, +) -> AbstractDistribution: + """Returns a Distribution for the given InstallRequirement""" + # Editable requirements will always be source distributions. They use the + # legacy logic until we create a modern standard for them. + if install_req.editable: + return SourceDistribution(install_req) + + # If it's a wheel, it's a WheelDistribution + if install_req.is_wheel: + return WheelDistribution(install_req) + + # Otherwise, a SourceDistribution + return SourceDistribution(install_req) diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/distributions/__pycache__/__init__.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_internal/distributions/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..73ed6d1beaad13da2d6ba91a3b192aee7cfe7f2a GIT binary patch literal 1017 zcmaJq7?W!@`(wBpZg=*WnS-36 zu<(DtlGa%IXV{=uXf|GAVr6#;R8+oMIXuxY$;|uay*F>a@4fvvF>wRI+U$O6)Jh2b z(3in7F2LyqfFl&67$+#jHHA~`9SV;rX zWQs;=J>Cy^MB``Rh_eI!l-C)j9|BDIzSrvHZW=VHKOFa=E09o3T2FN_YB2#S3%L&gyhi;^FLtNA6Wi;XLtf{2t~*sZu`6dL8o%?l*&SOrF&0kYIePAn<_?hb zE=hXBB%~Jx&_?}JLQpn``s_3@yL?cRi5k!5&B!CVaEd`VNUnjmP0Qx7X4v xZYT7Sn1!nzxV#5Pzl1UFq4gem(nF7XXsvHf;>EAicl#x<-^;ho%3zB+zW^pCAmji5 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/distributions/__pycache__/base.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_internal/distributions/__pycache__/base.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..1b462908aa153c6f286c01bb8815255ec93c0b6d GIT binary patch literal 2938 zcmb7G&2QX96d&(byqjdR{h)1Bxmew zBUi~qa@HPbs1;QqDe?~CxyytP2y%XBvia8gOZ8Sd{;CvON;&^0e$1DZP<_`6EZ1Q+ z$iwe3bBQgAw=IVY2@|E0%onFDKaf_niE1#nbI$PtX4~(J3r$OkhHwIN>l{MzosZ3L zK=>F!5~QMVQb}>8lIAIq;c1?!Wv-B#!n2o$Dp`>`U+mo=mU&vJB0mZrwG;%Fxz$mr z6hME^w)#V$Inbjy`~*!^6nS2Z@B;kM7nKk8Se34ji%Mn3SyCPfch6QKc4h{>Ibffq z2$`i-NDVb@=KHkfN?K=tq&2xM$C5|OqXmrQ-K9jTzCR7?3kAD%TG(5 z3C02BlJ-`Zy4CZL9x5(+u8*$3QHc+%>MlbKM8G%;*j9?H8piJk!K0eEbj6iR5KiP~ zwQ1Qf4@g=Paw}0iMO+k)kg+FC$GXt$o`=1M9=OzkcmPhV$I86jAzI{bmxd2<#d?!o1T!NY8aMd z1%@H9^aoFqKjAk;owR-L)j;A1P&J^@mxS zRKLyw8sh?bwgUu!HbB7w)Ne5g;spDm4{!-cfd%Gjbl!Eu5mZ8Gf;9#WG~iRGgIR1< zK-;#+1(Hh|fi5g)o)jLF!stz$k@Uu7d0_$i+O}cmh_Fn!H3Zkzm2lU*8_YF4JGwmt zKP{yz*A+Pe+3+zJRPKN=EJa}$oxU+FzWV&OWq4GL;y%MLtdaXeWaQAD;^EusVTsq` z|1Emu>H=n3Ki8~L%utt6_KG)-In5#usaX1o(X!)+q zkQ2j_Sr_J#5l;i#`DO;}ljlF+Yb&sFCQ7^<18X^sLj-5s4-nHS#et`mdUa;ofS+n} z1olsgRO~NOc_)$z-d=_g77U}|@}`aQkYQYCGP|=fU>Mvrfp_3P6^Yt3OtY#PmRRT3 z1|k503R)6-Elfi*$-O8Q69s^3-Q^PhgGv0WAu;GMQ*~Wi9z=1t!(XPbZNn%lvIMgc z2;Ph!Dpjscd%Q z#^e{rZcg1JAa15fZY-K?7bB&;8=#+3vJhm{rud`bN>(!qh0<5$4WK^ literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/distributions/__pycache__/installed.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_internal/distributions/__pycache__/installed.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..9f1a4bb1cf544eb4a42fb5ca70569789ce8208db GIT binary patch literal 1776 zcma)6&2QX96d!-CcazO7N)u>Hi-khP3dPk(i3m&-LM-4#FPBy=l9-xyf?o$Kh^6s z1aj}`lYU1*=vVPG6>S2>9RQ~YBP@j|lDd*4upG*f(p3tqgleR9wF0Z59#y&(3CZX~ zgtZfdb)r0mwS{zztkN=m7qBJe#>Yt-#MBJ|U)lC}%3MFa8^9QN1K|OC{l4q(ySwCr zfMUYH(0tG3WH!hbt4+n2fbo3*r--1ggi%+dTm}1LX0&Sg%00?cHw+1$J;Kq~pOAzRPH4(amzu#e$V|%9 zTeX@A@>xINCXNX=X`Gsr5Dd|o2~!i7xgulJ8#C8Ij!YSO) z#xs=Q_IYuwB+HxLAPBJ|n6poq6X2s;m)?+dF|GkgbHVUq^sKQw27u;jCWE1S94CtLAQX7faUQ_UO*|FH!Lbi!1Gt|MmS#+3mn-nZu_hp<3$-GY;9{{VpO#KTr70r(f7PS78+su^%7eQ6|1+LiC#{9*I^^*<57u`)G|bXj|2 z_|`jP1mnoiwfeK>jgbc9NJrOhjw%8f==y7;sz5bVTYA0#sN7m?w$rNSdYUBx-7QaV zLU&r{-D%CTj9VVO&P-fN{`!2FAjF|H>2RmyN162MeBhM6Wo?SQ=WFr8xKq~qU3LpL m63-XE32LNBl5~cy|Aw~D(48~1`CMO->cdyte<2u)g#HE?2IETr literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/distributions/__pycache__/sdist.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_internal/distributions/__pycache__/sdist.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..4c1d776f84dd70eadaa9d36afd078ff80519b464 GIT binary patch literal 8564 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 G;C}#2*2m%i literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/distributions/__pycache__/wheel.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_internal/distributions/__pycache__/wheel.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..e2c890fe231bbf77e474d95d752bbde3a0163a50 GIT binary patch literal 2324 zcmaJ?&2JM&6rWvt*J}sIrbGxxfe}&#F2oB#NI^wNRFtY!38)lR@}b-H&NyDOA7*A9 zVylr*l>_aCBUk99MY;4?PW%DAn5GhF1rk!lp*Pb|RYI!N_jc`I2k0DT-n@D9=Dpwh zm|u&<0)g?#`h(`bSwjB6&2VS~V&f|yZV^V9;t^k|DGJi6r}~*%CZRK4*4JuULT5eQ z&((4Xt$Bu@ujTzht>918CKRHQj|tOP3CnS9EtBf6ZR;47{GYg~D6w&&6}e$xdq8h@ z>>vzW$M)PVw*uSez??c$myxiY=&TE?TW_N{@QW91XVG5Z=iGpCQOU&R4{gauh2qjV z*W1+%(8yA7NML4M`jMP-7)G|EFRIYJ-H=Hz7 zmRZfN4TNhsI5B{iUCq|=OydQn^9k^Jf~m}C7%UHb^t%vmPfQuLvwQV(-V$8$Ad=Lk ziG6g`zG|UBVSLeaC1oL(GzcRaaL%Y5bSPYH*}_Ixs4dg$k^+>p&OwdfPULlHJ7@u3 zoK+K5u`YPj7J;J-92hPbqYX$5@VrCrD)VxnGZ6BR5>u#{vF=vm?o-k)m96fpLM197$#iAR5Eoa!09XOnw2L=nT1s??q zZotjWbE_r7DAZ^#uC z*)p!ETNtpFxlf_4hI#X?@|K$zf-NJtslK`y<%R-p(eZ}Y*9P%kQKJ0jZ6%u6q~Gkv z8>|^>S{uA_iBvM(A3h6hCTY~<)aQ}S?8v4K5&8)y&Fcn~B!!TLAmN9i11ZdCnv9VA zNpfPYkJbm=wjkoazNBuRe3y^b3!P)K=vY(#Y^HgyPowGHWyDVb(HD(=32iAPu` zP%{w?8)N0e+5)v=T6*9~cUO`qV3*)fZ%bT28DU#u6+O;?`ncqU(5) z%ik?OEFJuCnG59!edhEp(f#Fn%lB9At*pWbdd(&pe$DrB-uxq}K z+5cWRfG=Pf0dCt!zL+>yDaMAC{63Zy7c9#USsTJ@#oH|FYTNcO!m!I(77HC93}{#_ zE~1V=&*BXHQsNz;1S%HzR|xDDakd_Yp4f+b^f!4c@k(I%B@==nzlLd*JXbTC0m0NK z`>LW%-9Gfw@jEkr5g<1*LuOw$vs0FO5@abWV%I@FX@jc?hO{ nMp2X}WcnF7`HY--LQegoW)<~0f$7EM9;MjZb>wdXYXZZ6QFL!w literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/distributions/base.py b/.venv/lib/python3.12/site-packages/pip/_internal/distributions/base.py new file mode 100644 index 00000000..6fb0d7b7 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_internal/distributions/base.py @@ -0,0 +1,51 @@ +import abc +from typing import Optional + +from pip._internal.index.package_finder import PackageFinder +from pip._internal.metadata.base import BaseDistribution +from pip._internal.req import InstallRequirement + + +class AbstractDistribution(metaclass=abc.ABCMeta): + """A base class for handling installable artifacts. + + The requirements for anything installable are as follows: + + - we must be able to determine the requirement name + (or we can't correctly handle the non-upgrade case). + + - for packages with setup requirements, we must also be able + to determine their requirements without installing additional + packages (for the same reason as run-time dependencies) + + - we must be able to create a Distribution object exposing the + above metadata. + + - if we need to do work in the build tracker, we must be able to generate a unique + string to identify the requirement in the build tracker. + """ + + def __init__(self, req: InstallRequirement) -> None: + super().__init__() + self.req = req + + @abc.abstractproperty + def build_tracker_id(self) -> Optional[str]: + """A string that uniquely identifies this requirement to the build tracker. + + If None, then this dist has no work to do in the build tracker, and + ``.prepare_distribution_metadata()`` will not be called.""" + raise NotImplementedError() + + @abc.abstractmethod + def get_metadata_distribution(self) -> BaseDistribution: + raise NotImplementedError() + + @abc.abstractmethod + def prepare_distribution_metadata( + self, + finder: PackageFinder, + build_isolation: bool, + check_build_deps: bool, + ) -> None: + raise NotImplementedError() diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/distributions/installed.py b/.venv/lib/python3.12/site-packages/pip/_internal/distributions/installed.py new file mode 100644 index 00000000..ab8d53be --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_internal/distributions/installed.py @@ -0,0 +1,29 @@ +from typing import Optional + +from pip._internal.distributions.base import AbstractDistribution +from pip._internal.index.package_finder import PackageFinder +from pip._internal.metadata import BaseDistribution + + +class InstalledDistribution(AbstractDistribution): + """Represents an installed package. + + This does not need any preparation as the required information has already + been computed. + """ + + @property + def build_tracker_id(self) -> Optional[str]: + return None + + def get_metadata_distribution(self) -> BaseDistribution: + assert self.req.satisfied_by is not None, "not actually installed" + return self.req.satisfied_by + + def prepare_distribution_metadata( + self, + finder: PackageFinder, + build_isolation: bool, + check_build_deps: bool, + ) -> None: + pass diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/distributions/sdist.py b/.venv/lib/python3.12/site-packages/pip/_internal/distributions/sdist.py new file mode 100644 index 00000000..15ff42b7 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_internal/distributions/sdist.py @@ -0,0 +1,156 @@ +import logging +from typing import Iterable, Optional, Set, Tuple + +from pip._internal.build_env import BuildEnvironment +from pip._internal.distributions.base import AbstractDistribution +from pip._internal.exceptions import InstallationError +from pip._internal.index.package_finder import PackageFinder +from pip._internal.metadata import BaseDistribution +from pip._internal.utils.subprocess import runner_with_spinner_message + +logger = logging.getLogger(__name__) + + +class SourceDistribution(AbstractDistribution): + """Represents a source distribution. + + The preparation step for these needs metadata for the packages to be + generated, either using PEP 517 or using the legacy `setup.py egg_info`. + """ + + @property + def build_tracker_id(self) -> Optional[str]: + """Identify this requirement uniquely by its link.""" + assert self.req.link + return self.req.link.url_without_fragment + + def get_metadata_distribution(self) -> BaseDistribution: + return self.req.get_dist() + + def prepare_distribution_metadata( + self, + finder: PackageFinder, + build_isolation: bool, + check_build_deps: bool, + ) -> None: + # Load pyproject.toml, to determine whether PEP 517 is to be used + self.req.load_pyproject_toml() + + # Set up the build isolation, if this requirement should be isolated + should_isolate = self.req.use_pep517 and build_isolation + if should_isolate: + # Setup an isolated environment and install the build backend static + # requirements in it. + self._prepare_build_backend(finder) + # Check that if the requirement is editable, it either supports PEP 660 or + # has a setup.py or a setup.cfg. This cannot be done earlier because we need + # to setup the build backend to verify it supports build_editable, nor can + # it be done later, because we want to avoid installing build requirements + # needlessly. Doing it here also works around setuptools generating + # UNKNOWN.egg-info when running get_requires_for_build_wheel on a directory + # without setup.py nor setup.cfg. + self.req.isolated_editable_sanity_check() + # Install the dynamic build requirements. + self._install_build_reqs(finder) + # Check if the current environment provides build dependencies + should_check_deps = self.req.use_pep517 and check_build_deps + if should_check_deps: + pyproject_requires = self.req.pyproject_requires + assert pyproject_requires is not None + conflicting, missing = self.req.build_env.check_requirements( + pyproject_requires + ) + if conflicting: + self._raise_conflicts("the backend dependencies", conflicting) + if missing: + self._raise_missing_reqs(missing) + self.req.prepare_metadata() + + def _prepare_build_backend(self, finder: PackageFinder) -> None: + # Isolate in a BuildEnvironment and install the build-time + # requirements. + pyproject_requires = self.req.pyproject_requires + assert pyproject_requires is not None + + self.req.build_env = BuildEnvironment() + self.req.build_env.install_requirements( + finder, pyproject_requires, "overlay", kind="build dependencies" + ) + conflicting, missing = self.req.build_env.check_requirements( + self.req.requirements_to_check + ) + if conflicting: + self._raise_conflicts("PEP 517/518 supported requirements", conflicting) + if missing: + logger.warning( + "Missing build requirements in pyproject.toml for %s.", + self.req, + ) + logger.warning( + "The project does not specify a build backend, and " + "pip cannot fall back to setuptools without %s.", + " and ".join(map(repr, sorted(missing))), + ) + + def _get_build_requires_wheel(self) -> Iterable[str]: + with self.req.build_env: + runner = runner_with_spinner_message("Getting requirements to build wheel") + backend = self.req.pep517_backend + assert backend is not None + with backend.subprocess_runner(runner): + return backend.get_requires_for_build_wheel() + + def _get_build_requires_editable(self) -> Iterable[str]: + with self.req.build_env: + runner = runner_with_spinner_message( + "Getting requirements to build editable" + ) + backend = self.req.pep517_backend + assert backend is not None + with backend.subprocess_runner(runner): + return backend.get_requires_for_build_editable() + + def _install_build_reqs(self, finder: PackageFinder) -> None: + # Install any extra build dependencies that the backend requests. + # This must be done in a second pass, as the pyproject.toml + # dependencies must be installed before we can call the backend. + if ( + self.req.editable + and self.req.permit_editable_wheels + and self.req.supports_pyproject_editable() + ): + build_reqs = self._get_build_requires_editable() + else: + build_reqs = self._get_build_requires_wheel() + conflicting, missing = self.req.build_env.check_requirements(build_reqs) + if conflicting: + self._raise_conflicts("the backend dependencies", conflicting) + self.req.build_env.install_requirements( + finder, missing, "normal", kind="backend dependencies" + ) + + def _raise_conflicts( + self, conflicting_with: str, conflicting_reqs: Set[Tuple[str, str]] + ) -> None: + format_string = ( + "Some build dependencies for {requirement} " + "conflict with {conflicting_with}: {description}." + ) + error_message = format_string.format( + requirement=self.req, + conflicting_with=conflicting_with, + description=", ".join( + f"{installed} is incompatible with {wanted}" + for installed, wanted in sorted(conflicting_reqs) + ), + ) + raise InstallationError(error_message) + + def _raise_missing_reqs(self, missing: Set[str]) -> None: + format_string = ( + "Some build dependencies for {requirement} are missing: {missing}." + ) + error_message = format_string.format( + requirement=self.req, missing=", ".join(map(repr, sorted(missing))) + ) + raise InstallationError(error_message) diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/distributions/wheel.py b/.venv/lib/python3.12/site-packages/pip/_internal/distributions/wheel.py new file mode 100644 index 00000000..eb16e25c --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_internal/distributions/wheel.py @@ -0,0 +1,40 @@ +from typing import Optional + +from pip._vendor.packaging.utils import canonicalize_name + +from pip._internal.distributions.base import AbstractDistribution +from pip._internal.index.package_finder import PackageFinder +from pip._internal.metadata import ( + BaseDistribution, + FilesystemWheel, + get_wheel_distribution, +) + + +class WheelDistribution(AbstractDistribution): + """Represents a wheel distribution. + + This does not need any preparation as wheels can be directly unpacked. + """ + + @property + def build_tracker_id(self) -> Optional[str]: + return None + + def get_metadata_distribution(self) -> BaseDistribution: + """Loads the metadata from the wheel file into memory and returns a + Distribution that uses it, not relying on the wheel file or + requirement. + """ + assert self.req.local_file_path, "Set as part of preparation during download" + assert self.req.name, "Wheels are never unnamed" + wheel = FilesystemWheel(self.req.local_file_path) + return get_wheel_distribution(wheel, canonicalize_name(self.req.name)) + + def prepare_distribution_metadata( + self, + finder: PackageFinder, + build_isolation: bool, + check_build_deps: bool, + ) -> None: + pass diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/exceptions.py b/.venv/lib/python3.12/site-packages/pip/_internal/exceptions.py new file mode 100644 index 00000000..5007a622 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_internal/exceptions.py @@ -0,0 +1,728 @@ +"""Exceptions used throughout package. + +This module MUST NOT try to import from anything within `pip._internal` to +operate. This is expected to be importable from any/all files within the +subpackage and, thus, should not depend on them. +""" + +import configparser +import contextlib +import locale +import logging +import pathlib +import re +import sys +from itertools import chain, groupby, repeat +from typing import TYPE_CHECKING, Dict, Iterator, List, Optional, Union + +from pip._vendor.requests.models import Request, Response +from pip._vendor.rich.console import Console, ConsoleOptions, RenderResult +from pip._vendor.rich.markup import escape +from pip._vendor.rich.text import Text + +if TYPE_CHECKING: + from hashlib import _Hash + from typing import Literal + + from pip._internal.metadata import BaseDistribution + from pip._internal.req.req_install import InstallRequirement + +logger = logging.getLogger(__name__) + + +# +# Scaffolding +# +def _is_kebab_case(s: str) -> bool: + return re.match(r"^[a-z]+(-[a-z]+)*$", s) is not None + + +def _prefix_with_indent( + s: Union[Text, str], + console: Console, + *, + prefix: str, + indent: str, +) -> Text: + if isinstance(s, Text): + text = s + else: + text = console.render_str(s) + + return console.render_str(prefix, overflow="ignore") + console.render_str( + f"\n{indent}", overflow="ignore" + ).join(text.split(allow_blank=True)) + + +class PipError(Exception): + """The base pip error.""" + + +class DiagnosticPipError(PipError): + """An error, that presents diagnostic information to the user. + + This contains a bunch of logic, to enable pretty presentation of our error + messages. Each error gets a unique reference. Each error can also include + additional context, a hint and/or a note -- which are presented with the + main error message in a consistent style. + + This is adapted from the error output styling in `sphinx-theme-builder`. + """ + + reference: str + + def __init__( + self, + *, + kind: 'Literal["error", "warning"]' = "error", + reference: Optional[str] = None, + message: Union[str, Text], + context: Optional[Union[str, Text]], + hint_stmt: Optional[Union[str, Text]], + note_stmt: Optional[Union[str, Text]] = None, + link: Optional[str] = None, + ) -> None: + # Ensure a proper reference is provided. + if reference is None: + assert hasattr(self, "reference"), "error reference not provided!" + reference = self.reference + assert _is_kebab_case(reference), "error reference must be kebab-case!" + + self.kind = kind + self.reference = reference + + self.message = message + self.context = context + + self.note_stmt = note_stmt + self.hint_stmt = hint_stmt + + self.link = link + + super().__init__(f"<{self.__class__.__name__}: {self.reference}>") + + def __repr__(self) -> str: + return ( + f"<{self.__class__.__name__}(" + f"reference={self.reference!r}, " + f"message={self.message!r}, " + f"context={self.context!r}, " + f"note_stmt={self.note_stmt!r}, " + f"hint_stmt={self.hint_stmt!r}" + ")>" + ) + + def __rich_console__( + self, + console: Console, + options: ConsoleOptions, + ) -> RenderResult: + colour = "red" if self.kind == "error" else "yellow" + + yield f"[{colour} bold]{self.kind}[/]: [bold]{self.reference}[/]" + yield "" + + if not options.ascii_only: + # Present the main message, with relevant context indented. + if self.context is not None: + yield _prefix_with_indent( + self.message, + console, + prefix=f"[{colour}]×[/] ", + indent=f"[{colour}]│[/] ", + ) + yield _prefix_with_indent( + self.context, + console, + prefix=f"[{colour}]╰─>[/] ", + indent=f"[{colour}] [/] ", + ) + else: + yield _prefix_with_indent( + self.message, + console, + prefix="[red]×[/] ", + indent=" ", + ) + else: + yield self.message + if self.context is not None: + yield "" + yield self.context + + if self.note_stmt is not None or self.hint_stmt is not None: + yield "" + + if self.note_stmt is not None: + yield _prefix_with_indent( + self.note_stmt, + console, + prefix="[magenta bold]note[/]: ", + indent=" ", + ) + if self.hint_stmt is not None: + yield _prefix_with_indent( + self.hint_stmt, + console, + prefix="[cyan bold]hint[/]: ", + indent=" ", + ) + + if self.link is not None: + yield "" + yield f"Link: {self.link}" + + +# +# Actual Errors +# +class ConfigurationError(PipError): + """General exception in configuration""" + + +class InstallationError(PipError): + """General exception during installation""" + + +class UninstallationError(PipError): + """General exception during uninstallation""" + + +class MissingPyProjectBuildRequires(DiagnosticPipError): + """Raised when pyproject.toml has `build-system`, but no `build-system.requires`.""" + + reference = "missing-pyproject-build-system-requires" + + def __init__(self, *, package: str) -> None: + super().__init__( + message=f"Can not process {escape(package)}", + context=Text( + "This package has an invalid pyproject.toml file.\n" + "The [build-system] table is missing the mandatory `requires` key." + ), + note_stmt="This is an issue with the package mentioned above, not pip.", + hint_stmt=Text("See PEP 518 for the detailed specification."), + ) + + +class InvalidPyProjectBuildRequires(DiagnosticPipError): + """Raised when pyproject.toml an invalid `build-system.requires`.""" + + reference = "invalid-pyproject-build-system-requires" + + def __init__(self, *, package: str, reason: str) -> None: + super().__init__( + message=f"Can not process {escape(package)}", + context=Text( + "This package has an invalid `build-system.requires` key in " + f"pyproject.toml.\n{reason}" + ), + note_stmt="This is an issue with the package mentioned above, not pip.", + hint_stmt=Text("See PEP 518 for the detailed specification."), + ) + + +class NoneMetadataError(PipError): + """Raised when accessing a Distribution's "METADATA" or "PKG-INFO". + + This signifies an inconsistency, when the Distribution claims to have + the metadata file (if not, raise ``FileNotFoundError`` instead), but is + not actually able to produce its content. This may be due to permission + errors. + """ + + def __init__( + self, + dist: "BaseDistribution", + metadata_name: str, + ) -> None: + """ + :param dist: A Distribution object. + :param metadata_name: The name of the metadata being accessed + (can be "METADATA" or "PKG-INFO"). + """ + self.dist = dist + self.metadata_name = metadata_name + + def __str__(self) -> str: + # Use `dist` in the error message because its stringification + # includes more information, like the version and location. + return f"None {self.metadata_name} metadata found for distribution: {self.dist}" + + +class UserInstallationInvalid(InstallationError): + """A --user install is requested on an environment without user site.""" + + def __str__(self) -> str: + return "User base directory is not specified" + + +class InvalidSchemeCombination(InstallationError): + def __str__(self) -> str: + before = ", ".join(str(a) for a in self.args[:-1]) + return f"Cannot set {before} and {self.args[-1]} together" + + +class DistributionNotFound(InstallationError): + """Raised when a distribution cannot be found to satisfy a requirement""" + + +class RequirementsFileParseError(InstallationError): + """Raised when a general error occurs parsing a requirements file line.""" + + +class BestVersionAlreadyInstalled(PipError): + """Raised when the most up-to-date version of a package is already + installed.""" + + +class BadCommand(PipError): + """Raised when virtualenv or a command is not found""" + + +class CommandError(PipError): + """Raised when there is an error in command-line arguments""" + + +class PreviousBuildDirError(PipError): + """Raised when there's a previous conflicting build directory""" + + +class NetworkConnectionError(PipError): + """HTTP connection error""" + + def __init__( + self, + error_msg: str, + response: Optional[Response] = None, + request: Optional[Request] = None, + ) -> None: + """ + Initialize NetworkConnectionError with `request` and `response` + objects. + """ + self.response = response + self.request = request + self.error_msg = error_msg + if ( + self.response is not None + and not self.request + and hasattr(response, "request") + ): + self.request = self.response.request + super().__init__(error_msg, response, request) + + def __str__(self) -> str: + return str(self.error_msg) + + +class InvalidWheelFilename(InstallationError): + """Invalid wheel filename.""" + + +class UnsupportedWheel(InstallationError): + """Unsupported wheel.""" + + +class InvalidWheel(InstallationError): + """Invalid (e.g. corrupt) wheel.""" + + def __init__(self, location: str, name: str): + self.location = location + self.name = name + + def __str__(self) -> str: + return f"Wheel '{self.name}' located at {self.location} is invalid." + + +class MetadataInconsistent(InstallationError): + """Built metadata contains inconsistent information. + + This is raised when the metadata contains values (e.g. name and version) + that do not match the information previously obtained from sdist filename, + user-supplied ``#egg=`` value, or an install requirement name. + """ + + def __init__( + self, ireq: "InstallRequirement", field: str, f_val: str, m_val: str + ) -> None: + self.ireq = ireq + self.field = field + self.f_val = f_val + self.m_val = m_val + + def __str__(self) -> str: + return ( + f"Requested {self.ireq} has inconsistent {self.field}: " + f"expected {self.f_val!r}, but metadata has {self.m_val!r}" + ) + + +class InstallationSubprocessError(DiagnosticPipError, InstallationError): + """A subprocess call failed.""" + + reference = "subprocess-exited-with-error" + + def __init__( + self, + *, + command_description: str, + exit_code: int, + output_lines: Optional[List[str]], + ) -> None: + if output_lines is None: + output_prompt = Text("See above for output.") + else: + output_prompt = ( + Text.from_markup(f"[red][{len(output_lines)} lines of output][/]\n") + + Text("".join(output_lines)) + + Text.from_markup(R"[red]\[end of output][/]") + ) + + super().__init__( + message=( + f"[green]{escape(command_description)}[/] did not run successfully.\n" + f"exit code: {exit_code}" + ), + context=output_prompt, + hint_stmt=None, + note_stmt=( + "This error originates from a subprocess, and is likely not a " + "problem with pip." + ), + ) + + self.command_description = command_description + self.exit_code = exit_code + + def __str__(self) -> str: + return f"{self.command_description} exited with {self.exit_code}" + + +class MetadataGenerationFailed(InstallationSubprocessError, InstallationError): + reference = "metadata-generation-failed" + + def __init__( + self, + *, + package_details: str, + ) -> None: + super(InstallationSubprocessError, self).__init__( + message="Encountered error while generating package metadata.", + context=escape(package_details), + hint_stmt="See above for details.", + note_stmt="This is an issue with the package mentioned above, not pip.", + ) + + def __str__(self) -> str: + return "metadata generation failed" + + +class HashErrors(InstallationError): + """Multiple HashError instances rolled into one for reporting""" + + def __init__(self) -> None: + self.errors: List["HashError"] = [] + + def append(self, error: "HashError") -> None: + self.errors.append(error) + + def __str__(self) -> str: + lines = [] + self.errors.sort(key=lambda e: e.order) + for cls, errors_of_cls in groupby(self.errors, lambda e: e.__class__): + lines.append(cls.head) + lines.extend(e.body() for e in errors_of_cls) + if lines: + return "\n".join(lines) + return "" + + def __bool__(self) -> bool: + return bool(self.errors) + + +class HashError(InstallationError): + """ + A failure to verify a package against known-good hashes + + :cvar order: An int sorting hash exception classes by difficulty of + recovery (lower being harder), so the user doesn't bother fretting + about unpinned packages when he has deeper issues, like VCS + dependencies, to deal with. Also keeps error reports in a + deterministic order. + :cvar head: A section heading for display above potentially many + exceptions of this kind + :ivar req: The InstallRequirement that triggered this error. This is + pasted on after the exception is instantiated, because it's not + typically available earlier. + + """ + + req: Optional["InstallRequirement"] = None + head = "" + order: int = -1 + + def body(self) -> str: + """Return a summary of me for display under the heading. + + This default implementation simply prints a description of the + triggering requirement. + + :param req: The InstallRequirement that provoked this error, with + its link already populated by the resolver's _populate_link(). + + """ + return f" {self._requirement_name()}" + + def __str__(self) -> str: + return f"{self.head}\n{self.body()}" + + def _requirement_name(self) -> str: + """Return a description of the requirement that triggered me. + + This default implementation returns long description of the req, with + line numbers + + """ + return str(self.req) if self.req else "unknown package" + + +class VcsHashUnsupported(HashError): + """A hash was provided for a version-control-system-based requirement, but + we don't have a method for hashing those.""" + + order = 0 + head = ( + "Can't verify hashes for these requirements because we don't " + "have a way to hash version control repositories:" + ) + + +class DirectoryUrlHashUnsupported(HashError): + """A hash was provided for a version-control-system-based requirement, but + we don't have a method for hashing those.""" + + order = 1 + head = ( + "Can't verify hashes for these file:// requirements because they " + "point to directories:" + ) + + +class HashMissing(HashError): + """A hash was needed for a requirement but is absent.""" + + order = 2 + head = ( + "Hashes are required in --require-hashes mode, but they are " + "missing from some requirements. Here is a list of those " + "requirements along with the hashes their downloaded archives " + "actually had. Add lines like these to your requirements files to " + "prevent tampering. (If you did not enable --require-hashes " + "manually, note that it turns on automatically when any package " + "has a hash.)" + ) + + def __init__(self, gotten_hash: str) -> None: + """ + :param gotten_hash: The hash of the (possibly malicious) archive we + just downloaded + """ + self.gotten_hash = gotten_hash + + def body(self) -> str: + # Dodge circular import. + from pip._internal.utils.hashes import FAVORITE_HASH + + package = None + if self.req: + # In the case of URL-based requirements, display the original URL + # seen in the requirements file rather than the package name, + # so the output can be directly copied into the requirements file. + package = ( + self.req.original_link + if self.req.is_direct + # In case someone feeds something downright stupid + # to InstallRequirement's constructor. + else getattr(self.req, "req", None) + ) + return " {} --hash={}:{}".format( + package or "unknown package", FAVORITE_HASH, self.gotten_hash + ) + + +class HashUnpinned(HashError): + """A requirement had a hash specified but was not pinned to a specific + version.""" + + order = 3 + head = ( + "In --require-hashes mode, all requirements must have their " + "versions pinned with ==. These do not:" + ) + + +class HashMismatch(HashError): + """ + Distribution file hash values don't match. + + :ivar package_name: The name of the package that triggered the hash + mismatch. Feel free to write to this after the exception is raise to + improve its error message. + + """ + + order = 4 + head = ( + "THESE PACKAGES DO NOT MATCH THE HASHES FROM THE REQUIREMENTS " + "FILE. If you have updated the package versions, please update " + "the hashes. Otherwise, examine the package contents carefully; " + "someone may have tampered with them." + ) + + def __init__(self, allowed: Dict[str, List[str]], gots: Dict[str, "_Hash"]) -> None: + """ + :param allowed: A dict of algorithm names pointing to lists of allowed + hex digests + :param gots: A dict of algorithm names pointing to hashes we + actually got from the files under suspicion + """ + self.allowed = allowed + self.gots = gots + + def body(self) -> str: + return f" {self._requirement_name()}:\n{self._hash_comparison()}" + + def _hash_comparison(self) -> str: + """ + Return a comparison of actual and expected hash values. + + Example:: + + Expected sha256 abcdeabcdeabcdeabcdeabcdeabcdeabcdeabcdeabcde + or 123451234512345123451234512345123451234512345 + Got bcdefbcdefbcdefbcdefbcdefbcdefbcdefbcdefbcdef + + """ + + def hash_then_or(hash_name: str) -> "chain[str]": + # For now, all the decent hashes have 6-char names, so we can get + # away with hard-coding space literals. + return chain([hash_name], repeat(" or")) + + lines: List[str] = [] + for hash_name, expecteds in self.allowed.items(): + prefix = hash_then_or(hash_name) + lines.extend((f" Expected {next(prefix)} {e}") for e in expecteds) + lines.append( + f" Got {self.gots[hash_name].hexdigest()}\n" + ) + return "\n".join(lines) + + +class UnsupportedPythonVersion(InstallationError): + """Unsupported python version according to Requires-Python package + metadata.""" + + +class ConfigurationFileCouldNotBeLoaded(ConfigurationError): + """When there are errors while loading a configuration file""" + + def __init__( + self, + reason: str = "could not be loaded", + fname: Optional[str] = None, + error: Optional[configparser.Error] = None, + ) -> None: + super().__init__(error) + self.reason = reason + self.fname = fname + self.error = error + + def __str__(self) -> str: + if self.fname is not None: + message_part = f" in {self.fname}." + else: + assert self.error is not None + message_part = f".\n{self.error}\n" + return f"Configuration file {self.reason}{message_part}" + + +_DEFAULT_EXTERNALLY_MANAGED_ERROR = f"""\ +The Python environment under {sys.prefix} is managed externally, and may not be +manipulated by the user. Please use specific tooling from the distributor of +the Python installation to interact with this environment instead. +""" + + +class ExternallyManagedEnvironment(DiagnosticPipError): + """The current environment is externally managed. + + This is raised when the current environment is externally managed, as + defined by `PEP 668`_. The ``EXTERNALLY-MANAGED`` configuration is checked + and displayed when the error is bubbled up to the user. + + :param error: The error message read from ``EXTERNALLY-MANAGED``. + """ + + reference = "externally-managed-environment" + + def __init__(self, error: Optional[str]) -> None: + if error is None: + context = Text(_DEFAULT_EXTERNALLY_MANAGED_ERROR) + else: + context = Text(error) + super().__init__( + message="This environment is externally managed", + context=context, + note_stmt=( + "If you believe this is a mistake, please contact your " + "Python installation or OS distribution provider. " + "You can override this, at the risk of breaking your Python " + "installation or OS, by passing --break-system-packages." + ), + hint_stmt=Text("See PEP 668 for the detailed specification."), + ) + + @staticmethod + def _iter_externally_managed_error_keys() -> Iterator[str]: + # LC_MESSAGES is in POSIX, but not the C standard. The most common + # platform that does not implement this category is Windows, where + # using other categories for console message localization is equally + # unreliable, so we fall back to the locale-less vendor message. This + # can always be re-evaluated when a vendor proposes a new alternative. + try: + category = locale.LC_MESSAGES + except AttributeError: + lang: Optional[str] = None + else: + lang, _ = locale.getlocale(category) + if lang is not None: + yield f"Error-{lang}" + for sep in ("-", "_"): + before, found, _ = lang.partition(sep) + if not found: + continue + yield f"Error-{before}" + yield "Error" + + @classmethod + def from_config( + cls, + config: Union[pathlib.Path, str], + ) -> "ExternallyManagedEnvironment": + parser = configparser.ConfigParser(interpolation=None) + try: + parser.read(config, encoding="utf-8") + section = parser["externally-managed"] + for key in cls._iter_externally_managed_error_keys(): + with contextlib.suppress(KeyError): + return cls(section[key]) + except KeyError: + pass + except (OSError, UnicodeDecodeError, configparser.ParsingError): + from pip._internal.utils._log import VERBOSE + + exc_info = logger.isEnabledFor(VERBOSE) + logger.warning("Failed to read %s", config, exc_info=exc_info) + return cls(None) diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/index/__init__.py b/.venv/lib/python3.12/site-packages/pip/_internal/index/__init__.py new file mode 100644 index 00000000..7a17b7b3 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_internal/index/__init__.py @@ -0,0 +1,2 @@ +"""Index interaction code +""" diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/index/__pycache__/__init__.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_internal/index/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..9595a10a27031ce4409093be478ccf4ff18f117d GIT binary patch literal 308 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 N&wJkEC}qI(e*u-9-6{Y8 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/index/__pycache__/package_finder.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_internal/index/__pycache__/package_finder.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..87e4cc8ed5a98281bfbcd5467d28c2cb33fc54f2 GIT binary patch literal 40811 zcmdtL3vgRkdM0@Bev$wQkOcU=e2E0bhe%QHm-Qee$`Y-%WVg+J&=7GYfg%Cr0<=to zbgP}-4dwQZsdOizV)vR(GSlj@Q={IU*{G{CHQh7Wl(&+d0z^505xIuFakeJeswv3S z#BJBq?tcF{_g*{*wYpP1vsHT~UYvX0_niOy=YO65{zXNFUBETAmb$d|9YOdTdQdN$ z64+SR3&KqyBuoe)T}VHpo6xae{e+(V8YT?v*EnHhzorQjeho9`S<8fF);eLGwN2P& z?GyG{$An|nIpLhGn5dYooT$`Mea0Ertb4-E!ls$3+3JaE7B?vY6PWFp=wV^^%+}f7iCz}2n(3SEpXg`d>Y0Jr zZ4=vA*fTRYJ2WxG!rqzfv%?d^EL=0QV|M4nP8P16*)_X+VmAxd&Fq=oJF%CAeKY%J z_fPC+VgJm5*@F`Yb%JD(%@~{dnM1QrO+2L&E()QBKhRAa)(g^*bmTo9pP7lHQl(T8 zYV_k#s*sLJBNy}(=J$zF7IzHswUR?R#&V5bFw^hEahnj@8ETTYgqqb{7YvjVYLQNa zMCrr@YpC^Grin4Va9jwreM<XeaP3Z zhS17(*3z*H=Fl+Oc(x$UA&pR9kg@|QXXo{SU5VCbqjT|aM2d;BG!u+VAu%2m&&;10 z>lMS1ko1Za`#XB8@qjg3aqh)4Ba=r@j2wM>Z2WlEHY!IGQsk@@&sxXgk{mogBV~=J z!ZAEQb0r>*MuIb010|cz&0Rs7>A46Z1G=m|c14;BUkFQb3{Qr0!Hf8*nhHjuk?>S- zCY+EaBf(h-kj! z8bw`G@u-}2utq0m5J~;5Q5p(T?MH)=P&kBfLqf%9RGtmSk47VLIXZ&~3`XQKejR6} zpgeWy>{Rp$<@27EsAiNtBTE+~S&B?aRI&41P`)U|&&hh$_E00ZHQQP;PeeTSeXP!Mbax7o(Sro9Ho4+C*p9{*N zfI+SUaAZ9+8`@AjE5+t!;@OHb!Kur^i_$2yF8@Ht8fgTx&X@UYPKF~FqS@N;#Yj|^ zN?XsGWhp)6YJjSKo%dz@_@lxw;|&71!X85WF>>5K55k>}G1^TvW& zT=~*!C}jGjYO%BnakpA#x>^n8e>(&jDE|p~;~?vuuvUtCytsB}o=>6EB8emLk9(1j3>+(_%O#PDN+0V8H-Ih*!h$OJYzYVCagm zdfF7gj`i_^Z6X%xoYZe;se7^fg0pI63~cs_hsEuEal$HM^a2o7oY2=5S&9M7!;y=u zE4(gN1$A~dI31PyX2SqC+^6KIS|cGmwgmbMn=22Odqu2C{<2Y#XJKt^dIPOl_9kNZ z!Y>+~NLRdIfOt0oI=Kfk`Gu}OF-&L#@5dH@3_}+RUtnk>t`2l}XH1Ml;~0p&Vy7Iy zEjF4sGDb^_M&m*d*e-hF0SLU+~lN=q>@+ifM@?N~zcKpTu1h;EKuCdWn`M}qgak|q^G3699{?11xgWtYX z@vv5KH)U%5H!t0|^mgozw%>NHwd`1{-MMu9BTwLgyY^<~jmnJoWX9W&@%qxI*B34@ZwB3#eoLTE6Ba0>{v-Zi!*=T5PMnc#*Ir$rN!5JcE@MM%CbF*1va4sIr z+CWip;v`$8p$rvbv*!6=0NS+>Pnjped2}&~3kZJC8sth}*Y>jN89#ylJ~(`;Oz)n zl`M>~w@9{-RkDX{AocAm#vU?Us0=y4NH{}Iuqt*iEH25Suqnn+1&D9=ydmJ?gysls z5kU}|iDPWn0QqzUSd8tJgp4JgPKcb4LX2VCpom>D9-f+;3Cf~^g!smh@b+Dq@BYf* z(Dtu=wg1ppw)O4#+Mz(lc-E=pVlb4g)TnL#Y~eE=%T~l05vt;BCn)OZ)kzL34DHIj z7@H}LV!{J0R|EbwUc&9BuwcHX59t@p3#J8O5;6Q*(BmmjuYu~ARF}E1V89dAz%HVF zCKXxaW!QKbzPW`y_fV#a2DiOFKR5Ri0xifzcf=^Nv{};iC3kW8TO0zIsNe% zYK;a&As>51ssCbs0ZFGOh|=tNDHOs$V_-NzDPBiNQE$H#dV;;qu87 zkJQT;C{h^+n1+KdFR>f%K}0mD*qBt*E{I&#ojpSVF(^yo6-k~A#}#fJ(4=8{jveT| z(DEiw`Q?e)a3oJz74<|J74b16!N^^JO2L@M`o&|?g&+n_q?rrsK|YNbd7N&~(CrM} zh^CAYUSquzMYes>rW=lg>WZkdEze2?h;RbqaSa7x_9f3?|Ptw`8-V|6e z-nZ6gTKed>G1GN`emgS0mL=mG6`AI(^w_Z8*u7-@(CX)#7LmA98e+r)p*}*58-E1$ z7xGBmqJBX)jfm1q9xTtu#X6B+L#O#tujpcW$lvsfhBz_S>?%iHfu%LPC45hRL4Ov= zxZEZw*O!k6!>pTjs&(go7fs8$h>SFKL(V5@wA@!Q28+f;(}F2hUC=*`-OU#X8ClOv zag70fStr*#p$zI(-zh{4us2_y8bU2S3#NFj`g|F5jocctAh%DA%l}esMI%|Jrwaz^ zX~>EZYo$bmy7x(T1h(wyy`p`4B06JgRj5q6Ix3 z+?>8(QTrU*6{?&jMycdNxg8}@cvS0EOD|eOt_AB`Ldae64m&rORo=loy?b-oqCQlG zxBF#ai$=3GRQ$%aRDPU;2VJKOZp%{f9|ZNBUa_QyccvCZWe zlKOF(UpFLupeK68kQ9e(E6_^>C&;269^XTxD#$wGg|&WAMMW|~6ycIQP+Thc3!&u& zQWg~Ute0qUBFmsUM*35abgdeZQgQahlXgnQ`#fYs@d#Q@S>AnAs_TNMUmrZL^3t>6!kBogd$VGJR~ ztP>2;q{3o z+dN6V3r@u+l`+K|L}&A_Q3>=_3;j#Y{<2;`dNNY{bAg6R+T@Te4&v zt~U?9esHxT-8Ou$Z8%foPuFy%YP#;#?74k#Y4m}&@#Zr(o=JA?y}R>nce3+n(sL~7 zJhtv|r5%m;9F3W}hICzbs;+zKM5em-X7`Qm*N?6@itn7hb^5JmuAg2yu{`yWr}lwQ zO#8N{eB1AQHCcBg={}NiRo}1gPr3R(@iwNt11ax7rgrGg_B)+P@9vz*;H%CF28f-l zg4+in-r}vrl&klS=TBYt29IYNcH9Z2cOFmeJf7TfBIzGnHs`BE54l`B%=p z^Wv=+Q?4zyx8K?F&ky9Yd_7rrEa^Um9(*@?&()dJo2zOcG`6mGe82DAzO}|}%Oj7R zg12+^x$jTBJF({3cIQ}n_(W>>#68c6Ov|pj#`Ny7)b6q5u9F|MCYw$zk3MMZNH^|G zHSWA?PBt7$dJnC)cBWg0Q?0}4*3ne!=vwQE<;qN5XW!g1vI1ib5xK zU)7oVRy%S6{odYj$9H%8ou<^*LyuSl?<{pOYu6~6Sk`=r86>csq)4$(f_I=PVdIpZ z36OQMt#Lf^YnoC@u8=OSiG&vfl@BPQb!kZ1l}|qli=ssX{)~`%KsbF&_!{;m2&&EH zNUWutp>V(Akng#E3+q zth}h2P=Qqee|zEiLnqbZ7T)dcGrIFK0$W+FuGgAD{7%CgeTQ&wI~QJ3Ng zGkKM%YM^)F!^ygIDF{C2yo6U*SXFeoo2e%h_C_5*rhNhzF-tE9kO%oEg_BbAcB^{aoGBiI>wFpm)~4W81OTt z$Q4nQAkg+kH1h^A1y2h)QVI%RgKl(DS75TGD`&Fxo>I^6>2B(P6&sAgyzs|{t2#M> zs=ykt?UN{PD982v+ZaI}qnA6=phHub3 z9PHQf?m)9KQr`YY;pf+cdv#-XY;PM@#@-pfHJqnruHwUj=kzm+p=1ddkqMW>97{<)OO3*HU1C{V;W(=HH>BeMKo{U5%dFHGGlRBxS zWF0KPD`4ZRbcBy4+I1-aF*z&6VleQF(f$n#t6ZEXa(Z1w*C$Tbvi;l7WSnG;VzWQ06x`nBlWVS)q_t(ep($zftyg=mJ)Noc;8xS} zsbDt^EZH(H-2ae3Zce0`DV$cn0TMQf^}^>%HtqV;~owv4lGWiaJzy#DmM zvo7syPC1)b=I=WL8K-yM+L*Ssr>yO(V;@@kb2X^*p--@SGM=vM)<szs}dD@q( zpIGcmyMJpDz;W^|*F8&DrhfRkYrTGdy8dXY{^$er-Ld9u%)ol)>FZAeZti~Ne%;ub za}4A*5wDlH)E|#TN_f=hK$wo!0Jdk#Wic|>eDIf zK*n14sLEzC=W0RvUwej;R#O;0?NSMyjUGf5TQ%5VBN?)U^pY`Tz@IT>g6Xdrb_u3= z6YP1tM^*cf0z1^iWrmTDF2$H^~J?*&4P`3BX~d0)ZZFrc#Vq9E=xHjI`nn_}dWK zOEcpFg!siw1~hy`b~K4+S&s-n6_tP4hVlwpU{;ocZ7}ExRKC0~1u`>Wqu)b=^6%mX zLs%vgpfHP#QSZg079P<5moH1aFdwkSRf(5;96=C1eVjVg7D`4GdY*Sb6LP zJ%~u-gsmvXh8X+28Ay!OQ;9!23~?N@$%c_%F$LDE5kTVkdGVz)g@(udWLr0R9>|t7 z$=n|5C52>TW(`v_!5A}ch(@qUld%Nsm6;hls1~-(!={v3#-na+4mCxvV#E3pad~rb zsidXuz)RvRU6#K=y=#orgS@{oeD||5*@45#0iS}~yU6N^G(`%A&b&RSF7y4RQVL!LK~GvSHtBFTVA;r~J&>_HI3VE5tHn%Hs3b~9u_jIEq_f$dvX zq&is077}2~Y5$fHtqN)0qO=;sRwK3+2fS*s)tk4h1lNj|8k&|R zJjk;ULx0$juM*SDRBa?)fFW2|+4IJ^%@wn>(g-A|e^kqU&Ylo9 zDKaZ15`*EH*AM^)slR5=?``UIz&gNm%^RnD>?&vJq~$d&=%-b3SuKEHEgiPs3uJI= zf$1t8`-vZW-Le~TQ6)ZyuD70;%;+h{_DY8cU$69DIPM_#(Re!0N zWH(XJ< zX@}M34qH8FG1X*JsX0uRp=4-D-F=CJ)k{TP;4+h!xLquA^=lQz`p>Fxfun;j1xU!j zYbZdgMRh5vK!v5C7gWdq&U_d5u$Y2mG`=EbkqRmRnN8fXJV&?NbkpFL0c*g>r1$)! zinFl8Sr=(B3)Gz8vkX%+v2sg**L+QFC`JHJ-KUFhcjhSuZ3+M8HQdjWmIxp7oj(Uo z8aurBpt1X{@ukxlhd1eHeBf*28jUsI;L_N-e@oiGGv(j8=HI8F4vb_P0-4&D zOnq0TZCA$Qe^g;{+jD}&X6KlfhM;I!(t=>i@_hubEQ_tY$*vn+;uo{z&XbWuRB8*A z5tT&eu!}Kpnpiik3D@%mL&t_%YhE#VgV<Y%aHrzR}`JB1-;13>~Sw-e4$6;Fr0;An+Zu(M!7;g#=&i3 z?UUO2fx)cSXGPykW-vIO8<)@yQ%O_2QXymH12#^D{z90~8p5GhvIau%q@SV}XIBA@ z+E4~eRWsT52~dey1bEtIHkWtkV^_7V}a^MQ?2}t{tcHA z$|5qFMSk;?{vzdvsRc|mHHa>+s(MdZaSJA}bGkPg7R)#FZ#1Je3(7jw*Tc3ZlrzUg zY^9nf|NFjCH5`LdNmCDDwF%SJ`CMw~eUtjGXVGh{IsKyXsv0t5?U@s&wKc=V_iQzl zrIh(DL{?&(H7zRCjsG_lIPb=Lf_(oi{A6`gh4NDg*em59D93fblCMe$LY3 zAk{AyKf8xl4}aIQ{3SZ;bhA0-9{ybZ@2CejNe(oiilQKMDi-ek0B7khOY@MI{0rok z|7YAF8)ou3E;pywVDeY_4u$?FmVxh8SsUB5CaJuF4XE;L6-P`3&9Yr9t9voRHFA+8P-3iG5iTS!31bct?9;Hsm5LR8V}taPFnpq z+(@P^OEz#PwJqtI&Qwk3L$^@1<97Xh_i(1MFXs_zw`>UZ+RA@0Re0^|?y5%yp~Aha z`yWPg21G1ba{_*HqR_YNuf*q8f8$Tv?*{)(_($O%_kVEW-rjS6P?Z#)OIn+7|0M8K zrmi>Rsk^!V#(rkaur=l13iE{?d(yfE1}E;?WbN?Xj(^ktqyGD@v7~kE^G^p+_vfFA zLhJK7c0lq+)kpe_Kdov!GGzQ|zY%vPi7$`NmVjm+ht3xDdD=L?nJ&V2iJ}EBdp3aS z#1+aHBdT5U@5c%EvkRz*ii#F3HsLW^azdt)0DG@0XTI?ejm8VsOWyNahr z=OWD01(ESrNX`mXIFV5=0nxk!J@iF(2%A!a;4~o&LWpCeZbtf3SgWk8Mj=L&S)Sf1 z;J)}iLz-xAH5{9px`f7wOC`?%q}O2D3hL8EMrg}8;6^+Pr|1;PF1<>KA7J9VmmG$% zADAAZsUS8aZkMTfc_$!UEa=0zB9#eKm6J6vQF~CIYHv15L?N>`fKEjsim|tl@n)KE zhKa$fbTj=Nx*1T_i|Bz?Q*h>La2{%IO{X3Onl7!2j3CrnluEQSep*fErKupD6=dpd zuC|9=14QIgsu-QCt4oa(U=F~IPPqXB4c}FqX^WG|^VMJkqtDMEvYF88Dj2h~5?E3k zGn8JLlE7JFK8Om&*yB(v=xZi=fZ?lFlpqR|s_EvnH&CpYi;mS1bzXFoP8l%3L*b~Q z#)wu=xt7RKgc$h~Yp^u&ZpNY;5yv0m_r& zqNJ>HK9H;zIIn@h&R4;WN=PfOUW5G@MUYWcjUu@zJcKvYuXK#p2H<)*92CDyhd28b zE&}$f@B)O>-H~oOKG$EuT?7gm+un~AMJHDAg3Ka3-xS`4L!`pM01&YJBtSU^gqy+e z5h@&;;CaBVQYDykt)=m3T-r;P?^KBj73e$Qik%2WofsC_n}nzE(uhSHBH77mHSpnK zf|TOLj2VL0Al@nM$h;VX!W))7WMNTK1zVU@eGE3w>P+G^0y7<90Ey=5e5L}s=q21h8509S1!4AcLk`E+yT2OR z8tCrt33Mb{FTza^)|`Z@04Jc%nAamNons5>@BSZL0k8Zo(FOUxryDmrfUyB{xGhS)FXa({~GMB`Bv|7kivtO`sQ5zl{5ROs`# zfePI()YhkK0;!t7lKnxgf2HR;(IrQwS%kGhV-wM&n#}^tvJbp|;1jQZrGpH8*Sy_J zBRRdjqI%uyPkRSb-ocEoZS`2X<4~&O5LjMjlUi53Y{+?G9g%jm-E*~NIy#f?){M*h z<~Oc?BkAgS;H!Vfdds@ne5dA5T7KBF<~zJ>f@N~Dt~=>Io$NWihI?IiroH?7``_LF zhX<2x@j;WAY#qGQ3Tx)IrX9&$$3M`ecAZQ%K7GTs?rmA_Upo4rp?M{qZrPq{fx+;f zociIZwU)zc4M&nzU#6z+?e>+>JCR$FwfeqPP2ZAzo$MfLGtQ=rvnK6qN>RXta88pj z{rpj@;BAKGZAJBi+AU-@{pyWZleJr54c*m+TTR!7!BD4|hZ~UV3uYAmQ+v~~7U9oY z+D3GSB8u3E=^+8r#$Mb&5$j^Q`67!W&{(w8O0M_y8Wo5Wagg*H67$*uEnrqjt(f0+ z=s*j@EL=s5bNZa1;HZ=x8e($U@CB`|LK7@T3QW-kM@rE=-XE9$HM$2q82seCA``%= zwgrsYBc)-HZ9&$ep;-dCh(z zP-cwFXWdW3ydO0KDZr$vQ+hbc;CH`)3>bhVo7%vc@2VAg%&sxwvBm$T5LRq!?DY!tGSrHX?> zIKR=jax&dGoWg(4j$8#rRti=AmD-eB%u#h@x!(L~6+#;ZYEw^fXLQ^GhPCNa+Qcu~ z^f#@Xy=BW;=*bEUmG*2+dA8PB zH)5dy)ncops_71`_gaAKN6|Xdj~3*nnmv-2`iYvLAJx)oSpE4lXi2rST9#I)mGcy& z`B<76wRsC-{h`574fL$_T54@UY6DX1klI+(8y{ktLVn4M*k<&+9?vbI2B}UG*|<{A zSqN#3NNa_=QW5S-+u))UW$?Dvkcjy9P^;9;(rg&z4)(5QxGXhJbh4D<8rAf6q;Cmz zphhZ9ZK)}pNa=zXr0!`_CY4+v{rg)~M6UE*EolsO6})o~!B1$2<>^MhwoVfgDY@8t z29VmPym3F?sR!_b-RQ~f|D#&ih8DIKK;K}fR~icS0k#WAuODNu9Xj*vau>RsSY_5> zMDv0%RGhdeTnI}6k1;DL{48Up$P@JKMaYeGcYSs?rFRFzeh55byHcLJKR%3P0|P{k+!4f_ilATZI02XEMu`n z8B-w=?Z&PJQXx`5_!B7&X;0!$WTi&i8Gj;2QKU3w*XH(+s!1!E)!KKk`DjE0n?vHu znC=^L9Ly)i7*2V}R$rT0FmL4ah$e~nJg#+xY>Mr&T4j8@$g(QxMq=II zYE79GGLsu+F-Q3{uDjrirl(+iD zxnOm&`5;VbD+S#k=%+QfLF_x$tD)?AHRRVREMN-DqZD0;)z%n~p?iVzTqCoLfoc*f zS6}Y59Ae8zi4jYrWXT17OKFXGt>6W$O3kXKc-ZqYA5~vpJQiGGuYo5dN{VCU0)a3@ zIuH{T1LavY-W5BVDT`Pfh|m}l$>8dER#uo zA9-a~$^S_qw#=yFycbr^1`uLzm3Ckz-{h9hex_(!xepjY# zFx_@M)pi^XPSs<;o=oFbGGBr1ioZMU-;wg~$Tak%8}_6c_GH?J((PlZ_OTL!mLk0| zAdfGfdIT5~i{H}gtiTT+>6j;jQp-*D#&GCRgf5C;=52aEQg~ex)?FS5Yf`SZq_vH+ z)YJp@(t6X6n8)>|oB%`V;ScokCn%Y9a<2!IG4eOQslWdhvLxz@`&(FGmAdOiCZ)UW zDOY>iwJnvmDwU~s)YCtr zp1M&AJ?-7SWK3HdQ`W{0t$|{2C9-Q)= z1YH*+M6%I515Uqg;04zxI|ZR*B_hlN7Q|e5;8mY5=v-FS(`qzZr|MXU)OlEy|Ls~*fv`V zK1B+!Kc$WqU|BxSLn+r#(mJ%cv&j9cjE6`8X_zuHvpA3%Uj-ez2(vpF*y-c+zU(T88JO<^$cJGv z*90RsBg*LDYcP)|G^0Aj7|pn7pgdQVjoc{zE$ZeDHcn9JC%D1AJnceR-6VZ`f_=ck z%)NDGE#PdR@sE{|G}#u_53J%Wc`|l6j1##b#o1CU(N{dEPssl7Xo$arK7bA~3tM{9 zox4(y(d+@=WhR6_1Kc-6IY{RoDCQK_04H0)$02+W3s$c98H|huC4J${ME-o1#)Hl6_^LiPt|5L$i3oOCYm1kx6o~s3Z zo^D!iSXaE?t%Oo9?diDZ=^z`(r*AyHYW&dKx$bSaIeue&b@)SXcdi0Op~P_4t$44$ zs%rbV9$kl*kzvp)6p0-)G2t>g#OQsX;|m4=5JYn2h(0*e-ClsyHSr#bD;G!y1Js2C zsJH-BW$P&mEE>AUmv!(jpdU}voF!CD(kL2N@{Py*<0+VbJ6hoW-0XNW1@o7@Z`OqK zEAo6P&aWZ~lZNQ2^3ttyQ-=RYGe`T(H6c?~v;6YP%Src^B~!-XUNNS9Jt_Qm^g!@a z;h`^XB>mg&Y`NQU-+73AM1!0Zq@8UkXWQzI51oOWO>pupSCRc{*r(`tyf#0#(Jal+ zG~ToH%A@M9qK7~U5X%lz` zCw$`S$W*nYt9nyay@1P%x4uNzTpprcL#wojfJ_s9F;szp>jqpAMo{J$MYRhu0;8r7 zz;<&@_lB?h$%>*4qlY#FwhcU|!3w133gfMk=Yi3ORQx;#7-d7~h#j0wjV z8U@))w?eGWCX`S+H@YVyDK`I`@Oh=OBsqByOEeav^x{-KMnKKLDgQX$@o<;2^Ixii>8o3|5WHA0)3wSMzmk3-jhfZ$5bLgcn_LSs9Oo&M|3hlLcp5$ z+rtGAl^3WQ(EscUE|UD)=#E@Nw^q90Tb>$~P=~NgK$WfJG8eTF+>@eduEBtR6fRff zkDFl4gWlrXfp8g`pXO3Bv`iK^LERF11a|>u!RF#$ZQ2L_I1sMlV@*~81gD>iGsp$w z-LI_q$6yM?90+7QHA`ck)cD`tx(ZXT9cwi^m+YTZ)P4J_4`HQJnQ0W$jRUF1fsDI3 zQ!D07LesVl!O&E>bow&`(qT2>hCxx|XB7nxidmP}dw9t3(;?I0{T3W`vB3T*hEG8j z(XzDhFtGLE&Uj0VVChw2b) z$J9e|>XJ(xS$G{gViXGAi#W-W3r>}+(|sk8cwEqYE~+C0h1vcJiC2q1kLiV_H%%Z<& zL5tWI0k9zcVBViPk!)lxR|(L>IRbN=4&c*+Hen{e z8Oe*LX^6?yd)79>58=Rf{0?-P`51(`MqWb3NSG?6^N_5m-LEcz=*e(gZlms3cE!)q3wc#dC+aoU;$gX*$XeIj_u0C_3RQzlC%O|OIwfMxPB`i4wy@AR(u55Y`> zsFrQ1#%<}wr&5hiLGbpVwI|&=lxiJf4zs&c?rxk$2X)j|NhHl--G*Rp!f8(bBe&4p z_0Ht2$#m1+RMXyvY%w+TJ~CmAYzU@i{zyC>O?Z7PuB(R)diC7K(a27(;KRGKu&b?)QwZC{_i)x+njFQlWN`b zp%-3yPzZh&^8$#DKMDLWaCc;F=*WHNQ6L0&%W4Z(0RQ|^h2U$2W@}Sr+f%LE|H?a@ zGayNEmTl=A@#+6pU;n7h^ygL`?s<GsETd!BAuPE~e5+fsg{n3+bY?7+u_%i5|b5JGP$-Vq*`Z-SP?(`blE z5D4G~QuPB%t_QBxw5vPi>L%f{CU)Lrgh3udJpNpT;0|mEMGixXCRUR}MbOeOL9Rbu zR#0>tfW*^fK|mvqY3hQ+!!sg?S!cqol1K(JpX2_J6_SThGn)I10un?uIa1xx6g!gn z|Jc=yM$Hs_8|Rlk0byX2Paeb|^w>+=#eTYx4ZkYNE`h{vASvr919h7jQ-*=h7dc%l zi=>OQTqdX-Ln5?@KlBBhcjVXAxTVZwST~VA%!|e85m; zPs+9DZqJ%)BxxPtG7tmwZduFRm5XvPBozrkG`vIH;JxQ9mUYV$0zq1Dt~>b&$}!9EN(`5;DF{--;`Pr@mQRKE9mJ>~(9%6t7gfmH%Ko zGrl(GznTYwb2#N(G+nn|+jre^ZBLxE)9jkoxIi_Ae7-N}U=s)}(KJ<5a;YS*I%ev- z!eUtC5<|8H9ep)V&GVWrWY6=9rTxTrri@FLB`Zwuo!@f8KY>1W^t$z%htUV~b?v)v za$7;KTS_{G$56#}>vc=HQOfsl-uQ$%Dz97f+}%7`Mi%y9*Aq&+%D1nKW$WfXKYlE) zTOdx$&r-SfbzjHVs@W|4N;StdUh_3wpephA=VVwvlOHbPDA`fk{PA(Dt~|py@(Qpe zysRS0wnZ2NO43To*_H?d4&N5Lt5dYrOh*>r6q3y zBgRJ10B91YP*p=82!G(M&kXMUE8o7`hu`+Be2G5u^S$PKzI_iG1E9uhYBvn{Vm)-9 zRrM(1t9r5a3&m}nn|V}EjiPf}qz8?M3~2Tew2Fa{;|zA_D`mwVUn_zi zqHh`e^ds=Q`kTUa{WY9my{^Muf4%HiU$5&gA7grP!}vMCEBz zQ(pqZEQr^xarLu*5+6FlH>t~Lq7MJk6ZyC*?$C^qs^sUGQm_%NNf4HG4Rof|)rs@I z8Bc546G(Xi$=(Ag&w-@#0Nb(?&yAEgEx=k;rwqRI12}H4PFdk}aaU_|SNh`7KKj&x zRt85qP%3fiN!8Mk9$5b2OAT5Tq%kbpS|acq^A)1@i(m!c2%$5=Fhfwsngh&%JjzkC zv)3roUN^j?#EXjusu}wrAEE`w)R7Dy{XWJOw!X?pz{T}En|+yZ2vgG$o$T9E8Nu{T5CPL=01Xt7F1M%nf7!g1E)SX`@u-E>)EyH zvq|UKoY7)C_@J)kzPKZW4}%%-v|cgr4<`IRtcLMLvY|KGu=^ud_wDBUuH6sZwKttN zoM@ z-1sPiU2ydz6+`QQVSIdC{XPfniQ}-q7!M4WJDn^Oxxxca{Sj6 zs;3+A$XP4+G?=l+=ecngQJc&Foj&e|FQCi(#4-c*|3qmyy0JCzpD9FJvHS(y7@tk* zPT9x+mqJYbMk)-h^<`T9yh5KTftetU1aEQ=Zdu!mJO}YAys>hg$w7r5&`qQpTMjDKlWPyd)2FQt+0JpX79nw;0`(ueN4CR>&%%b z04$2nbm1^Gf>!!Y7fwSX2#cWB)h2wnjLt;k*(ubwCEMWXa~GY5MnwKgUhI({QD(t$ z9UY0b;~4fsTNBO_Q%m?oL-qYR3x#m%S~-MG8IaZP|I~qya+sRp4hrTbXUB z)usWhngK1jH=o?ACHE@HdehdGS8f|_Eq)5G(p!~egz$E}fBRPBRPjEoSM4kdf;oM1mcnPNX5gs8fnoZD>z=esp$px^Dg*zdZnN;v{< zLTs+XX{u*g=y!Pk-E%)2&lwP2w^b38rT`z^?V*jx{W{Mw6r zN>;u1;g4HCWE!Nm!OvY|^1!pH-Df|g2O5PgmYRb%%{>R`6upg(qSI&Q_#yP-WBGI* z9b>H?%cr~qNsSv03bk!&*s50QHI3?6trWm)lvK-N3+iRhsJQ7<2L+XWve@3|bf%t+ zr!!|@fo+ggQa~HcM<#mY>ywryK5;4sFA~kl>_CeY(Ztkay$TzI#)`~lwGWsF87%Ilsfw`+`T)+{E# zpc#Yz0OT@C%o#r%N?xa-GQ$yMrnKX3x=Be!$yc~V0TLm|iAIPhVBgVIBwvcuOMP=X zqq<)ya&YT@g?c%d_axM&=4=zYaol1y0K-d-nIk((HJvNqlp6Z=f6M*7OQ7z13HaxRu|@M9Eq!lP~&7;ZTVivU#4A;C^FidVKCAm zRMoF^uesY{Y;LN#Zd}qW4Q3q9Wy9;B$h;36jVmv#o?rcqm9MTjdTvM79Q!jK@9QUW zHe?3b;HX)#E+@#%P=9jpaI)sen*C_fc$6)=q6J2sV+-sY0yp7SAaAcsKH60YOh}hN zI(e7Dx8$*qXraOD55&dHt08ez?1H}CK&C(QdQD4iNPKaISX>4>Dp^jv9GE)B^aXz* ztSe?7at*Ubbdb}+NRv4?@FOKwI><9B0?HlSJWYzzI)uMq_9@xQl6fAIr z!+BNsd1(e8&L&GZz7CnMFc4~NdgVQkO<130S;N{C0R(5+turY!s5bJJ( z$@{?9fBTiY&9GAYU@+x71%;MbaMdj@F29|xUNV#l%*|dIgd(GV9WE;w7fZPd3 z>?){=rt&$IA(crME0YzQe4Lh+kLBjVrr=D!;`9*5O&CYUS+#1)O_BknZY?*%@BMiP z5RAO8p^VMN)y_sk(oC!$P{Y5`!x+SDd)Z7-lK_pVUJ4j_p7oc_Nm_XJ$=Ymd+4RD5 zr7}_O*^bBLQ_gMkBkqj)&$gA#T6DCQaT3auX=9?iYTkQYwyL-$hzw++$xDZxO<_OT zZ_CYP#+oOSx*Fhyuac3xwX|)XhdXU&41oeJTIYBMMg7jK0?YSe79Vb8Cl*U*oL7(s z+V;oxbS^@<2(UZyc@&`M3x>X?F2SiL0b3{K!FP+vdSsHbZX`L7|2^G^yUJRR%!Ow{ z=itfjV~S(^+g?gAj*vS(#ydStDZfKE#?LVxh_OVB)uF9~BaUK5=nLz9OxoOxbWkQN zkN-mKU*isxpwoRMbp4Is_-nz<{#X9BVEYfk3u)nnHQ|N76?#7wdOjBRd@StzSa|9) zqe-WS7G0QZF%{VMvCz-T^nEN0eJl)qEFAh+IQTPz`(xv- z|HFRtn&lxJD0!B5uh|-}nb#fe<(g&rhJR&bwS6_V+I{PpWYyM`qxYIMQ`@j|bk(yu zb$kC^-%r|q)bxQh*?1;Z`=zAd0Rz?%cxdU>xij|4oB_Y<)paX|m9wkuD;25gEjbgS zfEb%#V?!Y@A@&U$LXW<#v*@-i#owI2KL1ES@H6jey{_+}K=<5B#^XAj7bXeG8hnHs zOaVQvJH5-#dkL-jXtj8#apg?3~`M+xk$z?XxYNy1|D6Zl9ge zoiym|4+Xk^Hent!>v|pvbkDuutkWISt)9&Z^n16R|Nf+XgFWYlT{_QgB;w~MNW;$u R-O01h|8ISdD9pC>{}+qLNSy!x literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/index/__pycache__/sources.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_internal/index/__pycache__/sources.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..c4c6124bee9e5aa530bac79fe5fb4e79e38aa0d7 GIT binary patch literal 12680 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 GM*csv6$M-X literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/index/collector.py b/.venv/lib/python3.12/site-packages/pip/_internal/index/collector.py new file mode 100644 index 00000000..08c8bddc --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_internal/index/collector.py @@ -0,0 +1,507 @@ +""" +The main purpose of this module is to expose LinkCollector.collect_sources(). +""" + +import collections +import email.message +import functools +import itertools +import json +import logging +import os +import urllib.parse +import urllib.request +from html.parser import HTMLParser +from optparse import Values +from typing import ( + TYPE_CHECKING, + Callable, + Dict, + Iterable, + List, + MutableMapping, + NamedTuple, + Optional, + Sequence, + Tuple, + Union, +) + +from pip._vendor import requests +from pip._vendor.requests import Response +from pip._vendor.requests.exceptions import RetryError, SSLError + +from pip._internal.exceptions import NetworkConnectionError +from pip._internal.models.link import Link +from pip._internal.models.search_scope import SearchScope +from pip._internal.network.session import PipSession +from pip._internal.network.utils import raise_for_status +from pip._internal.utils.filetypes import is_archive_file +from pip._internal.utils.misc import redact_auth_from_url +from pip._internal.vcs import vcs + +from .sources import CandidatesFromPage, LinkSource, build_source + +if TYPE_CHECKING: + from typing import Protocol +else: + Protocol = object + +logger = logging.getLogger(__name__) + +ResponseHeaders = MutableMapping[str, str] + + +def _match_vcs_scheme(url: str) -> Optional[str]: + """Look for VCS schemes in the URL. + + Returns the matched VCS scheme, or None if there's no match. + """ + for scheme in vcs.schemes: + if url.lower().startswith(scheme) and url[len(scheme)] in "+:": + return scheme + return None + + +class _NotAPIContent(Exception): + def __init__(self, content_type: str, request_desc: str) -> None: + super().__init__(content_type, request_desc) + self.content_type = content_type + self.request_desc = request_desc + + +def _ensure_api_header(response: Response) -> None: + """ + Check the Content-Type header to ensure the response contains a Simple + API Response. + + Raises `_NotAPIContent` if the content type is not a valid content-type. + """ + content_type = response.headers.get("Content-Type", "Unknown") + + content_type_l = content_type.lower() + if content_type_l.startswith( + ( + "text/html", + "application/vnd.pypi.simple.v1+html", + "application/vnd.pypi.simple.v1+json", + ) + ): + return + + raise _NotAPIContent(content_type, response.request.method) + + +class _NotHTTP(Exception): + pass + + +def _ensure_api_response(url: str, session: PipSession) -> None: + """ + Send a HEAD request to the URL, and ensure the response contains a simple + API Response. + + Raises `_NotHTTP` if the URL is not available for a HEAD request, or + `_NotAPIContent` if the content type is not a valid content type. + """ + scheme, netloc, path, query, fragment = urllib.parse.urlsplit(url) + if scheme not in {"http", "https"}: + raise _NotHTTP() + + resp = session.head(url, allow_redirects=True) + raise_for_status(resp) + + _ensure_api_header(resp) + + +def _get_simple_response(url: str, session: PipSession) -> Response: + """Access an Simple API response with GET, and return the response. + + This consists of three parts: + + 1. If the URL looks suspiciously like an archive, send a HEAD first to + check the Content-Type is HTML or Simple API, to avoid downloading a + large file. Raise `_NotHTTP` if the content type cannot be determined, or + `_NotAPIContent` if it is not HTML or a Simple API. + 2. Actually perform the request. Raise HTTP exceptions on network failures. + 3. Check the Content-Type header to make sure we got a Simple API response, + and raise `_NotAPIContent` otherwise. + """ + if is_archive_file(Link(url).filename): + _ensure_api_response(url, session=session) + + logger.debug("Getting page %s", redact_auth_from_url(url)) + + resp = session.get( + url, + headers={ + "Accept": ", ".join( + [ + "application/vnd.pypi.simple.v1+json", + "application/vnd.pypi.simple.v1+html; q=0.1", + "text/html; q=0.01", + ] + ), + # We don't want to blindly returned cached data for + # /simple/, because authors generally expecting that + # twine upload && pip install will function, but if + # they've done a pip install in the last ~10 minutes + # it won't. Thus by setting this to zero we will not + # blindly use any cached data, however the benefit of + # using max-age=0 instead of no-cache, is that we will + # still support conditional requests, so we will still + # minimize traffic sent in cases where the page hasn't + # changed at all, we will just always incur the round + # trip for the conditional GET now instead of only + # once per 10 minutes. + # For more information, please see pypa/pip#5670. + "Cache-Control": "max-age=0", + }, + ) + raise_for_status(resp) + + # The check for archives above only works if the url ends with + # something that looks like an archive. However that is not a + # requirement of an url. Unless we issue a HEAD request on every + # url we cannot know ahead of time for sure if something is a + # Simple API response or not. However we can check after we've + # downloaded it. + _ensure_api_header(resp) + + logger.debug( + "Fetched page %s as %s", + redact_auth_from_url(url), + resp.headers.get("Content-Type", "Unknown"), + ) + + return resp + + +def _get_encoding_from_headers(headers: ResponseHeaders) -> Optional[str]: + """Determine if we have any encoding information in our headers.""" + if headers and "Content-Type" in headers: + m = email.message.Message() + m["content-type"] = headers["Content-Type"] + charset = m.get_param("charset") + if charset: + return str(charset) + return None + + +class CacheablePageContent: + def __init__(self, page: "IndexContent") -> None: + assert page.cache_link_parsing + self.page = page + + def __eq__(self, other: object) -> bool: + return isinstance(other, type(self)) and self.page.url == other.page.url + + def __hash__(self) -> int: + return hash(self.page.url) + + +class ParseLinks(Protocol): + def __call__(self, page: "IndexContent") -> Iterable[Link]: + ... + + +def with_cached_index_content(fn: ParseLinks) -> ParseLinks: + """ + Given a function that parses an Iterable[Link] from an IndexContent, cache the + function's result (keyed by CacheablePageContent), unless the IndexContent + `page` has `page.cache_link_parsing == False`. + """ + + @functools.lru_cache(maxsize=None) + def wrapper(cacheable_page: CacheablePageContent) -> List[Link]: + return list(fn(cacheable_page.page)) + + @functools.wraps(fn) + def wrapper_wrapper(page: "IndexContent") -> List[Link]: + if page.cache_link_parsing: + return wrapper(CacheablePageContent(page)) + return list(fn(page)) + + return wrapper_wrapper + + +@with_cached_index_content +def parse_links(page: "IndexContent") -> Iterable[Link]: + """ + Parse a Simple API's Index Content, and yield its anchor elements as Link objects. + """ + + content_type_l = page.content_type.lower() + if content_type_l.startswith("application/vnd.pypi.simple.v1+json"): + data = json.loads(page.content) + for file in data.get("files", []): + link = Link.from_json(file, page.url) + if link is None: + continue + yield link + return + + parser = HTMLLinkParser(page.url) + encoding = page.encoding or "utf-8" + parser.feed(page.content.decode(encoding)) + + url = page.url + base_url = parser.base_url or url + for anchor in parser.anchors: + link = Link.from_element(anchor, page_url=url, base_url=base_url) + if link is None: + continue + yield link + + +class IndexContent: + """Represents one response (or page), along with its URL""" + + def __init__( + self, + content: bytes, + content_type: str, + encoding: Optional[str], + url: str, + cache_link_parsing: bool = True, + ) -> None: + """ + :param encoding: the encoding to decode the given content. + :param url: the URL from which the HTML was downloaded. + :param cache_link_parsing: whether links parsed from this page's url + should be cached. PyPI index urls should + have this set to False, for example. + """ + self.content = content + self.content_type = content_type + self.encoding = encoding + self.url = url + self.cache_link_parsing = cache_link_parsing + + def __str__(self) -> str: + return redact_auth_from_url(self.url) + + +class HTMLLinkParser(HTMLParser): + """ + HTMLParser that keeps the first base HREF and a list of all anchor + elements' attributes. + """ + + def __init__(self, url: str) -> None: + super().__init__(convert_charrefs=True) + + self.url: str = url + self.base_url: Optional[str] = None + self.anchors: List[Dict[str, Optional[str]]] = [] + + def handle_starttag(self, tag: str, attrs: List[Tuple[str, Optional[str]]]) -> None: + if tag == "base" and self.base_url is None: + href = self.get_href(attrs) + if href is not None: + self.base_url = href + elif tag == "a": + self.anchors.append(dict(attrs)) + + def get_href(self, attrs: List[Tuple[str, Optional[str]]]) -> Optional[str]: + for name, value in attrs: + if name == "href": + return value + return None + + +def _handle_get_simple_fail( + link: Link, + reason: Union[str, Exception], + meth: Optional[Callable[..., None]] = None, +) -> None: + if meth is None: + meth = logger.debug + meth("Could not fetch URL %s: %s - skipping", link, reason) + + +def _make_index_content( + response: Response, cache_link_parsing: bool = True +) -> IndexContent: + encoding = _get_encoding_from_headers(response.headers) + return IndexContent( + response.content, + response.headers["Content-Type"], + encoding=encoding, + url=response.url, + cache_link_parsing=cache_link_parsing, + ) + + +def _get_index_content(link: Link, *, session: PipSession) -> Optional["IndexContent"]: + url = link.url.split("#", 1)[0] + + # Check for VCS schemes that do not support lookup as web pages. + vcs_scheme = _match_vcs_scheme(url) + if vcs_scheme: + logger.warning( + "Cannot look at %s URL %s because it does not support lookup as web pages.", + vcs_scheme, + link, + ) + return None + + # Tack index.html onto file:// URLs that point to directories + scheme, _, path, _, _, _ = urllib.parse.urlparse(url) + if scheme == "file" and os.path.isdir(urllib.request.url2pathname(path)): + # add trailing slash if not present so urljoin doesn't trim + # final segment + if not url.endswith("/"): + url += "/" + # TODO: In the future, it would be nice if pip supported PEP 691 + # style responses in the file:// URLs, however there's no + # standard file extension for application/vnd.pypi.simple.v1+json + # so we'll need to come up with something on our own. + url = urllib.parse.urljoin(url, "index.html") + logger.debug(" file: URL is directory, getting %s", url) + + try: + resp = _get_simple_response(url, session=session) + except _NotHTTP: + logger.warning( + "Skipping page %s because it looks like an archive, and cannot " + "be checked by a HTTP HEAD request.", + link, + ) + except _NotAPIContent as exc: + logger.warning( + "Skipping page %s because the %s request got Content-Type: %s. " + "The only supported Content-Types are application/vnd.pypi.simple.v1+json, " + "application/vnd.pypi.simple.v1+html, and text/html", + link, + exc.request_desc, + exc.content_type, + ) + except NetworkConnectionError as exc: + _handle_get_simple_fail(link, exc) + except RetryError as exc: + _handle_get_simple_fail(link, exc) + except SSLError as exc: + reason = "There was a problem confirming the ssl certificate: " + reason += str(exc) + _handle_get_simple_fail(link, reason, meth=logger.info) + except requests.ConnectionError as exc: + _handle_get_simple_fail(link, f"connection error: {exc}") + except requests.Timeout: + _handle_get_simple_fail(link, "timed out") + else: + return _make_index_content(resp, cache_link_parsing=link.cache_link_parsing) + return None + + +class CollectedSources(NamedTuple): + find_links: Sequence[Optional[LinkSource]] + index_urls: Sequence[Optional[LinkSource]] + + +class LinkCollector: + + """ + Responsible for collecting Link objects from all configured locations, + making network requests as needed. + + The class's main method is its collect_sources() method. + """ + + def __init__( + self, + session: PipSession, + search_scope: SearchScope, + ) -> None: + self.search_scope = search_scope + self.session = session + + @classmethod + def create( + cls, + session: PipSession, + options: Values, + suppress_no_index: bool = False, + ) -> "LinkCollector": + """ + :param session: The Session to use to make requests. + :param suppress_no_index: Whether to ignore the --no-index option + when constructing the SearchScope object. + """ + index_urls = [options.index_url] + options.extra_index_urls + if options.no_index and not suppress_no_index: + logger.debug( + "Ignoring indexes: %s", + ",".join(redact_auth_from_url(url) for url in index_urls), + ) + index_urls = [] + + # Make sure find_links is a list before passing to create(). + find_links = options.find_links or [] + + search_scope = SearchScope.create( + find_links=find_links, + index_urls=index_urls, + no_index=options.no_index, + ) + link_collector = LinkCollector( + session=session, + search_scope=search_scope, + ) + return link_collector + + @property + def find_links(self) -> List[str]: + return self.search_scope.find_links + + def fetch_response(self, location: Link) -> Optional[IndexContent]: + """ + Fetch an HTML page containing package links. + """ + return _get_index_content(location, session=self.session) + + def collect_sources( + self, + project_name: str, + candidates_from_page: CandidatesFromPage, + ) -> CollectedSources: + # The OrderedDict calls deduplicate sources by URL. + index_url_sources = collections.OrderedDict( + build_source( + loc, + candidates_from_page=candidates_from_page, + page_validator=self.session.is_secure_origin, + expand_dir=False, + cache_link_parsing=False, + project_name=project_name, + ) + for loc in self.search_scope.get_index_urls_locations(project_name) + ).values() + find_links_sources = collections.OrderedDict( + build_source( + loc, + candidates_from_page=candidates_from_page, + page_validator=self.session.is_secure_origin, + expand_dir=True, + cache_link_parsing=True, + project_name=project_name, + ) + for loc in self.find_links + ).values() + + if logger.isEnabledFor(logging.DEBUG): + lines = [ + f"* {s.link}" + for s in itertools.chain(find_links_sources, index_url_sources) + if s is not None and s.link is not None + ] + lines = [ + f"{len(lines)} location(s) to search " + f"for versions of {project_name}:" + ] + lines + logger.debug("\n".join(lines)) + + return CollectedSources( + find_links=list(find_links_sources), + index_urls=list(index_url_sources), + ) diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/index/package_finder.py b/.venv/lib/python3.12/site-packages/pip/_internal/index/package_finder.py new file mode 100644 index 00000000..ec9ebc36 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_internal/index/package_finder.py @@ -0,0 +1,1027 @@ +"""Routines related to PyPI, indexes""" + +import enum +import functools +import itertools +import logging +import re +from typing import TYPE_CHECKING, FrozenSet, Iterable, List, Optional, Set, Tuple, Union + +from pip._vendor.packaging import specifiers +from pip._vendor.packaging.tags import Tag +from pip._vendor.packaging.utils import canonicalize_name +from pip._vendor.packaging.version import _BaseVersion +from pip._vendor.packaging.version import parse as parse_version + +from pip._internal.exceptions import ( + BestVersionAlreadyInstalled, + DistributionNotFound, + InvalidWheelFilename, + UnsupportedWheel, +) +from pip._internal.index.collector import LinkCollector, parse_links +from pip._internal.models.candidate import InstallationCandidate +from pip._internal.models.format_control import FormatControl +from pip._internal.models.link import Link +from pip._internal.models.search_scope import SearchScope +from pip._internal.models.selection_prefs import SelectionPreferences +from pip._internal.models.target_python import TargetPython +from pip._internal.models.wheel import Wheel +from pip._internal.req import InstallRequirement +from pip._internal.utils._log import getLogger +from pip._internal.utils.filetypes import WHEEL_EXTENSION +from pip._internal.utils.hashes import Hashes +from pip._internal.utils.logging import indent_log +from pip._internal.utils.misc import build_netloc +from pip._internal.utils.packaging import check_requires_python +from pip._internal.utils.unpacking import SUPPORTED_EXTENSIONS + +if TYPE_CHECKING: + from pip._vendor.typing_extensions import TypeGuard + +__all__ = ["FormatControl", "BestCandidateResult", "PackageFinder"] + + +logger = getLogger(__name__) + +BuildTag = Union[Tuple[()], Tuple[int, str]] +CandidateSortingKey = Tuple[int, int, int, _BaseVersion, Optional[int], BuildTag] + + +def _check_link_requires_python( + link: Link, + version_info: Tuple[int, int, int], + ignore_requires_python: bool = False, +) -> bool: + """ + Return whether the given Python version is compatible with a link's + "Requires-Python" value. + + :param version_info: A 3-tuple of ints representing the Python + major-minor-micro version to check. + :param ignore_requires_python: Whether to ignore the "Requires-Python" + value if the given Python version isn't compatible. + """ + try: + is_compatible = check_requires_python( + link.requires_python, + version_info=version_info, + ) + except specifiers.InvalidSpecifier: + logger.debug( + "Ignoring invalid Requires-Python (%r) for link: %s", + link.requires_python, + link, + ) + else: + if not is_compatible: + version = ".".join(map(str, version_info)) + if not ignore_requires_python: + logger.verbose( + "Link requires a different Python (%s not in: %r): %s", + version, + link.requires_python, + link, + ) + return False + + logger.debug( + "Ignoring failed Requires-Python check (%s not in: %r) for link: %s", + version, + link.requires_python, + link, + ) + + return True + + +class LinkType(enum.Enum): + candidate = enum.auto() + different_project = enum.auto() + yanked = enum.auto() + format_unsupported = enum.auto() + format_invalid = enum.auto() + platform_mismatch = enum.auto() + requires_python_mismatch = enum.auto() + + +class LinkEvaluator: + + """ + Responsible for evaluating links for a particular project. + """ + + _py_version_re = re.compile(r"-py([123]\.?[0-9]?)$") + + # Don't include an allow_yanked default value to make sure each call + # site considers whether yanked releases are allowed. This also causes + # that decision to be made explicit in the calling code, which helps + # people when reading the code. + def __init__( + self, + project_name: str, + canonical_name: str, + formats: FrozenSet[str], + target_python: TargetPython, + allow_yanked: bool, + ignore_requires_python: Optional[bool] = None, + ) -> None: + """ + :param project_name: The user supplied package name. + :param canonical_name: The canonical package name. + :param formats: The formats allowed for this package. Should be a set + with 'binary' or 'source' or both in it. + :param target_python: The target Python interpreter to use when + evaluating link compatibility. This is used, for example, to + check wheel compatibility, as well as when checking the Python + version, e.g. the Python version embedded in a link filename + (or egg fragment) and against an HTML link's optional PEP 503 + "data-requires-python" attribute. + :param allow_yanked: Whether files marked as yanked (in the sense + of PEP 592) are permitted to be candidates for install. + :param ignore_requires_python: Whether to ignore incompatible + PEP 503 "data-requires-python" values in HTML links. Defaults + to False. + """ + if ignore_requires_python is None: + ignore_requires_python = False + + self._allow_yanked = allow_yanked + self._canonical_name = canonical_name + self._ignore_requires_python = ignore_requires_python + self._formats = formats + self._target_python = target_python + + self.project_name = project_name + + def evaluate_link(self, link: Link) -> Tuple[LinkType, str]: + """ + Determine whether a link is a candidate for installation. + + :return: A tuple (result, detail), where *result* is an enum + representing whether the evaluation found a candidate, or the reason + why one is not found. If a candidate is found, *detail* will be the + candidate's version string; if one is not found, it contains the + reason the link fails to qualify. + """ + version = None + if link.is_yanked and not self._allow_yanked: + reason = link.yanked_reason or "" + return (LinkType.yanked, f"yanked for reason: {reason}") + + if link.egg_fragment: + egg_info = link.egg_fragment + ext = link.ext + else: + egg_info, ext = link.splitext() + if not ext: + return (LinkType.format_unsupported, "not a file") + if ext not in SUPPORTED_EXTENSIONS: + return ( + LinkType.format_unsupported, + f"unsupported archive format: {ext}", + ) + if "binary" not in self._formats and ext == WHEEL_EXTENSION: + reason = f"No binaries permitted for {self.project_name}" + return (LinkType.format_unsupported, reason) + if "macosx10" in link.path and ext == ".zip": + return (LinkType.format_unsupported, "macosx10 one") + if ext == WHEEL_EXTENSION: + try: + wheel = Wheel(link.filename) + except InvalidWheelFilename: + return ( + LinkType.format_invalid, + "invalid wheel filename", + ) + if canonicalize_name(wheel.name) != self._canonical_name: + reason = f"wrong project name (not {self.project_name})" + return (LinkType.different_project, reason) + + supported_tags = self._target_python.get_unsorted_tags() + if not wheel.supported(supported_tags): + # Include the wheel's tags in the reason string to + # simplify troubleshooting compatibility issues. + file_tags = ", ".join(wheel.get_formatted_file_tags()) + reason = ( + f"none of the wheel's tags ({file_tags}) are compatible " + f"(run pip debug --verbose to show compatible tags)" + ) + return (LinkType.platform_mismatch, reason) + + version = wheel.version + + # This should be up by the self.ok_binary check, but see issue 2700. + if "source" not in self._formats and ext != WHEEL_EXTENSION: + reason = f"No sources permitted for {self.project_name}" + return (LinkType.format_unsupported, reason) + + if not version: + version = _extract_version_from_fragment( + egg_info, + self._canonical_name, + ) + if not version: + reason = f"Missing project version for {self.project_name}" + return (LinkType.format_invalid, reason) + + match = self._py_version_re.search(version) + if match: + version = version[: match.start()] + py_version = match.group(1) + if py_version != self._target_python.py_version: + return ( + LinkType.platform_mismatch, + "Python version is incorrect", + ) + + supports_python = _check_link_requires_python( + link, + version_info=self._target_python.py_version_info, + ignore_requires_python=self._ignore_requires_python, + ) + if not supports_python: + reason = f"{version} Requires-Python {link.requires_python}" + return (LinkType.requires_python_mismatch, reason) + + logger.debug("Found link %s, version: %s", link, version) + + return (LinkType.candidate, version) + + +def filter_unallowed_hashes( + candidates: List[InstallationCandidate], + hashes: Optional[Hashes], + project_name: str, +) -> List[InstallationCandidate]: + """ + Filter out candidates whose hashes aren't allowed, and return a new + list of candidates. + + If at least one candidate has an allowed hash, then all candidates with + either an allowed hash or no hash specified are returned. Otherwise, + the given candidates are returned. + + Including the candidates with no hash specified when there is a match + allows a warning to be logged if there is a more preferred candidate + with no hash specified. Returning all candidates in the case of no + matches lets pip report the hash of the candidate that would otherwise + have been installed (e.g. permitting the user to more easily update + their requirements file with the desired hash). + """ + if not hashes: + logger.debug( + "Given no hashes to check %s links for project %r: " + "discarding no candidates", + len(candidates), + project_name, + ) + # Make sure we're not returning back the given value. + return list(candidates) + + matches_or_no_digest = [] + # Collect the non-matches for logging purposes. + non_matches = [] + match_count = 0 + for candidate in candidates: + link = candidate.link + if not link.has_hash: + pass + elif link.is_hash_allowed(hashes=hashes): + match_count += 1 + else: + non_matches.append(candidate) + continue + + matches_or_no_digest.append(candidate) + + if match_count: + filtered = matches_or_no_digest + else: + # Make sure we're not returning back the given value. + filtered = list(candidates) + + if len(filtered) == len(candidates): + discard_message = "discarding no candidates" + else: + discard_message = "discarding {} non-matches:\n {}".format( + len(non_matches), + "\n ".join(str(candidate.link) for candidate in non_matches), + ) + + logger.debug( + "Checked %s links for project %r against %s hashes " + "(%s matches, %s no digest): %s", + len(candidates), + project_name, + hashes.digest_count, + match_count, + len(matches_or_no_digest) - match_count, + discard_message, + ) + + return filtered + + +class CandidatePreferences: + + """ + Encapsulates some of the preferences for filtering and sorting + InstallationCandidate objects. + """ + + def __init__( + self, + prefer_binary: bool = False, + allow_all_prereleases: bool = False, + ) -> None: + """ + :param allow_all_prereleases: Whether to allow all pre-releases. + """ + self.allow_all_prereleases = allow_all_prereleases + self.prefer_binary = prefer_binary + + +class BestCandidateResult: + """A collection of candidates, returned by `PackageFinder.find_best_candidate`. + + This class is only intended to be instantiated by CandidateEvaluator's + `compute_best_candidate()` method. + """ + + def __init__( + self, + candidates: List[InstallationCandidate], + applicable_candidates: List[InstallationCandidate], + best_candidate: Optional[InstallationCandidate], + ) -> None: + """ + :param candidates: A sequence of all available candidates found. + :param applicable_candidates: The applicable candidates. + :param best_candidate: The most preferred candidate found, or None + if no applicable candidates were found. + """ + assert set(applicable_candidates) <= set(candidates) + + if best_candidate is None: + assert not applicable_candidates + else: + assert best_candidate in applicable_candidates + + self._applicable_candidates = applicable_candidates + self._candidates = candidates + + self.best_candidate = best_candidate + + def iter_all(self) -> Iterable[InstallationCandidate]: + """Iterate through all candidates.""" + return iter(self._candidates) + + def iter_applicable(self) -> Iterable[InstallationCandidate]: + """Iterate through the applicable candidates.""" + return iter(self._applicable_candidates) + + +class CandidateEvaluator: + + """ + Responsible for filtering and sorting candidates for installation based + on what tags are valid. + """ + + @classmethod + def create( + cls, + project_name: str, + target_python: Optional[TargetPython] = None, + prefer_binary: bool = False, + allow_all_prereleases: bool = False, + specifier: Optional[specifiers.BaseSpecifier] = None, + hashes: Optional[Hashes] = None, + ) -> "CandidateEvaluator": + """Create a CandidateEvaluator object. + + :param target_python: The target Python interpreter to use when + checking compatibility. If None (the default), a TargetPython + object will be constructed from the running Python. + :param specifier: An optional object implementing `filter` + (e.g. `packaging.specifiers.SpecifierSet`) to filter applicable + versions. + :param hashes: An optional collection of allowed hashes. + """ + if target_python is None: + target_python = TargetPython() + if specifier is None: + specifier = specifiers.SpecifierSet() + + supported_tags = target_python.get_sorted_tags() + + return cls( + project_name=project_name, + supported_tags=supported_tags, + specifier=specifier, + prefer_binary=prefer_binary, + allow_all_prereleases=allow_all_prereleases, + hashes=hashes, + ) + + def __init__( + self, + project_name: str, + supported_tags: List[Tag], + specifier: specifiers.BaseSpecifier, + prefer_binary: bool = False, + allow_all_prereleases: bool = False, + hashes: Optional[Hashes] = None, + ) -> None: + """ + :param supported_tags: The PEP 425 tags supported by the target + Python in order of preference (most preferred first). + """ + self._allow_all_prereleases = allow_all_prereleases + self._hashes = hashes + self._prefer_binary = prefer_binary + self._project_name = project_name + self._specifier = specifier + self._supported_tags = supported_tags + # Since the index of the tag in the _supported_tags list is used + # as a priority, precompute a map from tag to index/priority to be + # used in wheel.find_most_preferred_tag. + self._wheel_tag_preferences = { + tag: idx for idx, tag in enumerate(supported_tags) + } + + def get_applicable_candidates( + self, + candidates: List[InstallationCandidate], + ) -> List[InstallationCandidate]: + """ + Return the applicable candidates from a list of candidates. + """ + # Using None infers from the specifier instead. + allow_prereleases = self._allow_all_prereleases or None + specifier = self._specifier + versions = { + str(v) + for v in specifier.filter( + # We turn the version object into a str here because otherwise + # when we're debundled but setuptools isn't, Python will see + # packaging.version.Version and + # pkg_resources._vendor.packaging.version.Version as different + # types. This way we'll use a str as a common data interchange + # format. If we stop using the pkg_resources provided specifier + # and start using our own, we can drop the cast to str(). + (str(c.version) for c in candidates), + prereleases=allow_prereleases, + ) + } + + # Again, converting version to str to deal with debundling. + applicable_candidates = [c for c in candidates if str(c.version) in versions] + + filtered_applicable_candidates = filter_unallowed_hashes( + candidates=applicable_candidates, + hashes=self._hashes, + project_name=self._project_name, + ) + + return sorted(filtered_applicable_candidates, key=self._sort_key) + + def _sort_key(self, candidate: InstallationCandidate) -> CandidateSortingKey: + """ + Function to pass as the `key` argument to a call to sorted() to sort + InstallationCandidates by preference. + + Returns a tuple such that tuples sorting as greater using Python's + default comparison operator are more preferred. + + The preference is as follows: + + First and foremost, candidates with allowed (matching) hashes are + always preferred over candidates without matching hashes. This is + because e.g. if the only candidate with an allowed hash is yanked, + we still want to use that candidate. + + Second, excepting hash considerations, candidates that have been + yanked (in the sense of PEP 592) are always less preferred than + candidates that haven't been yanked. Then: + + If not finding wheels, they are sorted by version only. + If finding wheels, then the sort order is by version, then: + 1. existing installs + 2. wheels ordered via Wheel.support_index_min(self._supported_tags) + 3. source archives + If prefer_binary was set, then all wheels are sorted above sources. + + Note: it was considered to embed this logic into the Link + comparison operators, but then different sdist links + with the same version, would have to be considered equal + """ + valid_tags = self._supported_tags + support_num = len(valid_tags) + build_tag: BuildTag = () + binary_preference = 0 + link = candidate.link + if link.is_wheel: + # can raise InvalidWheelFilename + wheel = Wheel(link.filename) + try: + pri = -( + wheel.find_most_preferred_tag( + valid_tags, self._wheel_tag_preferences + ) + ) + except ValueError: + raise UnsupportedWheel( + f"{wheel.filename} is not a supported wheel for this platform. It " + "can't be sorted." + ) + if self._prefer_binary: + binary_preference = 1 + if wheel.build_tag is not None: + match = re.match(r"^(\d+)(.*)$", wheel.build_tag) + assert match is not None, "guaranteed by filename validation" + build_tag_groups = match.groups() + build_tag = (int(build_tag_groups[0]), build_tag_groups[1]) + else: # sdist + pri = -(support_num) + has_allowed_hash = int(link.is_hash_allowed(self._hashes)) + yank_value = -1 * int(link.is_yanked) # -1 for yanked. + return ( + has_allowed_hash, + yank_value, + binary_preference, + candidate.version, + pri, + build_tag, + ) + + def sort_best_candidate( + self, + candidates: List[InstallationCandidate], + ) -> Optional[InstallationCandidate]: + """ + Return the best candidate per the instance's sort order, or None if + no candidate is acceptable. + """ + if not candidates: + return None + best_candidate = max(candidates, key=self._sort_key) + return best_candidate + + def compute_best_candidate( + self, + candidates: List[InstallationCandidate], + ) -> BestCandidateResult: + """ + Compute and return a `BestCandidateResult` instance. + """ + applicable_candidates = self.get_applicable_candidates(candidates) + + best_candidate = self.sort_best_candidate(applicable_candidates) + + return BestCandidateResult( + candidates, + applicable_candidates=applicable_candidates, + best_candidate=best_candidate, + ) + + +class PackageFinder: + """This finds packages. + + This is meant to match easy_install's technique for looking for + packages, by reading pages and looking for appropriate links. + """ + + def __init__( + self, + link_collector: LinkCollector, + target_python: TargetPython, + allow_yanked: bool, + format_control: Optional[FormatControl] = None, + candidate_prefs: Optional[CandidatePreferences] = None, + ignore_requires_python: Optional[bool] = None, + ) -> None: + """ + This constructor is primarily meant to be used by the create() class + method and from tests. + + :param format_control: A FormatControl object, used to control + the selection of source packages / binary packages when consulting + the index and links. + :param candidate_prefs: Options to use when creating a + CandidateEvaluator object. + """ + if candidate_prefs is None: + candidate_prefs = CandidatePreferences() + + format_control = format_control or FormatControl(set(), set()) + + self._allow_yanked = allow_yanked + self._candidate_prefs = candidate_prefs + self._ignore_requires_python = ignore_requires_python + self._link_collector = link_collector + self._target_python = target_python + + self.format_control = format_control + + # These are boring links that have already been logged somehow. + self._logged_links: Set[Tuple[Link, LinkType, str]] = set() + + # Don't include an allow_yanked default value to make sure each call + # site considers whether yanked releases are allowed. This also causes + # that decision to be made explicit in the calling code, which helps + # people when reading the code. + @classmethod + def create( + cls, + link_collector: LinkCollector, + selection_prefs: SelectionPreferences, + target_python: Optional[TargetPython] = None, + ) -> "PackageFinder": + """Create a PackageFinder. + + :param selection_prefs: The candidate selection preferences, as a + SelectionPreferences object. + :param target_python: The target Python interpreter to use when + checking compatibility. If None (the default), a TargetPython + object will be constructed from the running Python. + """ + if target_python is None: + target_python = TargetPython() + + candidate_prefs = CandidatePreferences( + prefer_binary=selection_prefs.prefer_binary, + allow_all_prereleases=selection_prefs.allow_all_prereleases, + ) + + return cls( + candidate_prefs=candidate_prefs, + link_collector=link_collector, + target_python=target_python, + allow_yanked=selection_prefs.allow_yanked, + format_control=selection_prefs.format_control, + ignore_requires_python=selection_prefs.ignore_requires_python, + ) + + @property + def target_python(self) -> TargetPython: + return self._target_python + + @property + def search_scope(self) -> SearchScope: + return self._link_collector.search_scope + + @search_scope.setter + def search_scope(self, search_scope: SearchScope) -> None: + self._link_collector.search_scope = search_scope + + @property + def find_links(self) -> List[str]: + return self._link_collector.find_links + + @property + def index_urls(self) -> List[str]: + return self.search_scope.index_urls + + @property + def trusted_hosts(self) -> Iterable[str]: + for host_port in self._link_collector.session.pip_trusted_origins: + yield build_netloc(*host_port) + + @property + def allow_all_prereleases(self) -> bool: + return self._candidate_prefs.allow_all_prereleases + + def set_allow_all_prereleases(self) -> None: + self._candidate_prefs.allow_all_prereleases = True + + @property + def prefer_binary(self) -> bool: + return self._candidate_prefs.prefer_binary + + def set_prefer_binary(self) -> None: + self._candidate_prefs.prefer_binary = True + + def requires_python_skipped_reasons(self) -> List[str]: + reasons = { + detail + for _, result, detail in self._logged_links + if result == LinkType.requires_python_mismatch + } + return sorted(reasons) + + def make_link_evaluator(self, project_name: str) -> LinkEvaluator: + canonical_name = canonicalize_name(project_name) + formats = self.format_control.get_allowed_formats(canonical_name) + + return LinkEvaluator( + project_name=project_name, + canonical_name=canonical_name, + formats=formats, + target_python=self._target_python, + allow_yanked=self._allow_yanked, + ignore_requires_python=self._ignore_requires_python, + ) + + def _sort_links(self, links: Iterable[Link]) -> List[Link]: + """ + Returns elements of links in order, non-egg links first, egg links + second, while eliminating duplicates + """ + eggs, no_eggs = [], [] + seen: Set[Link] = set() + for link in links: + if link not in seen: + seen.add(link) + if link.egg_fragment: + eggs.append(link) + else: + no_eggs.append(link) + return no_eggs + eggs + + def _log_skipped_link(self, link: Link, result: LinkType, detail: str) -> None: + entry = (link, result, detail) + if entry not in self._logged_links: + # Put the link at the end so the reason is more visible and because + # the link string is usually very long. + logger.debug("Skipping link: %s: %s", detail, link) + self._logged_links.add(entry) + + def get_install_candidate( + self, link_evaluator: LinkEvaluator, link: Link + ) -> Optional[InstallationCandidate]: + """ + If the link is a candidate for install, convert it to an + InstallationCandidate and return it. Otherwise, return None. + """ + result, detail = link_evaluator.evaluate_link(link) + if result != LinkType.candidate: + self._log_skipped_link(link, result, detail) + return None + + return InstallationCandidate( + name=link_evaluator.project_name, + link=link, + version=detail, + ) + + def evaluate_links( + self, link_evaluator: LinkEvaluator, links: Iterable[Link] + ) -> List[InstallationCandidate]: + """ + Convert links that are candidates to InstallationCandidate objects. + """ + candidates = [] + for link in self._sort_links(links): + candidate = self.get_install_candidate(link_evaluator, link) + if candidate is not None: + candidates.append(candidate) + + return candidates + + def process_project_url( + self, project_url: Link, link_evaluator: LinkEvaluator + ) -> List[InstallationCandidate]: + logger.debug( + "Fetching project page and analyzing links: %s", + project_url, + ) + index_response = self._link_collector.fetch_response(project_url) + if index_response is None: + return [] + + page_links = list(parse_links(index_response)) + + with indent_log(): + package_links = self.evaluate_links( + link_evaluator, + links=page_links, + ) + + return package_links + + @functools.lru_cache(maxsize=None) + def find_all_candidates(self, project_name: str) -> List[InstallationCandidate]: + """Find all available InstallationCandidate for project_name + + This checks index_urls and find_links. + All versions found are returned as an InstallationCandidate list. + + See LinkEvaluator.evaluate_link() for details on which files + are accepted. + """ + link_evaluator = self.make_link_evaluator(project_name) + + collected_sources = self._link_collector.collect_sources( + project_name=project_name, + candidates_from_page=functools.partial( + self.process_project_url, + link_evaluator=link_evaluator, + ), + ) + + page_candidates_it = itertools.chain.from_iterable( + source.page_candidates() + for sources in collected_sources + for source in sources + if source is not None + ) + page_candidates = list(page_candidates_it) + + file_links_it = itertools.chain.from_iterable( + source.file_links() + for sources in collected_sources + for source in sources + if source is not None + ) + file_candidates = self.evaluate_links( + link_evaluator, + sorted(file_links_it, reverse=True), + ) + + if logger.isEnabledFor(logging.DEBUG) and file_candidates: + paths = [] + for candidate in file_candidates: + assert candidate.link.url # we need to have a URL + try: + paths.append(candidate.link.file_path) + except Exception: + paths.append(candidate.link.url) # it's not a local file + + logger.debug("Local files found: %s", ", ".join(paths)) + + # This is an intentional priority ordering + return file_candidates + page_candidates + + def make_candidate_evaluator( + self, + project_name: str, + specifier: Optional[specifiers.BaseSpecifier] = None, + hashes: Optional[Hashes] = None, + ) -> CandidateEvaluator: + """Create a CandidateEvaluator object to use.""" + candidate_prefs = self._candidate_prefs + return CandidateEvaluator.create( + project_name=project_name, + target_python=self._target_python, + prefer_binary=candidate_prefs.prefer_binary, + allow_all_prereleases=candidate_prefs.allow_all_prereleases, + specifier=specifier, + hashes=hashes, + ) + + @functools.lru_cache(maxsize=None) + def find_best_candidate( + self, + project_name: str, + specifier: Optional[specifiers.BaseSpecifier] = None, + hashes: Optional[Hashes] = None, + ) -> BestCandidateResult: + """Find matches for the given project and specifier. + + :param specifier: An optional object implementing `filter` + (e.g. `packaging.specifiers.SpecifierSet`) to filter applicable + versions. + + :return: A `BestCandidateResult` instance. + """ + candidates = self.find_all_candidates(project_name) + candidate_evaluator = self.make_candidate_evaluator( + project_name=project_name, + specifier=specifier, + hashes=hashes, + ) + return candidate_evaluator.compute_best_candidate(candidates) + + def find_requirement( + self, req: InstallRequirement, upgrade: bool + ) -> Optional[InstallationCandidate]: + """Try to find a Link matching req + + Expects req, an InstallRequirement and upgrade, a boolean + Returns a InstallationCandidate if found, + Raises DistributionNotFound or BestVersionAlreadyInstalled otherwise + """ + hashes = req.hashes(trust_internet=False) + best_candidate_result = self.find_best_candidate( + req.name, + specifier=req.specifier, + hashes=hashes, + ) + best_candidate = best_candidate_result.best_candidate + + installed_version: Optional[_BaseVersion] = None + if req.satisfied_by is not None: + installed_version = req.satisfied_by.version + + def _format_versions(cand_iter: Iterable[InstallationCandidate]) -> str: + # This repeated parse_version and str() conversion is needed to + # handle different vendoring sources from pip and pkg_resources. + # If we stop using the pkg_resources provided specifier and start + # using our own, we can drop the cast to str(). + return ( + ", ".join( + sorted( + {str(c.version) for c in cand_iter}, + key=parse_version, + ) + ) + or "none" + ) + + if installed_version is None and best_candidate is None: + logger.critical( + "Could not find a version that satisfies the requirement %s " + "(from versions: %s)", + req, + _format_versions(best_candidate_result.iter_all()), + ) + + raise DistributionNotFound(f"No matching distribution found for {req}") + + def _should_install_candidate( + candidate: Optional[InstallationCandidate], + ) -> "TypeGuard[InstallationCandidate]": + if installed_version is None: + return True + if best_candidate is None: + return False + return best_candidate.version > installed_version + + if not upgrade and installed_version is not None: + if _should_install_candidate(best_candidate): + logger.debug( + "Existing installed version (%s) satisfies requirement " + "(most up-to-date version is %s)", + installed_version, + best_candidate.version, + ) + else: + logger.debug( + "Existing installed version (%s) is most up-to-date and " + "satisfies requirement", + installed_version, + ) + return None + + if _should_install_candidate(best_candidate): + logger.debug( + "Using version %s (newest of versions: %s)", + best_candidate.version, + _format_versions(best_candidate_result.iter_applicable()), + ) + return best_candidate + + # We have an existing version, and its the best version + logger.debug( + "Installed version (%s) is most up-to-date (past versions: %s)", + installed_version, + _format_versions(best_candidate_result.iter_applicable()), + ) + raise BestVersionAlreadyInstalled + + +def _find_name_version_sep(fragment: str, canonical_name: str) -> int: + """Find the separator's index based on the package's canonical name. + + :param fragment: A + filename "fragment" (stem) or + egg fragment. + :param canonical_name: The package's canonical name. + + This function is needed since the canonicalized name does not necessarily + have the same length as the egg info's name part. An example:: + + >>> fragment = 'foo__bar-1.0' + >>> canonical_name = 'foo-bar' + >>> _find_name_version_sep(fragment, canonical_name) + 8 + """ + # Project name and version must be separated by one single dash. Find all + # occurrences of dashes; if the string in front of it matches the canonical + # name, this is the one separating the name and version parts. + for i, c in enumerate(fragment): + if c != "-": + continue + if canonicalize_name(fragment[:i]) == canonical_name: + return i + raise ValueError(f"{fragment} does not match {canonical_name}") + + +def _extract_version_from_fragment(fragment: str, canonical_name: str) -> Optional[str]: + """Parse the version string from a + filename + "fragment" (stem) or egg fragment. + + :param fragment: The string to parse. E.g. foo-2.1 + :param canonical_name: The canonicalized name of the package this + belongs to. + """ + try: + version_start = _find_name_version_sep(fragment, canonical_name) + 1 + except ValueError: + return None + version = fragment[version_start:] + if not version: + return None + return version diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/index/sources.py b/.venv/lib/python3.12/site-packages/pip/_internal/index/sources.py new file mode 100644 index 00000000..f4626d71 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_internal/index/sources.py @@ -0,0 +1,285 @@ +import logging +import mimetypes +import os +from collections import defaultdict +from typing import Callable, Dict, Iterable, List, Optional, Tuple + +from pip._vendor.packaging.utils import ( + InvalidSdistFilename, + InvalidVersion, + InvalidWheelFilename, + canonicalize_name, + parse_sdist_filename, + parse_wheel_filename, +) + +from pip._internal.models.candidate import InstallationCandidate +from pip._internal.models.link import Link +from pip._internal.utils.urls import path_to_url, url_to_path +from pip._internal.vcs import is_url + +logger = logging.getLogger(__name__) + +FoundCandidates = Iterable[InstallationCandidate] +FoundLinks = Iterable[Link] +CandidatesFromPage = Callable[[Link], Iterable[InstallationCandidate]] +PageValidator = Callable[[Link], bool] + + +class LinkSource: + @property + def link(self) -> Optional[Link]: + """Returns the underlying link, if there's one.""" + raise NotImplementedError() + + def page_candidates(self) -> FoundCandidates: + """Candidates found by parsing an archive listing HTML file.""" + raise NotImplementedError() + + def file_links(self) -> FoundLinks: + """Links found by specifying archives directly.""" + raise NotImplementedError() + + +def _is_html_file(file_url: str) -> bool: + return mimetypes.guess_type(file_url, strict=False)[0] == "text/html" + + +class _FlatDirectoryToUrls: + """Scans directory and caches results""" + + def __init__(self, path: str) -> None: + self._path = path + self._page_candidates: List[str] = [] + self._project_name_to_urls: Dict[str, List[str]] = defaultdict(list) + self._scanned_directory = False + + def _scan_directory(self) -> None: + """Scans directory once and populates both page_candidates + and project_name_to_urls at the same time + """ + for entry in os.scandir(self._path): + url = path_to_url(entry.path) + if _is_html_file(url): + self._page_candidates.append(url) + continue + + # File must have a valid wheel or sdist name, + # otherwise not worth considering as a package + try: + project_filename = parse_wheel_filename(entry.name)[0] + except (InvalidWheelFilename, InvalidVersion): + try: + project_filename = parse_sdist_filename(entry.name)[0] + except (InvalidSdistFilename, InvalidVersion): + continue + + self._project_name_to_urls[project_filename].append(url) + self._scanned_directory = True + + @property + def page_candidates(self) -> List[str]: + if not self._scanned_directory: + self._scan_directory() + + return self._page_candidates + + @property + def project_name_to_urls(self) -> Dict[str, List[str]]: + if not self._scanned_directory: + self._scan_directory() + + return self._project_name_to_urls + + +class _FlatDirectorySource(LinkSource): + """Link source specified by ``--find-links=``. + + This looks the content of the directory, and returns: + + * ``page_candidates``: Links listed on each HTML file in the directory. + * ``file_candidates``: Archives in the directory. + """ + + _paths_to_urls: Dict[str, _FlatDirectoryToUrls] = {} + + def __init__( + self, + candidates_from_page: CandidatesFromPage, + path: str, + project_name: str, + ) -> None: + self._candidates_from_page = candidates_from_page + self._project_name = canonicalize_name(project_name) + + # Get existing instance of _FlatDirectoryToUrls if it exists + if path in self._paths_to_urls: + self._path_to_urls = self._paths_to_urls[path] + else: + self._path_to_urls = _FlatDirectoryToUrls(path=path) + self._paths_to_urls[path] = self._path_to_urls + + @property + def link(self) -> Optional[Link]: + return None + + def page_candidates(self) -> FoundCandidates: + for url in self._path_to_urls.page_candidates: + yield from self._candidates_from_page(Link(url)) + + def file_links(self) -> FoundLinks: + for url in self._path_to_urls.project_name_to_urls[self._project_name]: + yield Link(url) + + +class _LocalFileSource(LinkSource): + """``--find-links=`` or ``--[extra-]index-url=``. + + If a URL is supplied, it must be a ``file:`` URL. If a path is supplied to + the option, it is converted to a URL first. This returns: + + * ``page_candidates``: Links listed on an HTML file. + * ``file_candidates``: The non-HTML file. + """ + + def __init__( + self, + candidates_from_page: CandidatesFromPage, + link: Link, + ) -> None: + self._candidates_from_page = candidates_from_page + self._link = link + + @property + def link(self) -> Optional[Link]: + return self._link + + def page_candidates(self) -> FoundCandidates: + if not _is_html_file(self._link.url): + return + yield from self._candidates_from_page(self._link) + + def file_links(self) -> FoundLinks: + if _is_html_file(self._link.url): + return + yield self._link + + +class _RemoteFileSource(LinkSource): + """``--find-links=`` or ``--[extra-]index-url=``. + + This returns: + + * ``page_candidates``: Links listed on an HTML file. + * ``file_candidates``: The non-HTML file. + """ + + def __init__( + self, + candidates_from_page: CandidatesFromPage, + page_validator: PageValidator, + link: Link, + ) -> None: + self._candidates_from_page = candidates_from_page + self._page_validator = page_validator + self._link = link + + @property + def link(self) -> Optional[Link]: + return self._link + + def page_candidates(self) -> FoundCandidates: + if not self._page_validator(self._link): + return + yield from self._candidates_from_page(self._link) + + def file_links(self) -> FoundLinks: + yield self._link + + +class _IndexDirectorySource(LinkSource): + """``--[extra-]index-url=``. + + This is treated like a remote URL; ``candidates_from_page`` contains logic + for this by appending ``index.html`` to the link. + """ + + def __init__( + self, + candidates_from_page: CandidatesFromPage, + link: Link, + ) -> None: + self._candidates_from_page = candidates_from_page + self._link = link + + @property + def link(self) -> Optional[Link]: + return self._link + + def page_candidates(self) -> FoundCandidates: + yield from self._candidates_from_page(self._link) + + def file_links(self) -> FoundLinks: + return () + + +def build_source( + location: str, + *, + candidates_from_page: CandidatesFromPage, + page_validator: PageValidator, + expand_dir: bool, + cache_link_parsing: bool, + project_name: str, +) -> Tuple[Optional[str], Optional[LinkSource]]: + path: Optional[str] = None + url: Optional[str] = None + if os.path.exists(location): # Is a local path. + url = path_to_url(location) + path = location + elif location.startswith("file:"): # A file: URL. + url = location + path = url_to_path(location) + elif is_url(location): + url = location + + if url is None: + msg = ( + "Location '%s' is ignored: " + "it is either a non-existing path or lacks a specific scheme." + ) + logger.warning(msg, location) + return (None, None) + + if path is None: + source: LinkSource = _RemoteFileSource( + candidates_from_page=candidates_from_page, + page_validator=page_validator, + link=Link(url, cache_link_parsing=cache_link_parsing), + ) + return (url, source) + + if os.path.isdir(path): + if expand_dir: + source = _FlatDirectorySource( + candidates_from_page=candidates_from_page, + path=path, + project_name=project_name, + ) + else: + source = _IndexDirectorySource( + candidates_from_page=candidates_from_page, + link=Link(url, cache_link_parsing=cache_link_parsing), + ) + return (url, source) + elif os.path.isfile(path): + source = _LocalFileSource( + candidates_from_page=candidates_from_page, + link=Link(url, cache_link_parsing=cache_link_parsing), + ) + return (url, source) + logger.warning( + "Location '%s' is ignored: it is neither a file nor a directory.", + location, + ) + return (url, None) diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/locations/__init__.py b/.venv/lib/python3.12/site-packages/pip/_internal/locations/__init__.py new file mode 100644 index 00000000..d54bc63e --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_internal/locations/__init__.py @@ -0,0 +1,467 @@ +import functools +import logging +import os +import pathlib +import sys +import sysconfig +from typing import Any, Dict, Generator, Optional, Tuple + +from pip._internal.models.scheme import SCHEME_KEYS, Scheme +from pip._internal.utils.compat import WINDOWS +from pip._internal.utils.deprecation import deprecated +from pip._internal.utils.virtualenv import running_under_virtualenv + +from . import _sysconfig +from .base import ( + USER_CACHE_DIR, + get_major_minor_version, + get_src_prefix, + is_osx_framework, + site_packages, + user_site, +) + +__all__ = [ + "USER_CACHE_DIR", + "get_bin_prefix", + "get_bin_user", + "get_major_minor_version", + "get_platlib", + "get_purelib", + "get_scheme", + "get_src_prefix", + "site_packages", + "user_site", +] + + +logger = logging.getLogger(__name__) + + +_PLATLIBDIR: str = getattr(sys, "platlibdir", "lib") + +_USE_SYSCONFIG_DEFAULT = sys.version_info >= (3, 10) + + +def _should_use_sysconfig() -> bool: + """This function determines the value of _USE_SYSCONFIG. + + By default, pip uses sysconfig on Python 3.10+. + But Python distributors can override this decision by setting: + sysconfig._PIP_USE_SYSCONFIG = True / False + Rationale in https://github.com/pypa/pip/issues/10647 + + This is a function for testability, but should be constant during any one + run. + """ + return bool(getattr(sysconfig, "_PIP_USE_SYSCONFIG", _USE_SYSCONFIG_DEFAULT)) + + +_USE_SYSCONFIG = _should_use_sysconfig() + +if not _USE_SYSCONFIG: + # Import distutils lazily to avoid deprecation warnings, + # but import it soon enough that it is in memory and available during + # a pip reinstall. + from . import _distutils + +# Be noisy about incompatibilities if this platforms "should" be using +# sysconfig, but is explicitly opting out and using distutils instead. +if _USE_SYSCONFIG_DEFAULT and not _USE_SYSCONFIG: + _MISMATCH_LEVEL = logging.WARNING +else: + _MISMATCH_LEVEL = logging.DEBUG + + +def _looks_like_bpo_44860() -> bool: + """The resolution to bpo-44860 will change this incorrect platlib. + + See . + """ + from distutils.command.install import INSTALL_SCHEMES + + try: + unix_user_platlib = INSTALL_SCHEMES["unix_user"]["platlib"] + except KeyError: + return False + return unix_user_platlib == "$usersite" + + +def _looks_like_red_hat_patched_platlib_purelib(scheme: Dict[str, str]) -> bool: + platlib = scheme["platlib"] + if "/$platlibdir/" in platlib: + platlib = platlib.replace("/$platlibdir/", f"/{_PLATLIBDIR}/") + if "/lib64/" not in platlib: + return False + unpatched = platlib.replace("/lib64/", "/lib/") + return unpatched.replace("$platbase/", "$base/") == scheme["purelib"] + + +@functools.lru_cache(maxsize=None) +def _looks_like_red_hat_lib() -> bool: + """Red Hat patches platlib in unix_prefix and unix_home, but not purelib. + + This is the only way I can see to tell a Red Hat-patched Python. + """ + from distutils.command.install import INSTALL_SCHEMES + + return all( + k in INSTALL_SCHEMES + and _looks_like_red_hat_patched_platlib_purelib(INSTALL_SCHEMES[k]) + for k in ("unix_prefix", "unix_home") + ) + + +@functools.lru_cache(maxsize=None) +def _looks_like_debian_scheme() -> bool: + """Debian adds two additional schemes.""" + from distutils.command.install import INSTALL_SCHEMES + + return "deb_system" in INSTALL_SCHEMES and "unix_local" in INSTALL_SCHEMES + + +@functools.lru_cache(maxsize=None) +def _looks_like_red_hat_scheme() -> bool: + """Red Hat patches ``sys.prefix`` and ``sys.exec_prefix``. + + Red Hat's ``00251-change-user-install-location.patch`` changes the install + command's ``prefix`` and ``exec_prefix`` to append ``"/local"``. This is + (fortunately?) done quite unconditionally, so we create a default command + object without any configuration to detect this. + """ + from distutils.command.install import install + from distutils.dist import Distribution + + cmd: Any = install(Distribution()) + cmd.finalize_options() + return ( + cmd.exec_prefix == f"{os.path.normpath(sys.exec_prefix)}/local" + and cmd.prefix == f"{os.path.normpath(sys.prefix)}/local" + ) + + +@functools.lru_cache(maxsize=None) +def _looks_like_slackware_scheme() -> bool: + """Slackware patches sysconfig but fails to patch distutils and site. + + Slackware changes sysconfig's user scheme to use ``"lib64"`` for the lib + path, but does not do the same to the site module. + """ + if user_site is None: # User-site not available. + return False + try: + paths = sysconfig.get_paths(scheme="posix_user", expand=False) + except KeyError: # User-site not available. + return False + return "/lib64/" in paths["purelib"] and "/lib64/" not in user_site + + +@functools.lru_cache(maxsize=None) +def _looks_like_msys2_mingw_scheme() -> bool: + """MSYS2 patches distutils and sysconfig to use a UNIX-like scheme. + + However, MSYS2 incorrectly patches sysconfig ``nt`` scheme. The fix is + likely going to be included in their 3.10 release, so we ignore the warning. + See msys2/MINGW-packages#9319. + + MSYS2 MINGW's patch uses lowercase ``"lib"`` instead of the usual uppercase, + and is missing the final ``"site-packages"``. + """ + paths = sysconfig.get_paths("nt", expand=False) + return all( + "Lib" not in p and "lib" in p and not p.endswith("site-packages") + for p in (paths[key] for key in ("platlib", "purelib")) + ) + + +def _fix_abiflags(parts: Tuple[str]) -> Generator[str, None, None]: + ldversion = sysconfig.get_config_var("LDVERSION") + abiflags = getattr(sys, "abiflags", None) + + # LDVERSION does not end with sys.abiflags. Just return the path unchanged. + if not ldversion or not abiflags or not ldversion.endswith(abiflags): + yield from parts + return + + # Strip sys.abiflags from LDVERSION-based path components. + for part in parts: + if part.endswith(ldversion): + part = part[: (0 - len(abiflags))] + yield part + + +@functools.lru_cache(maxsize=None) +def _warn_mismatched(old: pathlib.Path, new: pathlib.Path, *, key: str) -> None: + issue_url = "https://github.com/pypa/pip/issues/10151" + message = ( + "Value for %s does not match. Please report this to <%s>" + "\ndistutils: %s" + "\nsysconfig: %s" + ) + logger.log(_MISMATCH_LEVEL, message, key, issue_url, old, new) + + +def _warn_if_mismatch(old: pathlib.Path, new: pathlib.Path, *, key: str) -> bool: + if old == new: + return False + _warn_mismatched(old, new, key=key) + return True + + +@functools.lru_cache(maxsize=None) +def _log_context( + *, + user: bool = False, + home: Optional[str] = None, + root: Optional[str] = None, + prefix: Optional[str] = None, +) -> None: + parts = [ + "Additional context:", + "user = %r", + "home = %r", + "root = %r", + "prefix = %r", + ] + + logger.log(_MISMATCH_LEVEL, "\n".join(parts), user, home, root, prefix) + + +def get_scheme( + dist_name: str, + user: bool = False, + home: Optional[str] = None, + root: Optional[str] = None, + isolated: bool = False, + prefix: Optional[str] = None, +) -> Scheme: + new = _sysconfig.get_scheme( + dist_name, + user=user, + home=home, + root=root, + isolated=isolated, + prefix=prefix, + ) + if _USE_SYSCONFIG: + return new + + old = _distutils.get_scheme( + dist_name, + user=user, + home=home, + root=root, + isolated=isolated, + prefix=prefix, + ) + + warning_contexts = [] + for k in SCHEME_KEYS: + old_v = pathlib.Path(getattr(old, k)) + new_v = pathlib.Path(getattr(new, k)) + + if old_v == new_v: + continue + + # distutils incorrectly put PyPy packages under ``site-packages/python`` + # in the ``posix_home`` scheme, but PyPy devs said they expect the + # directory name to be ``pypy`` instead. So we treat this as a bug fix + # and not warn about it. See bpo-43307 and python/cpython#24628. + skip_pypy_special_case = ( + sys.implementation.name == "pypy" + and home is not None + and k in ("platlib", "purelib") + and old_v.parent == new_v.parent + and old_v.name.startswith("python") + and new_v.name.startswith("pypy") + ) + if skip_pypy_special_case: + continue + + # sysconfig's ``osx_framework_user`` does not include ``pythonX.Y`` in + # the ``include`` value, but distutils's ``headers`` does. We'll let + # CPython decide whether this is a bug or feature. See bpo-43948. + skip_osx_framework_user_special_case = ( + user + and is_osx_framework() + and k == "headers" + and old_v.parent.parent == new_v.parent + and old_v.parent.name.startswith("python") + ) + if skip_osx_framework_user_special_case: + continue + + # On Red Hat and derived Linux distributions, distutils is patched to + # use "lib64" instead of "lib" for platlib. + if k == "platlib" and _looks_like_red_hat_lib(): + continue + + # On Python 3.9+, sysconfig's posix_user scheme sets platlib against + # sys.platlibdir, but distutils's unix_user incorrectly coninutes + # using the same $usersite for both platlib and purelib. This creates a + # mismatch when sys.platlibdir is not "lib". + skip_bpo_44860 = ( + user + and k == "platlib" + and not WINDOWS + and sys.version_info >= (3, 9) + and _PLATLIBDIR != "lib" + and _looks_like_bpo_44860() + ) + if skip_bpo_44860: + continue + + # Slackware incorrectly patches posix_user to use lib64 instead of lib, + # but not usersite to match the location. + skip_slackware_user_scheme = ( + user + and k in ("platlib", "purelib") + and not WINDOWS + and _looks_like_slackware_scheme() + ) + if skip_slackware_user_scheme: + continue + + # Both Debian and Red Hat patch Python to place the system site under + # /usr/local instead of /usr. Debian also places lib in dist-packages + # instead of site-packages, but the /usr/local check should cover it. + skip_linux_system_special_case = ( + not (user or home or prefix or running_under_virtualenv()) + and old_v.parts[1:3] == ("usr", "local") + and len(new_v.parts) > 1 + and new_v.parts[1] == "usr" + and (len(new_v.parts) < 3 or new_v.parts[2] != "local") + and (_looks_like_red_hat_scheme() or _looks_like_debian_scheme()) + ) + if skip_linux_system_special_case: + continue + + # On Python 3.7 and earlier, sysconfig does not include sys.abiflags in + # the "pythonX.Y" part of the path, but distutils does. + skip_sysconfig_abiflag_bug = ( + sys.version_info < (3, 8) + and not WINDOWS + and k in ("headers", "platlib", "purelib") + and tuple(_fix_abiflags(old_v.parts)) == new_v.parts + ) + if skip_sysconfig_abiflag_bug: + continue + + # MSYS2 MINGW's sysconfig patch does not include the "site-packages" + # part of the path. This is incorrect and will be fixed in MSYS. + skip_msys2_mingw_bug = ( + WINDOWS and k in ("platlib", "purelib") and _looks_like_msys2_mingw_scheme() + ) + if skip_msys2_mingw_bug: + continue + + # CPython's POSIX install script invokes pip (via ensurepip) against the + # interpreter located in the source tree, not the install site. This + # triggers special logic in sysconfig that's not present in distutils. + # https://github.com/python/cpython/blob/8c21941ddaf/Lib/sysconfig.py#L178-L194 + skip_cpython_build = ( + sysconfig.is_python_build(check_home=True) + and not WINDOWS + and k in ("headers", "include", "platinclude") + ) + if skip_cpython_build: + continue + + warning_contexts.append((old_v, new_v, f"scheme.{k}")) + + if not warning_contexts: + return old + + # Check if this path mismatch is caused by distutils config files. Those + # files will no longer work once we switch to sysconfig, so this raises a + # deprecation message for them. + default_old = _distutils.distutils_scheme( + dist_name, + user, + home, + root, + isolated, + prefix, + ignore_config_files=True, + ) + if any(default_old[k] != getattr(old, k) for k in SCHEME_KEYS): + deprecated( + reason=( + "Configuring installation scheme with distutils config files " + "is deprecated and will no longer work in the near future. If you " + "are using a Homebrew or Linuxbrew Python, please see discussion " + "at https://github.com/Homebrew/homebrew-core/issues/76621" + ), + replacement=None, + gone_in=None, + ) + return old + + # Post warnings about this mismatch so user can report them back. + for old_v, new_v, key in warning_contexts: + _warn_mismatched(old_v, new_v, key=key) + _log_context(user=user, home=home, root=root, prefix=prefix) + + return old + + +def get_bin_prefix() -> str: + new = _sysconfig.get_bin_prefix() + if _USE_SYSCONFIG: + return new + + old = _distutils.get_bin_prefix() + if _warn_if_mismatch(pathlib.Path(old), pathlib.Path(new), key="bin_prefix"): + _log_context() + return old + + +def get_bin_user() -> str: + return _sysconfig.get_scheme("", user=True).scripts + + +def _looks_like_deb_system_dist_packages(value: str) -> bool: + """Check if the value is Debian's APT-controlled dist-packages. + + Debian's ``distutils.sysconfig.get_python_lib()`` implementation returns the + default package path controlled by APT, but does not patch ``sysconfig`` to + do the same. This is similar to the bug worked around in ``get_scheme()``, + but here the default is ``deb_system`` instead of ``unix_local``. Ultimately + we can't do anything about this Debian bug, and this detection allows us to + skip the warning when needed. + """ + if not _looks_like_debian_scheme(): + return False + if value == "/usr/lib/python3/dist-packages": + return True + return False + + +def get_purelib() -> str: + """Return the default pure-Python lib location.""" + new = _sysconfig.get_purelib() + if _USE_SYSCONFIG: + return new + + old = _distutils.get_purelib() + if _looks_like_deb_system_dist_packages(old): + return old + if _warn_if_mismatch(pathlib.Path(old), pathlib.Path(new), key="purelib"): + _log_context() + return old + + +def get_platlib() -> str: + """Return the default platform-shared lib location.""" + new = _sysconfig.get_platlib() + if _USE_SYSCONFIG: + return new + + from . import _distutils + + old = _distutils.get_platlib() + if _looks_like_deb_system_dist_packages(old): + return old + if _warn_if_mismatch(pathlib.Path(old), pathlib.Path(new), key="platlib"): + _log_context() + return old diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/locations/__pycache__/__init__.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_internal/locations/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..d609f1777ca4164a39cb9589bfdc2154b0114b79 GIT binary patch literal 16852 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 W5AU1qA%6BPR~JzH5oSeq)A)Z2gp0WV literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/locations/__pycache__/_distutils.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_internal/locations/__pycache__/_distutils.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..f4ace314e72fa6d8854617fb3a7d1be32e36f36f GIT binary patch literal 6932 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 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/locations/__pycache__/base.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_internal/locations/__pycache__/base.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..a07470f7f2ef1e9419f2553b827c6f2b7525d143 GIT binary patch literal 3857 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 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/locations/_distutils.py b/.venv/lib/python3.12/site-packages/pip/_internal/locations/_distutils.py new file mode 100644 index 00000000..0e18c6e1 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_internal/locations/_distutils.py @@ -0,0 +1,172 @@ +"""Locations where we look for configs, install stuff, etc""" + +# The following comment should be removed at some point in the future. +# mypy: strict-optional=False + +# If pip's going to use distutils, it should not be using the copy that setuptools +# might have injected into the environment. This is done by removing the injected +# shim, if it's injected. +# +# See https://github.com/pypa/pip/issues/8761 for the original discussion and +# rationale for why this is done within pip. +try: + __import__("_distutils_hack").remove_shim() +except (ImportError, AttributeError): + pass + +import logging +import os +import sys +from distutils.cmd import Command as DistutilsCommand +from distutils.command.install import SCHEME_KEYS +from distutils.command.install import install as distutils_install_command +from distutils.sysconfig import get_python_lib +from typing import Dict, List, Optional, Union, cast + +from pip._internal.models.scheme import Scheme +from pip._internal.utils.compat import WINDOWS +from pip._internal.utils.virtualenv import running_under_virtualenv + +from .base import get_major_minor_version + +logger = logging.getLogger(__name__) + + +def distutils_scheme( + dist_name: str, + user: bool = False, + home: Optional[str] = None, + root: Optional[str] = None, + isolated: bool = False, + prefix: Optional[str] = None, + *, + ignore_config_files: bool = False, +) -> Dict[str, str]: + """ + Return a distutils install scheme + """ + from distutils.dist import Distribution + + dist_args: Dict[str, Union[str, List[str]]] = {"name": dist_name} + if isolated: + dist_args["script_args"] = ["--no-user-cfg"] + + d = Distribution(dist_args) + if not ignore_config_files: + try: + d.parse_config_files() + except UnicodeDecodeError: + paths = d.find_config_files() + logger.warning( + "Ignore distutils configs in %s due to encoding errors.", + ", ".join(os.path.basename(p) for p in paths), + ) + obj: Optional[DistutilsCommand] = None + obj = d.get_command_obj("install", create=True) + assert obj is not None + i = cast(distutils_install_command, obj) + # NOTE: setting user or home has the side-effect of creating the home dir + # or user base for installations during finalize_options() + # ideally, we'd prefer a scheme class that has no side-effects. + assert not (user and prefix), f"user={user} prefix={prefix}" + assert not (home and prefix), f"home={home} prefix={prefix}" + i.user = user or i.user + if user or home: + i.prefix = "" + i.prefix = prefix or i.prefix + i.home = home or i.home + i.root = root or i.root + i.finalize_options() + + scheme = {} + for key in SCHEME_KEYS: + scheme[key] = getattr(i, "install_" + key) + + # install_lib specified in setup.cfg should install *everything* + # into there (i.e. it takes precedence over both purelib and + # platlib). Note, i.install_lib is *always* set after + # finalize_options(); we only want to override here if the user + # has explicitly requested it hence going back to the config + if "install_lib" in d.get_option_dict("install"): + scheme.update({"purelib": i.install_lib, "platlib": i.install_lib}) + + if running_under_virtualenv(): + if home: + prefix = home + elif user: + prefix = i.install_userbase + else: + prefix = i.prefix + scheme["headers"] = os.path.join( + prefix, + "include", + "site", + f"python{get_major_minor_version()}", + dist_name, + ) + + if root is not None: + path_no_drive = os.path.splitdrive(os.path.abspath(scheme["headers"]))[1] + scheme["headers"] = os.path.join(root, path_no_drive[1:]) + + return scheme + + +def get_scheme( + dist_name: str, + user: bool = False, + home: Optional[str] = None, + root: Optional[str] = None, + isolated: bool = False, + prefix: Optional[str] = None, +) -> Scheme: + """ + Get the "scheme" corresponding to the input parameters. The distutils + documentation provides the context for the available schemes: + https://docs.python.org/3/install/index.html#alternate-installation + + :param dist_name: the name of the package to retrieve the scheme for, used + in the headers scheme path + :param user: indicates to use the "user" scheme + :param home: indicates to use the "home" scheme and provides the base + directory for the same + :param root: root under which other directories are re-based + :param isolated: equivalent to --no-user-cfg, i.e. do not consider + ~/.pydistutils.cfg (posix) or ~/pydistutils.cfg (non-posix) for + scheme paths + :param prefix: indicates to use the "prefix" scheme and provides the + base directory for the same + """ + scheme = distutils_scheme(dist_name, user, home, root, isolated, prefix) + return Scheme( + platlib=scheme["platlib"], + purelib=scheme["purelib"], + headers=scheme["headers"], + scripts=scheme["scripts"], + data=scheme["data"], + ) + + +def get_bin_prefix() -> str: + # XXX: In old virtualenv versions, sys.prefix can contain '..' components, + # so we need to call normpath to eliminate them. + prefix = os.path.normpath(sys.prefix) + if WINDOWS: + bin_py = os.path.join(prefix, "Scripts") + # buildout uses 'bin' on Windows too? + if not os.path.exists(bin_py): + bin_py = os.path.join(prefix, "bin") + return bin_py + # Forcing to use /usr/local/bin for standard macOS framework installs + # Also log to ~/Library/Logs/ for use with the Console.app log viewer + if sys.platform[:6] == "darwin" and prefix[:16] == "/System/Library/": + return "/usr/local/bin" + return os.path.join(prefix, "bin") + + +def get_purelib() -> str: + return get_python_lib(plat_specific=False) + + +def get_platlib() -> str: + return get_python_lib(plat_specific=True) diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/locations/_sysconfig.py b/.venv/lib/python3.12/site-packages/pip/_internal/locations/_sysconfig.py new file mode 100644 index 00000000..97aef1f1 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_internal/locations/_sysconfig.py @@ -0,0 +1,213 @@ +import logging +import os +import sys +import sysconfig +import typing + +from pip._internal.exceptions import InvalidSchemeCombination, UserInstallationInvalid +from pip._internal.models.scheme import SCHEME_KEYS, Scheme +from pip._internal.utils.virtualenv import running_under_virtualenv + +from .base import change_root, get_major_minor_version, is_osx_framework + +logger = logging.getLogger(__name__) + + +# Notes on _infer_* functions. +# Unfortunately ``get_default_scheme()`` didn't exist before 3.10, so there's no +# way to ask things like "what is the '_prefix' scheme on this platform". These +# functions try to answer that with some heuristics while accounting for ad-hoc +# platforms not covered by CPython's default sysconfig implementation. If the +# ad-hoc implementation does not fully implement sysconfig, we'll fall back to +# a POSIX scheme. + +_AVAILABLE_SCHEMES = set(sysconfig.get_scheme_names()) + +_PREFERRED_SCHEME_API = getattr(sysconfig, "get_preferred_scheme", None) + + +def _should_use_osx_framework_prefix() -> bool: + """Check for Apple's ``osx_framework_library`` scheme. + + Python distributed by Apple's Command Line Tools has this special scheme + that's used when: + + * This is a framework build. + * We are installing into the system prefix. + + This does not account for ``pip install --prefix`` (also means we're not + installing to the system prefix), which should use ``posix_prefix``, but + logic here means ``_infer_prefix()`` outputs ``osx_framework_library``. But + since ``prefix`` is not available for ``sysconfig.get_default_scheme()``, + which is the stdlib replacement for ``_infer_prefix()``, presumably Apple + wouldn't be able to magically switch between ``osx_framework_library`` and + ``posix_prefix``. ``_infer_prefix()`` returning ``osx_framework_library`` + means its behavior is consistent whether we use the stdlib implementation + or our own, and we deal with this special case in ``get_scheme()`` instead. + """ + return ( + "osx_framework_library" in _AVAILABLE_SCHEMES + and not running_under_virtualenv() + and is_osx_framework() + ) + + +def _infer_prefix() -> str: + """Try to find a prefix scheme for the current platform. + + This tries: + + * A special ``osx_framework_library`` for Python distributed by Apple's + Command Line Tools, when not running in a virtual environment. + * Implementation + OS, used by PyPy on Windows (``pypy_nt``). + * Implementation without OS, used by PyPy on POSIX (``pypy``). + * OS + "prefix", used by CPython on POSIX (``posix_prefix``). + * Just the OS name, used by CPython on Windows (``nt``). + + If none of the above works, fall back to ``posix_prefix``. + """ + if _PREFERRED_SCHEME_API: + return _PREFERRED_SCHEME_API("prefix") + if _should_use_osx_framework_prefix(): + return "osx_framework_library" + implementation_suffixed = f"{sys.implementation.name}_{os.name}" + if implementation_suffixed in _AVAILABLE_SCHEMES: + return implementation_suffixed + if sys.implementation.name in _AVAILABLE_SCHEMES: + return sys.implementation.name + suffixed = f"{os.name}_prefix" + if suffixed in _AVAILABLE_SCHEMES: + return suffixed + if os.name in _AVAILABLE_SCHEMES: # On Windows, prefx is just called "nt". + return os.name + return "posix_prefix" + + +def _infer_user() -> str: + """Try to find a user scheme for the current platform.""" + if _PREFERRED_SCHEME_API: + return _PREFERRED_SCHEME_API("user") + if is_osx_framework() and not running_under_virtualenv(): + suffixed = "osx_framework_user" + else: + suffixed = f"{os.name}_user" + if suffixed in _AVAILABLE_SCHEMES: + return suffixed + if "posix_user" not in _AVAILABLE_SCHEMES: # User scheme unavailable. + raise UserInstallationInvalid() + return "posix_user" + + +def _infer_home() -> str: + """Try to find a home for the current platform.""" + if _PREFERRED_SCHEME_API: + return _PREFERRED_SCHEME_API("home") + suffixed = f"{os.name}_home" + if suffixed in _AVAILABLE_SCHEMES: + return suffixed + return "posix_home" + + +# Update these keys if the user sets a custom home. +_HOME_KEYS = [ + "installed_base", + "base", + "installed_platbase", + "platbase", + "prefix", + "exec_prefix", +] +if sysconfig.get_config_var("userbase") is not None: + _HOME_KEYS.append("userbase") + + +def get_scheme( + dist_name: str, + user: bool = False, + home: typing.Optional[str] = None, + root: typing.Optional[str] = None, + isolated: bool = False, + prefix: typing.Optional[str] = None, +) -> Scheme: + """ + Get the "scheme" corresponding to the input parameters. + + :param dist_name: the name of the package to retrieve the scheme for, used + in the headers scheme path + :param user: indicates to use the "user" scheme + :param home: indicates to use the "home" scheme + :param root: root under which other directories are re-based + :param isolated: ignored, but kept for distutils compatibility (where + this controls whether the user-site pydistutils.cfg is honored) + :param prefix: indicates to use the "prefix" scheme and provides the + base directory for the same + """ + if user and prefix: + raise InvalidSchemeCombination("--user", "--prefix") + if home and prefix: + raise InvalidSchemeCombination("--home", "--prefix") + + if home is not None: + scheme_name = _infer_home() + elif user: + scheme_name = _infer_user() + else: + scheme_name = _infer_prefix() + + # Special case: When installing into a custom prefix, use posix_prefix + # instead of osx_framework_library. See _should_use_osx_framework_prefix() + # docstring for details. + if prefix is not None and scheme_name == "osx_framework_library": + scheme_name = "posix_prefix" + + if home is not None: + variables = {k: home for k in _HOME_KEYS} + elif prefix is not None: + variables = {k: prefix for k in _HOME_KEYS} + else: + variables = {} + + paths = sysconfig.get_paths(scheme=scheme_name, vars=variables) + + # Logic here is very arbitrary, we're doing it for compatibility, don't ask. + # 1. Pip historically uses a special header path in virtual environments. + # 2. If the distribution name is not known, distutils uses 'UNKNOWN'. We + # only do the same when not running in a virtual environment because + # pip's historical header path logic (see point 1) did not do this. + if running_under_virtualenv(): + if user: + base = variables.get("userbase", sys.prefix) + else: + base = variables.get("base", sys.prefix) + python_xy = f"python{get_major_minor_version()}" + paths["include"] = os.path.join(base, "include", "site", python_xy) + elif not dist_name: + dist_name = "UNKNOWN" + + scheme = Scheme( + platlib=paths["platlib"], + purelib=paths["purelib"], + headers=os.path.join(paths["include"], dist_name), + scripts=paths["scripts"], + data=paths["data"], + ) + if root is not None: + for key in SCHEME_KEYS: + value = change_root(root, getattr(scheme, key)) + setattr(scheme, key, value) + return scheme + + +def get_bin_prefix() -> str: + # Forcing to use /usr/local/bin for standard macOS framework installs. + if sys.platform[:6] == "darwin" and sys.prefix[:16] == "/System/Library/": + return "/usr/local/bin" + return sysconfig.get_paths()["scripts"] + + +def get_purelib() -> str: + return sysconfig.get_paths()["purelib"] + + +def get_platlib() -> str: + return sysconfig.get_paths()["platlib"] diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/locations/base.py b/.venv/lib/python3.12/site-packages/pip/_internal/locations/base.py new file mode 100644 index 00000000..3f9f896e --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_internal/locations/base.py @@ -0,0 +1,81 @@ +import functools +import os +import site +import sys +import sysconfig +import typing + +from pip._internal.exceptions import InstallationError +from pip._internal.utils import appdirs +from pip._internal.utils.virtualenv import running_under_virtualenv + +# Application Directories +USER_CACHE_DIR = appdirs.user_cache_dir("pip") + +# FIXME doesn't account for venv linked to global site-packages +site_packages: str = sysconfig.get_path("purelib") + + +def get_major_minor_version() -> str: + """ + Return the major-minor version of the current Python as a string, e.g. + "3.7" or "3.10". + """ + return "{}.{}".format(*sys.version_info) + + +def change_root(new_root: str, pathname: str) -> str: + """Return 'pathname' with 'new_root' prepended. + + If 'pathname' is relative, this is equivalent to os.path.join(new_root, pathname). + Otherwise, it requires making 'pathname' relative and then joining the + two, which is tricky on DOS/Windows and Mac OS. + + This is borrowed from Python's standard library's distutils module. + """ + if os.name == "posix": + if not os.path.isabs(pathname): + return os.path.join(new_root, pathname) + else: + return os.path.join(new_root, pathname[1:]) + + elif os.name == "nt": + (drive, path) = os.path.splitdrive(pathname) + if path[0] == "\\": + path = path[1:] + return os.path.join(new_root, path) + + else: + raise InstallationError( + f"Unknown platform: {os.name}\n" + "Can not change root path prefix on unknown platform." + ) + + +def get_src_prefix() -> str: + if running_under_virtualenv(): + src_prefix = os.path.join(sys.prefix, "src") + else: + # FIXME: keep src in cwd for now (it is not a temporary folder) + try: + src_prefix = os.path.join(os.getcwd(), "src") + except OSError: + # In case the current working directory has been renamed or deleted + sys.exit("The folder you are executing pip from can no longer be found.") + + # under macOS + virtualenv sys.prefix is not properly resolved + # it is something like /path/to/python/bin/.. + return os.path.abspath(src_prefix) + + +try: + # Use getusersitepackages if this is present, as it ensures that the + # value is initialised properly. + user_site: typing.Optional[str] = site.getusersitepackages() +except AttributeError: + user_site = site.USER_SITE + + +@functools.lru_cache(maxsize=None) +def is_osx_framework() -> bool: + return bool(sysconfig.get_config_var("PYTHONFRAMEWORK")) diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/main.py b/.venv/lib/python3.12/site-packages/pip/_internal/main.py new file mode 100644 index 00000000..33c6d24c --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_internal/main.py @@ -0,0 +1,12 @@ +from typing import List, Optional + + +def main(args: Optional[List[str]] = None) -> int: + """This is preserved for old console scripts that may still be referencing + it. + + For additional details, see https://github.com/pypa/pip/issues/7498. + """ + from pip._internal.utils.entrypoints import _wrapper + + return _wrapper(args) diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/metadata/__init__.py b/.venv/lib/python3.12/site-packages/pip/_internal/metadata/__init__.py new file mode 100644 index 00000000..aa232b6c --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_internal/metadata/__init__.py @@ -0,0 +1,128 @@ +import contextlib +import functools +import os +import sys +from typing import TYPE_CHECKING, List, Optional, Type, cast + +from pip._internal.utils.misc import strtobool + +from .base import BaseDistribution, BaseEnvironment, FilesystemWheel, MemoryWheel, Wheel + +if TYPE_CHECKING: + from typing import Literal, Protocol +else: + Protocol = object + +__all__ = [ + "BaseDistribution", + "BaseEnvironment", + "FilesystemWheel", + "MemoryWheel", + "Wheel", + "get_default_environment", + "get_environment", + "get_wheel_distribution", + "select_backend", +] + + +def _should_use_importlib_metadata() -> bool: + """Whether to use the ``importlib.metadata`` or ``pkg_resources`` backend. + + By default, pip uses ``importlib.metadata`` on Python 3.11+, and + ``pkg_resourcess`` otherwise. This can be overridden by a couple of ways: + + * If environment variable ``_PIP_USE_IMPORTLIB_METADATA`` is set, it + dictates whether ``importlib.metadata`` is used, regardless of Python + version. + * On Python 3.11+, Python distributors can patch ``importlib.metadata`` + to add a global constant ``_PIP_USE_IMPORTLIB_METADATA = False``. This + makes pip use ``pkg_resources`` (unless the user set the aforementioned + environment variable to *True*). + """ + with contextlib.suppress(KeyError, ValueError): + return bool(strtobool(os.environ["_PIP_USE_IMPORTLIB_METADATA"])) + if sys.version_info < (3, 11): + return False + import importlib.metadata + + return bool(getattr(importlib.metadata, "_PIP_USE_IMPORTLIB_METADATA", True)) + + +class Backend(Protocol): + NAME: 'Literal["importlib", "pkg_resources"]' + Distribution: Type[BaseDistribution] + Environment: Type[BaseEnvironment] + + +@functools.lru_cache(maxsize=None) +def select_backend() -> Backend: + if _should_use_importlib_metadata(): + from . import importlib + + return cast(Backend, importlib) + from . import pkg_resources + + return cast(Backend, pkg_resources) + + +def get_default_environment() -> BaseEnvironment: + """Get the default representation for the current environment. + + This returns an Environment instance from the chosen backend. The default + Environment instance should be built from ``sys.path`` and may use caching + to share instance state accorss calls. + """ + return select_backend().Environment.default() + + +def get_environment(paths: Optional[List[str]]) -> BaseEnvironment: + """Get a representation of the environment specified by ``paths``. + + This returns an Environment instance from the chosen backend based on the + given import paths. The backend must build a fresh instance representing + the state of installed distributions when this function is called. + """ + return select_backend().Environment.from_paths(paths) + + +def get_directory_distribution(directory: str) -> BaseDistribution: + """Get the distribution metadata representation in the specified directory. + + This returns a Distribution instance from the chosen backend based on + the given on-disk ``.dist-info`` directory. + """ + return select_backend().Distribution.from_directory(directory) + + +def get_wheel_distribution(wheel: Wheel, canonical_name: str) -> BaseDistribution: + """Get the representation of the specified wheel's distribution metadata. + + This returns a Distribution instance from the chosen backend based on + the given wheel's ``.dist-info`` directory. + + :param canonical_name: Normalized project name of the given wheel. + """ + return select_backend().Distribution.from_wheel(wheel, canonical_name) + + +def get_metadata_distribution( + metadata_contents: bytes, + filename: str, + canonical_name: str, +) -> BaseDistribution: + """Get the dist representation of the specified METADATA file contents. + + This returns a Distribution instance from the chosen backend sourced from the data + in `metadata_contents`. + + :param metadata_contents: Contents of a METADATA file within a dist, or one served + via PEP 658. + :param filename: Filename for the dist this metadata represents. + :param canonical_name: Normalized project name of the given dist. + """ + return select_backend().Distribution.from_metadata_file_contents( + metadata_contents, + filename, + canonical_name, + ) diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/metadata/__pycache__/__init__.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_internal/metadata/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..183716afb2a8bff9bcd8ac7d680cb7056be62aa9 GIT binary patch literal 5958 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 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/metadata/__pycache__/_json.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_internal/metadata/__pycache__/_json.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..0a9679c35523557cd207ad659a95ddd8d2185976 GIT binary patch literal 2951 zcmZt|TTC3+_0Dq_W|!q#g$6(gZ;Nq=>)7Ibx3R!yQ9A~C8aCGT*eujno02%!1JmCxPtgOsZB4uWBI>Zsks9(`8XuPifV&Ll1g4SGFX`cf&#%z8;cO2#36q!Tk~9ED36VNLR04xS|8ruAG z#egFy{K{(xk)$FxfjlB{C$JpxPc(K#@Xs8vq@7ygh|6saIUn*<6fEnkTh{vZnte&I zCE&1*Fb*p2lz5u@9lo~4ekdJuf<$nF4y%atgu~8&Zy0!r;_4A77Fat6eJGEK9hIZ? z))_VDX%R;u#Y~{SJ@d|VJY(uv*;eN@995v9LO+8RH{>!)q#M+KC20g8P}BB#FKO(0 zAi)UKNE*Ke$+bmPWNdoITMlYC^2SI#N!TLia0=rEqO%D;W|=1D3k&MHeiIBJdV=}d zlwloi;fUm&Q6AZc$zUIb)?s{Y{yuX=u3_a2>O*$WH{}!}bo_Be?mcuTxr%PWzRJY- z>9tVKSTUgPNblX4O&+%cd=Y(1Ihhrd+W$>D+dhTXf{5 zyup_y#3ZgLXS3K)T+Xryq3(0DHoVr+u5@fu{-Eor6s;WV-nh8iH~jmy za^L74Y6_2RMK*=ao0X29?H_&G5wEi1vB77@Pdo_S50$PzJsz+0o!JgngQ%_hUU)0K zohvOpIhpvZb-3CAXPK)ocEU4=n z_-U{z0CZr{`ua^ra)f<6A|<~qJU-9B+YPSN$LRqx=t?ky{6QRRCiG9I=I0ndZe%Kb zHJM6YP0n3>D}6aNYU4p-0tR9y}%ahbd;N~m+UrF&Z_ zx18MIK9^db4JLj!`SIi@LV57~zd3fWrE>bUtw@Rato79@MK{u4AlSYLqGP8@6TiOn z;iZS^kEY9=qZ{c8gkt&ANVFzx&|&{p&w} z?@4cRGriNBeAfHQgUS1oKbzW2SGsyO#0~4mQne3ktbPMU+V7gT%yP@i>z6(cv{a&} zfnD4Qo_Hp;txtWq*AGT~xz~rOnGgSKzY?O^x z4Q{x`)N6l(gw7sUv|Q5WlEs+au6KXO(mz{ z^W*}cw9{CV@TzhQ!~91?%=ivE_jmNlKTxcUVtaf~2fH4rjx)@_=1djAwmq{?w`y>J aY2UnFMX;4ROPPnGrKJx~KBuU6+5Z9LeC$;K literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/metadata/__pycache__/base.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_internal/metadata/__pycache__/base.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..c7ce9fb370256df08b23382f1e8a68c38deb9011 GIT binary patch literal 35788 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 ZPVwNh{7}H_p|?QXKfUP(0$vR7{6F=Gd-MPR literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/metadata/__pycache__/pkg_resources.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_internal/metadata/__pycache__/pkg_resources.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..5222248d1d2a719e140e8866461cebec11219896 GIT binary patch literal 15866 zcmcJ0X>c1?dSEwz1{wze65s*e;3W}~NQx9~UA8Prlq^{m$1^&{gBclu*eww>4$f;( zG7-X7X}k$N@sy>>L8_8jQ!}$GXq`ioWH;JP?XDberCgO%0t8BdZga}c?&O&KNWr3# znbG`6zVG#c1_(RnJ{DiU{@&5=`0n@N59{h245Z_Q{LHSc4DcT31ZpInH8rzvKQ+d{TDAL8TokUj1QIpWTcGwuqx;&q`q7RNHj z+;LCHL(7&}eY_#mK+9ar8~25L@y1XieYeJ%;?1EJTDHaf@zzjlye-rgZx6Lo7$571 zcZND?*&gePcZa&;flz?HJ7PWY-cWD6FVqL`PQexHj}L?f;#)#n;#)&onM;gN_iZ+`-NcCI*%!4DoJF^^HC`!+fGL2=Awy9vSTU|7lqUFbJ*x}bJ#5s3$k+E+{>53M3j>AWLlH} z;QWI4)%hq9<6X*Y8qcQP^cs@a^ zTz@DciIcE3Bzj?zw{B^5K6jU514W<*LsA=4SaGSMQiPXUycOnS+T zr3FinlO2XBTksrY4z_+C9+yaRer^hy@L_sD;jruohvP|MJ|;rh6%K!OJ`%$&@Meac zkUimWB#}s_=$1?2@Ev9Yr}+4{N8*Xp$n?k=306IFK_m%b_)3yU(=#KJ$?19A9RS10 zEsTuq9D8D9?1`OwN1wPb6pxUXqbWen3E^@iF)a!w0U#u=B#tC5MHAwPULT$#$ysPO zGJIJ~Tpo!2Z1^tn7cBx0?{@W_gLgZ;JJffl$YF1QIsoc2^m4*` zo%-(9Te$%05$a%UfT`c}0IYt23)ai^#}g;Tc#TMj>s)n%_;?GrPt+i*#@}_&OePGG*XS`p*pFXIXRv9@I4b$&}7iIdhw4yS* z%$#D#IKYA|c>*4HOk_7a2#zP=c-kagGZ9H&Ub=JBM2*#B*jb&d$9Fxo{OXNYbDn`5 zKR_p2F;C<}bek1Cw=;`Ot$8l8h^@2OvMRl!zMo?Hn3P4U>}N=S#+0&Y?*bg(EU&$l zpT7c1z@iCq^CAnmYJ!F?i6LKZZaw_aw&N*r-r5>ubG z{l;oMN9oIuU1drptKGfkYgs;U*UlfWdwL!+7Q6cg-rhCu za5hyOc_u&dOm6t#ebfEX`+fIMzu*6U^ZWC;`ZF75lh0jZOm*&`mN@9~SZajvuXS`Y zZ`&ta=4|(b&HS#7gJQ+uqGm=9_c7W{s!{b(r9QG)+zcC{R{A5bdcUteMI% z*|`uEV*<)-Q6dMS57`G<1@3x{yQ8#B_ie)9&5aJ=KuAAVnRQP`(KDF$3}zdP!F~DQ zzI)?^;K71tBF9f`Mr!DytQ+xhnOR`(n5K@B?eMaBa&8TU!cj?xl63c`iB&e3fKepe zDBuL1#?9ZxJ*In(5@Z>)MRmVE<@5FW=rK@4Z~{G_J^{7KBu)WI3#ZVqWT%smozgUk z&ZQKVYDdN=fxHwem@4$C*cgTP(5Y$Ye;k?+#Ft6}aFF>#SouP_ebWrfmCs^Nb$fUh zomsGfY{5anZeYkDWU?(B7LwE9Fu_HTAcD9H3n@ULJy^C}NG4-sKh_<@3{R09#_T9& zxUu9IX3t|rkCh5>zmGoN z@87_;63;>tUx|T7ws8X=C992dBM2T@-v&NPUY0w=u1eVK5SxAFp7~A&+a6*|R+ej8 z-GvoR*>Qw5A;`OW3PIlN>AQV*zJy>eg6meN5nOjydE65o;TzpDx{7I-yPoW7X=4o# z%&3om5mJM%3MRn}x`hQa1kh9jPPBp6f;tK4C>qBO*`dZJIs_hS?P?1i^%1>=6IwV$ zm*7%stwNolwoY`zs2}kJ?aGS8u5E(mLNolh9y*Hd1I4K)nWN zGljMQ)MtSD!F+0kdHGMHyI2>_&L7U`@i z%_0U?CHQ_T^ywG6g*I_O`4Sy*i>l$Zzs`lWQi!%w9ngMI=%l-f^X!86;DR|AAl)#y zYymSTMNo`SRq%6NC-Op7wNA94DH1Xl#{QZr@p))#WXF`o(oIIwL|1c=pd>^!;4Dq8 zOO|gq6y9P7#ssQ4D3}%V(dCN^W`^@Y4?uNF>9S@P3Ark1QU#QSayz8(sx+$+fC0W} z(t3Xd`ew`-OUkKL&$_fy`MGF@9_m*z+@fjLQ?AoWf-djKt`sUqG|kp)rSdal{U>JZ zE4S53ixzFh0yQ2ow!{}dWgcd&rDS@JxyBmif}+1F{d>%%)(#7s=4)aWt+0=_Mef%) z%^Q*70m>}$+Kf+uaXpo`4}&c~6a~|m;GU-)!-$m>@R%J!V_r4*sKlbmdC&>A0Gi`- zvMDKnJu1%07IXy29GLyll%jFC(9}Mu8uT(RCIsn9G&Q4;4o@43ucYKg#PH+rc_XF= z?Xr0~CXq8RBbmnu0j&_3zW{bWE!AnT@~qT$&`kz9fF3AY2_-8;O0Xl8q*xPf>a)=4 zCEafP{BULE=b*dvXOLZGKK6AKeSLXf-**q)K6>kD!MA;he`IC)25xV?we|MUt)aVo zp?7bd?_T1s53TzGMc+`~HZ#}|APOMJ=7xEhPjj=ZyD<;xG8!S$B@V#{d0WpwG- zy1(sh+f7^1KbZFqW;+Z1-S^nMf8QI&KlZg3eV~-~uYTo$Z!G5;%lXD=zrFdEy`S2z z=s%eEAH44?_>bI=&e4 zoB>D8Q!;<@$mxm6iPIBz%rdX}nG`z_rv^F^vH%jn3>Ax@m0ZAb6th{(u$f$^uMtgX z1vQX|8S$c>9=+ZWw;-(TNP2KHlGJXAI)U^IWMEs=Gj%OFf3RdWwK|sS09oogi=NTE zXLPNpbG>O`HGcQSLeqh@)`3ShOTA;s@`;0~_f?z?M~!f5Y*wg=h}QHJb^zrrGhh_f z$E8f2J|^F#4^@J>n!3yRa&%wfyjPK z=lLW6?P^E`ffaNvFPKpTm!$&C&8kU&UogG7$HHW68LNPPW=4avOsYlu^sHYim7lN| zD1NI_s$B!TW~<#o8-LMc;GA}fmG&}LPMcWRhm7?KnA4+-#9o2-FEK3qz4^Ri27{Tc z%eGm!_SNzeOz(~ipF+EqrrNVHPzis{1g19sDu0Dd>9PezX@XIj^ij}Aw=D9%!hB1Y zOw>fD{d5!EI`x=0+9q5<%ff=>tt7z7t(Ck;Sz7NMR zr7y}n3MR_&*)aJERwXe*(o*Ob2T|x3bA`7%C=Jskq+2$VEUidEKdBk`6;P- zXZalXltxgmgx2%$UzMseI#9 z$qaq3*OeG}{D^}uJ!&@agtq0EZoH)Mg)_hV()V5}G)=CxcGlnxKY7@x4M6An(?@Qm zzNP5t$)mr5wLi7)?OK_C`_-GTW>W?4_`RN-YyVHzJ>6J$j9vHkt_rJXbK4K04es9c$edvT$IsTTsXUlh`?D%&U3ZBs%KU({+`k>RsS;$U+!1|Z0uI!sQ z0{ZID!1{mLv~2oWj)QR)nBB~q+^?JAn#43E+Z0c&1Z$&)3Z=pK{HST`2hW7Wut@%I{UFvOCD$Vz*kpZ4I&& z2d?wG{{aJ4P^Es18MyMRB^_%S7GrYW#~1$jjADOYnc<}UK#VE`KrrcOfXQV zjshc^H6_AIJ=)5~BbLbxsH9FMQ%95Y2|>AaItXxrPNkqlxpkr{C}M_e)2u?=l(Oz= zr_l^4@NA@;D_E!w{~c&A;c?@22{po(EETA^ntI^bvF`0#oh*2RIahGa+q}H(#0UtHdMx|fY8`Evp1uOK1pY$~{Af;XY_M68uU94Qi(q?x zRxMlhJp3}d%!2jyc?_XWF{h#!tU`LB2RO#iT?QTLwJ{DN+puR8E>kEvIhAqdFrI}h;+ODq^!f;q z3zA~nG*B8hG?vm`6?nF({(s^)UxQ4c{I1@&XK&6HyPnKbQEI{1(= z+t0FZOf4O`zI$z8$L({s&V48R5biS1vibU+>z3;;ulMw?e!0*yTI|`M@7aIvaG~em z4L4LoR+`qE1FORA*;}*UiQOCc-`oHD_TL+NfBr%9nL_=UPdFUn6Elwf6A5*lYlj*S zHM13p6ygk=Ewk}kfTb0Tr6vO?Utrf%o>XEdW`WJH36o&Tu=K*bh8JSdz_?Oqxzbe2 zpD?R?4zyMbqhVRbvS^v@EW@=@nJKXhwCL90<)=0RRrJu7r3nB0>NQQiBr91(7ZoS|$a~8$%-ogXi_}aNN^mUJO8ozrNcm0~>>3b1<9|Ip@TVP{dK_Z7r@%Wdv?L z&LJF)&&8^=)ym5EV03!NdX)j=%+-8dSf0Hx``w{p?_|Dr@`3ZnTE~_*PJZ06W$9$e z#M|4@R)b)a)p((091OO4rln&!b|Y479?CZl6`DtuoNK(V$ouoWf5rcR?_Kk>6+MBx zCs3fK^p79;n0oL*SYag4xiVkRtoLe$V(-&8JU{5&vYNV`xs@sOK5^Z%?()7h^~O}L zef)0nf$Qj6OY7HWx)>j0V5=~c&iFx6`X%K%-WRIf@kc@3JBkih7#-RCoT4&1<)rYaaAes&l9Zybe8 z6W8a!JDOq3%c-Rkl^K~T$l5g_rdU5F&r`mz0~OJYKN zWsV$3k8YMMf;a~^IbvcOB-ij$Xd}m@1H*ck4`JF=-KN6kPrFXs`|7V|iru^O-Ef^z z?B18}I`I<;7kRC_2O@=JJGko7VnPyAvWv!~NlJXILWsWw4Z*dcM7N@rOr7ItFhlK-+{X-8OIJ=6O?pjBvl9T99s)|g4smiU*S2!5 z*tt93xf_FG+U`waoJ<>d#;pw{Qv=tE@iy?tjXd)ZpBrYaqO^sU++6F&?ST>pPw3=p zF4?feGc9c;JC+=bqwS#+N@`Dp1!zw%*Sa!aV&IWIOdq-N$%pu=wuDk?kg>XPl6@MZmS@X?I?cO%{zU3hV7}4*- za8N3F)t>uS-PmiN{>^>rH(72p*SZ7iM)kT;j4m2mIfffKro=IgA!uLr#kYnUWzHk2qgD)jlBiFae-LAV;R}4In4?MBK0N|4y z7H)giad+1p58O3y+wc3|-=3d1i(R&tTrAhKI+K-d#qm3EwZU?eYOvHKn@wSi(vC!3s>uz2G0g7{<+(m0LbK zn{=~rDfIS_!v7ZgAUoDqvpw(Io;?CS>4Ilhj^DNU5RjAh!T$#O;xq+p7RuEL{2pM3 zfm(*gMpJoJstVRnt%AJ|?G(m(8cG$b@r9{aH=0ILy4$#{8Vw%eDE*KrrhTJ-`PhwP zz+~(LOOtr}2lsyc1y}zk;BX&M)viD^esZ@GYi4Cur=TUO@DYa3bq*jromtm#v`fe8T{P>8jI)8qk(k( zJQ{5HE|!0tqyGE>Z6f*;2uX~P=@~FR5d#9-;9hH6#lUdGeHm;t{MA*B(RRRZBXpya zPJw>!f;bbo9EGs;UU?1=Cn}kB91(O`4Xf|*``_=im6m_Q=++r z)k{@MLP`Jv?gN~Z;+?Cn#t8T&gaKcxYk?9N={yWTucNiddC*BAKFjF=C;ifiQX^;g z!!gt~ymjo2V?|d--USyl4_v+UXbfF){P2$-ae5#DasmGbz81V}^FO9PGg)q*Ff;F( zeG{$bcl|8nL2pgn_K#sgRFsi-vDAjyA7VxoR@`Mp&;1iDQALz$ym@@3o4JOiDs?h| zFwFiE{-yr}nW9cMuRL9B-<5Bt(b&!REU1k%qtXQGB+Cu2cu;2=Mx99k=vCvOq*=13 z?%4C)W2ixm-+c|6j_XawOI8y%u=-+d_&|Q(84MgBDDe)iG3zTa@VM*G?RzdidSU}# zO8!P}1jE1Kk$o}u@`4!m7mqYSi>rw(jW6t zU0!al-H_hpDy9VGM4h#pX*Y&$oXT4`6+dmL{Yq@O`~xy2hzGAkXb_LwQQ44w5F<+I zuS1pCgsQQWCh;iTeW9X38u5FrwT4l`-q0JV1Ql5@{F6{*qqYvkOllob!w79G{LKO~ z+OTW~VtbzY=oBQsjl;m#u|xh5bGFEw%`<2Jf*JTev+pD3`1hHEe?=kRXC^;lCO%?L{K#TsO+R8F zd+24HV^?h-+uN2}iuSg=y=`Sr!QOw>`mwF~s^yW@%zCc3J!0VTBUgZ}`-Fk)(NXqA c6FbS~e0`4?T6%QZvXdRTKJs@AJSd9(BRhQBX8-^I literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/metadata/_json.py b/.venv/lib/python3.12/site-packages/pip/_internal/metadata/_json.py new file mode 100644 index 00000000..27362fc7 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_internal/metadata/_json.py @@ -0,0 +1,84 @@ +# Extracted from https://github.com/pfmoore/pkg_metadata + +from email.header import Header, decode_header, make_header +from email.message import Message +from typing import Any, Dict, List, Union + +METADATA_FIELDS = [ + # Name, Multiple-Use + ("Metadata-Version", False), + ("Name", False), + ("Version", False), + ("Dynamic", True), + ("Platform", True), + ("Supported-Platform", True), + ("Summary", False), + ("Description", False), + ("Description-Content-Type", False), + ("Keywords", False), + ("Home-page", False), + ("Download-URL", False), + ("Author", False), + ("Author-email", False), + ("Maintainer", False), + ("Maintainer-email", False), + ("License", False), + ("Classifier", True), + ("Requires-Dist", True), + ("Requires-Python", False), + ("Requires-External", True), + ("Project-URL", True), + ("Provides-Extra", True), + ("Provides-Dist", True), + ("Obsoletes-Dist", True), +] + + +def json_name(field: str) -> str: + return field.lower().replace("-", "_") + + +def msg_to_json(msg: Message) -> Dict[str, Any]: + """Convert a Message object into a JSON-compatible dictionary.""" + + def sanitise_header(h: Union[Header, str]) -> str: + if isinstance(h, Header): + chunks = [] + for bytes, encoding in decode_header(h): + if encoding == "unknown-8bit": + try: + # See if UTF-8 works + bytes.decode("utf-8") + encoding = "utf-8" + except UnicodeDecodeError: + # If not, latin1 at least won't fail + encoding = "latin1" + chunks.append((bytes, encoding)) + return str(make_header(chunks)) + return str(h) + + result = {} + for field, multi in METADATA_FIELDS: + if field not in msg: + continue + key = json_name(field) + if multi: + value: Union[str, List[str]] = [ + sanitise_header(v) for v in msg.get_all(field) # type: ignore + ] + else: + value = sanitise_header(msg.get(field)) # type: ignore + if key == "keywords": + # Accept both comma-separated and space-separated + # forms, for better compatibility with old data. + if "," in value: + value = [v.strip() for v in value.split(",")] + else: + value = value.split() + result[key] = value + + payload = msg.get_payload() + if payload: + result["description"] = payload + + return result diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/metadata/base.py b/.venv/lib/python3.12/site-packages/pip/_internal/metadata/base.py new file mode 100644 index 00000000..92491244 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_internal/metadata/base.py @@ -0,0 +1,702 @@ +import csv +import email.message +import functools +import json +import logging +import pathlib +import re +import zipfile +from typing import ( + IO, + TYPE_CHECKING, + Any, + Collection, + Container, + Dict, + Iterable, + Iterator, + List, + NamedTuple, + Optional, + Tuple, + Union, +) + +from pip._vendor.packaging.requirements import Requirement +from pip._vendor.packaging.specifiers import InvalidSpecifier, SpecifierSet +from pip._vendor.packaging.utils import NormalizedName, canonicalize_name +from pip._vendor.packaging.version import LegacyVersion, Version + +from pip._internal.exceptions import NoneMetadataError +from pip._internal.locations import site_packages, user_site +from pip._internal.models.direct_url import ( + DIRECT_URL_METADATA_NAME, + DirectUrl, + DirectUrlValidationError, +) +from pip._internal.utils.compat import stdlib_pkgs # TODO: Move definition here. +from pip._internal.utils.egg_link import egg_link_path_from_sys_path +from pip._internal.utils.misc import is_local, normalize_path +from pip._internal.utils.urls import url_to_path + +from ._json import msg_to_json + +if TYPE_CHECKING: + from typing import Protocol +else: + Protocol = object + +DistributionVersion = Union[LegacyVersion, Version] + +InfoPath = Union[str, pathlib.PurePath] + +logger = logging.getLogger(__name__) + + +class BaseEntryPoint(Protocol): + @property + def name(self) -> str: + raise NotImplementedError() + + @property + def value(self) -> str: + raise NotImplementedError() + + @property + def group(self) -> str: + raise NotImplementedError() + + +def _convert_installed_files_path( + entry: Tuple[str, ...], + info: Tuple[str, ...], +) -> str: + """Convert a legacy installed-files.txt path into modern RECORD path. + + The legacy format stores paths relative to the info directory, while the + modern format stores paths relative to the package root, e.g. the + site-packages directory. + + :param entry: Path parts of the installed-files.txt entry. + :param info: Path parts of the egg-info directory relative to package root. + :returns: The converted entry. + + For best compatibility with symlinks, this does not use ``abspath()`` or + ``Path.resolve()``, but tries to work with path parts: + + 1. While ``entry`` starts with ``..``, remove the equal amounts of parts + from ``info``; if ``info`` is empty, start appending ``..`` instead. + 2. Join the two directly. + """ + while entry and entry[0] == "..": + if not info or info[-1] == "..": + info += ("..",) + else: + info = info[:-1] + entry = entry[1:] + return str(pathlib.Path(*info, *entry)) + + +class RequiresEntry(NamedTuple): + requirement: str + extra: str + marker: str + + +class BaseDistribution(Protocol): + @classmethod + def from_directory(cls, directory: str) -> "BaseDistribution": + """Load the distribution from a metadata directory. + + :param directory: Path to a metadata directory, e.g. ``.dist-info``. + """ + raise NotImplementedError() + + @classmethod + def from_metadata_file_contents( + cls, + metadata_contents: bytes, + filename: str, + project_name: str, + ) -> "BaseDistribution": + """Load the distribution from the contents of a METADATA file. + + This is used to implement PEP 658 by generating a "shallow" dist object that can + be used for resolution without downloading or building the actual dist yet. + + :param metadata_contents: The contents of a METADATA file. + :param filename: File name for the dist with this metadata. + :param project_name: Name of the project this dist represents. + """ + raise NotImplementedError() + + @classmethod + def from_wheel(cls, wheel: "Wheel", name: str) -> "BaseDistribution": + """Load the distribution from a given wheel. + + :param wheel: A concrete wheel definition. + :param name: File name of the wheel. + + :raises InvalidWheel: Whenever loading of the wheel causes a + :py:exc:`zipfile.BadZipFile` exception to be thrown. + :raises UnsupportedWheel: If the wheel is a valid zip, but malformed + internally. + """ + raise NotImplementedError() + + def __repr__(self) -> str: + return f"{self.raw_name} {self.version} ({self.location})" + + def __str__(self) -> str: + return f"{self.raw_name} {self.version}" + + @property + def location(self) -> Optional[str]: + """Where the distribution is loaded from. + + A string value is not necessarily a filesystem path, since distributions + can be loaded from other sources, e.g. arbitrary zip archives. ``None`` + means the distribution is created in-memory. + + Do not canonicalize this value with e.g. ``pathlib.Path.resolve()``. If + this is a symbolic link, we want to preserve the relative path between + it and files in the distribution. + """ + raise NotImplementedError() + + @property + def editable_project_location(self) -> Optional[str]: + """The project location for editable distributions. + + This is the directory where pyproject.toml or setup.py is located. + None if the distribution is not installed in editable mode. + """ + # TODO: this property is relatively costly to compute, memoize it ? + direct_url = self.direct_url + if direct_url: + if direct_url.is_local_editable(): + return url_to_path(direct_url.url) + else: + # Search for an .egg-link file by walking sys.path, as it was + # done before by dist_is_editable(). + egg_link_path = egg_link_path_from_sys_path(self.raw_name) + if egg_link_path: + # TODO: get project location from second line of egg_link file + # (https://github.com/pypa/pip/issues/10243) + return self.location + return None + + @property + def installed_location(self) -> Optional[str]: + """The distribution's "installed" location. + + This should generally be a ``site-packages`` directory. This is + usually ``dist.location``, except for legacy develop-installed packages, + where ``dist.location`` is the source code location, and this is where + the ``.egg-link`` file is. + + The returned location is normalized (in particular, with symlinks removed). + """ + raise NotImplementedError() + + @property + def info_location(self) -> Optional[str]: + """Location of the .[egg|dist]-info directory or file. + + Similarly to ``location``, a string value is not necessarily a + filesystem path. ``None`` means the distribution is created in-memory. + + For a modern .dist-info installation on disk, this should be something + like ``{location}/{raw_name}-{version}.dist-info``. + + Do not canonicalize this value with e.g. ``pathlib.Path.resolve()``. If + this is a symbolic link, we want to preserve the relative path between + it and other files in the distribution. + """ + raise NotImplementedError() + + @property + def installed_by_distutils(self) -> bool: + """Whether this distribution is installed with legacy distutils format. + + A distribution installed with "raw" distutils not patched by setuptools + uses one single file at ``info_location`` to store metadata. We need to + treat this specially on uninstallation. + """ + info_location = self.info_location + if not info_location: + return False + return pathlib.Path(info_location).is_file() + + @property + def installed_as_egg(self) -> bool: + """Whether this distribution is installed as an egg. + + This usually indicates the distribution was installed by (older versions + of) easy_install. + """ + location = self.location + if not location: + return False + return location.endswith(".egg") + + @property + def installed_with_setuptools_egg_info(self) -> bool: + """Whether this distribution is installed with the ``.egg-info`` format. + + This usually indicates the distribution was installed with setuptools + with an old pip version or with ``single-version-externally-managed``. + + Note that this ensure the metadata store is a directory. distutils can + also installs an ``.egg-info``, but as a file, not a directory. This + property is *False* for that case. Also see ``installed_by_distutils``. + """ + info_location = self.info_location + if not info_location: + return False + if not info_location.endswith(".egg-info"): + return False + return pathlib.Path(info_location).is_dir() + + @property + def installed_with_dist_info(self) -> bool: + """Whether this distribution is installed with the "modern format". + + This indicates a "modern" installation, e.g. storing metadata in the + ``.dist-info`` directory. This applies to installations made by + setuptools (but through pip, not directly), or anything using the + standardized build backend interface (PEP 517). + """ + info_location = self.info_location + if not info_location: + return False + if not info_location.endswith(".dist-info"): + return False + return pathlib.Path(info_location).is_dir() + + @property + def canonical_name(self) -> NormalizedName: + raise NotImplementedError() + + @property + def version(self) -> DistributionVersion: + raise NotImplementedError() + + @property + def setuptools_filename(self) -> str: + """Convert a project name to its setuptools-compatible filename. + + This is a copy of ``pkg_resources.to_filename()`` for compatibility. + """ + return self.raw_name.replace("-", "_") + + @property + def direct_url(self) -> Optional[DirectUrl]: + """Obtain a DirectUrl from this distribution. + + Returns None if the distribution has no `direct_url.json` metadata, + or if `direct_url.json` is invalid. + """ + try: + content = self.read_text(DIRECT_URL_METADATA_NAME) + except FileNotFoundError: + return None + try: + return DirectUrl.from_json(content) + except ( + UnicodeDecodeError, + json.JSONDecodeError, + DirectUrlValidationError, + ) as e: + logger.warning( + "Error parsing %s for %s: %s", + DIRECT_URL_METADATA_NAME, + self.canonical_name, + e, + ) + return None + + @property + def installer(self) -> str: + try: + installer_text = self.read_text("INSTALLER") + except (OSError, ValueError, NoneMetadataError): + return "" # Fail silently if the installer file cannot be read. + for line in installer_text.splitlines(): + cleaned_line = line.strip() + if cleaned_line: + return cleaned_line + return "" + + @property + def requested(self) -> bool: + return self.is_file("REQUESTED") + + @property + def editable(self) -> bool: + return bool(self.editable_project_location) + + @property + def local(self) -> bool: + """If distribution is installed in the current virtual environment. + + Always True if we're not in a virtualenv. + """ + if self.installed_location is None: + return False + return is_local(self.installed_location) + + @property + def in_usersite(self) -> bool: + if self.installed_location is None or user_site is None: + return False + return self.installed_location.startswith(normalize_path(user_site)) + + @property + def in_site_packages(self) -> bool: + if self.installed_location is None or site_packages is None: + return False + return self.installed_location.startswith(normalize_path(site_packages)) + + def is_file(self, path: InfoPath) -> bool: + """Check whether an entry in the info directory is a file.""" + raise NotImplementedError() + + def iter_distutils_script_names(self) -> Iterator[str]: + """Find distutils 'scripts' entries metadata. + + If 'scripts' is supplied in ``setup.py``, distutils records those in the + installed distribution's ``scripts`` directory, a file for each script. + """ + raise NotImplementedError() + + def read_text(self, path: InfoPath) -> str: + """Read a file in the info directory. + + :raise FileNotFoundError: If ``path`` does not exist in the directory. + :raise NoneMetadataError: If ``path`` exists in the info directory, but + cannot be read. + """ + raise NotImplementedError() + + def iter_entry_points(self) -> Iterable[BaseEntryPoint]: + raise NotImplementedError() + + def _metadata_impl(self) -> email.message.Message: + raise NotImplementedError() + + @functools.lru_cache(maxsize=1) + def _metadata_cached(self) -> email.message.Message: + # When we drop python 3.7 support, move this to the metadata property and use + # functools.cached_property instead of lru_cache. + metadata = self._metadata_impl() + self._add_egg_info_requires(metadata) + return metadata + + @property + def metadata(self) -> email.message.Message: + """Metadata of distribution parsed from e.g. METADATA or PKG-INFO. + + This should return an empty message if the metadata file is unavailable. + + :raises NoneMetadataError: If the metadata file is available, but does + not contain valid metadata. + """ + return self._metadata_cached() + + @property + def metadata_dict(self) -> Dict[str, Any]: + """PEP 566 compliant JSON-serializable representation of METADATA or PKG-INFO. + + This should return an empty dict if the metadata file is unavailable. + + :raises NoneMetadataError: If the metadata file is available, but does + not contain valid metadata. + """ + return msg_to_json(self.metadata) + + @property + def metadata_version(self) -> Optional[str]: + """Value of "Metadata-Version:" in distribution metadata, if available.""" + return self.metadata.get("Metadata-Version") + + @property + def raw_name(self) -> str: + """Value of "Name:" in distribution metadata.""" + # The metadata should NEVER be missing the Name: key, but if it somehow + # does, fall back to the known canonical name. + return self.metadata.get("Name", self.canonical_name) + + @property + def requires_python(self) -> SpecifierSet: + """Value of "Requires-Python:" in distribution metadata. + + If the key does not exist or contains an invalid value, an empty + SpecifierSet should be returned. + """ + value = self.metadata.get("Requires-Python") + if value is None: + return SpecifierSet() + try: + # Convert to str to satisfy the type checker; this can be a Header object. + spec = SpecifierSet(str(value)) + except InvalidSpecifier as e: + message = "Package %r has an invalid Requires-Python: %s" + logger.warning(message, self.raw_name, e) + return SpecifierSet() + return spec + + def iter_dependencies(self, extras: Collection[str] = ()) -> Iterable[Requirement]: + """Dependencies of this distribution. + + For modern .dist-info distributions, this is the collection of + "Requires-Dist:" entries in distribution metadata. + """ + raise NotImplementedError() + + def iter_provided_extras(self) -> Iterable[str]: + """Extras provided by this distribution. + + For modern .dist-info distributions, this is the collection of + "Provides-Extra:" entries in distribution metadata. + + The return value of this function is not particularly useful other than + display purposes due to backward compatibility issues and the extra + names being poorly normalized prior to PEP 685. If you want to perform + logic operations on extras, use :func:`is_extra_provided` instead. + """ + raise NotImplementedError() + + def is_extra_provided(self, extra: str) -> bool: + """Check whether an extra is provided by this distribution. + + This is needed mostly for compatibility issues with pkg_resources not + following the extra normalization rules defined in PEP 685. + """ + raise NotImplementedError() + + def _iter_declared_entries_from_record(self) -> Optional[Iterator[str]]: + try: + text = self.read_text("RECORD") + except FileNotFoundError: + return None + # This extra Path-str cast normalizes entries. + return (str(pathlib.Path(row[0])) for row in csv.reader(text.splitlines())) + + def _iter_declared_entries_from_legacy(self) -> Optional[Iterator[str]]: + try: + text = self.read_text("installed-files.txt") + except FileNotFoundError: + return None + paths = (p for p in text.splitlines(keepends=False) if p) + root = self.location + info = self.info_location + if root is None or info is None: + return paths + try: + info_rel = pathlib.Path(info).relative_to(root) + except ValueError: # info is not relative to root. + return paths + if not info_rel.parts: # info *is* root. + return paths + return ( + _convert_installed_files_path(pathlib.Path(p).parts, info_rel.parts) + for p in paths + ) + + def iter_declared_entries(self) -> Optional[Iterator[str]]: + """Iterate through file entries declared in this distribution. + + For modern .dist-info distributions, this is the files listed in the + ``RECORD`` metadata file. For legacy setuptools distributions, this + comes from ``installed-files.txt``, with entries normalized to be + compatible with the format used by ``RECORD``. + + :return: An iterator for listed entries, or None if the distribution + contains neither ``RECORD`` nor ``installed-files.txt``. + """ + return ( + self._iter_declared_entries_from_record() + or self._iter_declared_entries_from_legacy() + ) + + def _iter_requires_txt_entries(self) -> Iterator[RequiresEntry]: + """Parse a ``requires.txt`` in an egg-info directory. + + This is an INI-ish format where an egg-info stores dependencies. A + section name describes extra other environment markers, while each entry + is an arbitrary string (not a key-value pair) representing a dependency + as a requirement string (no markers). + + There is a construct in ``importlib.metadata`` called ``Sectioned`` that + does mostly the same, but the format is currently considered private. + """ + try: + content = self.read_text("requires.txt") + except FileNotFoundError: + return + extra = marker = "" # Section-less entries don't have markers. + for line in content.splitlines(): + line = line.strip() + if not line or line.startswith("#"): # Comment; ignored. + continue + if line.startswith("[") and line.endswith("]"): # A section header. + extra, _, marker = line.strip("[]").partition(":") + continue + yield RequiresEntry(requirement=line, extra=extra, marker=marker) + + def _iter_egg_info_extras(self) -> Iterable[str]: + """Get extras from the egg-info directory.""" + known_extras = {""} + for entry in self._iter_requires_txt_entries(): + extra = canonicalize_name(entry.extra) + if extra in known_extras: + continue + known_extras.add(extra) + yield extra + + def _iter_egg_info_dependencies(self) -> Iterable[str]: + """Get distribution dependencies from the egg-info directory. + + To ease parsing, this converts a legacy dependency entry into a PEP 508 + requirement string. Like ``_iter_requires_txt_entries()``, there is code + in ``importlib.metadata`` that does mostly the same, but not do exactly + what we need. + + Namely, ``importlib.metadata`` does not normalize the extra name before + putting it into the requirement string, which causes marker comparison + to fail because the dist-info format do normalize. This is consistent in + all currently available PEP 517 backends, although not standardized. + """ + for entry in self._iter_requires_txt_entries(): + extra = canonicalize_name(entry.extra) + if extra and entry.marker: + marker = f'({entry.marker}) and extra == "{extra}"' + elif extra: + marker = f'extra == "{extra}"' + elif entry.marker: + marker = entry.marker + else: + marker = "" + if marker: + yield f"{entry.requirement} ; {marker}" + else: + yield entry.requirement + + def _add_egg_info_requires(self, metadata: email.message.Message) -> None: + """Add egg-info requires.txt information to the metadata.""" + if not metadata.get_all("Requires-Dist"): + for dep in self._iter_egg_info_dependencies(): + metadata["Requires-Dist"] = dep + if not metadata.get_all("Provides-Extra"): + for extra in self._iter_egg_info_extras(): + metadata["Provides-Extra"] = extra + + +class BaseEnvironment: + """An environment containing distributions to introspect.""" + + @classmethod + def default(cls) -> "BaseEnvironment": + raise NotImplementedError() + + @classmethod + def from_paths(cls, paths: Optional[List[str]]) -> "BaseEnvironment": + raise NotImplementedError() + + def get_distribution(self, name: str) -> Optional["BaseDistribution"]: + """Given a requirement name, return the installed distributions. + + The name may not be normalized. The implementation must canonicalize + it for lookup. + """ + raise NotImplementedError() + + def _iter_distributions(self) -> Iterator["BaseDistribution"]: + """Iterate through installed distributions. + + This function should be implemented by subclass, but never called + directly. Use the public ``iter_distribution()`` instead, which + implements additional logic to make sure the distributions are valid. + """ + raise NotImplementedError() + + def iter_all_distributions(self) -> Iterator[BaseDistribution]: + """Iterate through all installed distributions without any filtering.""" + for dist in self._iter_distributions(): + # Make sure the distribution actually comes from a valid Python + # packaging distribution. Pip's AdjacentTempDirectory leaves folders + # e.g. ``~atplotlib.dist-info`` if cleanup was interrupted. The + # valid project name pattern is taken from PEP 508. + project_name_valid = re.match( + r"^([A-Z0-9]|[A-Z0-9][A-Z0-9._-]*[A-Z0-9])$", + dist.canonical_name, + flags=re.IGNORECASE, + ) + if not project_name_valid: + logger.warning( + "Ignoring invalid distribution %s (%s)", + dist.canonical_name, + dist.location, + ) + continue + yield dist + + def iter_installed_distributions( + self, + local_only: bool = True, + skip: Container[str] = stdlib_pkgs, + include_editables: bool = True, + editables_only: bool = False, + user_only: bool = False, + ) -> Iterator[BaseDistribution]: + """Return a list of installed distributions. + + This is based on ``iter_all_distributions()`` with additional filtering + options. Note that ``iter_installed_distributions()`` without arguments + is *not* equal to ``iter_all_distributions()``, since some of the + configurations exclude packages by default. + + :param local_only: If True (default), only return installations + local to the current virtualenv, if in a virtualenv. + :param skip: An iterable of canonicalized project names to ignore; + defaults to ``stdlib_pkgs``. + :param include_editables: If False, don't report editables. + :param editables_only: If True, only report editables. + :param user_only: If True, only report installations in the user + site directory. + """ + it = self.iter_all_distributions() + if local_only: + it = (d for d in it if d.local) + if not include_editables: + it = (d for d in it if not d.editable) + if editables_only: + it = (d for d in it if d.editable) + if user_only: + it = (d for d in it if d.in_usersite) + return (d for d in it if d.canonical_name not in skip) + + +class Wheel(Protocol): + location: str + + def as_zipfile(self) -> zipfile.ZipFile: + raise NotImplementedError() + + +class FilesystemWheel(Wheel): + def __init__(self, location: str) -> None: + self.location = location + + def as_zipfile(self) -> zipfile.ZipFile: + return zipfile.ZipFile(self.location, allowZip64=True) + + +class MemoryWheel(Wheel): + def __init__(self, location: str, stream: IO[bytes]) -> None: + self.location = location + self.stream = stream + + def as_zipfile(self) -> zipfile.ZipFile: + return zipfile.ZipFile(self.stream, allowZip64=True) diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/metadata/importlib/__init__.py b/.venv/lib/python3.12/site-packages/pip/_internal/metadata/importlib/__init__.py new file mode 100644 index 00000000..a779138d --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_internal/metadata/importlib/__init__.py @@ -0,0 +1,6 @@ +from ._dists import Distribution +from ._envs import Environment + +__all__ = ["NAME", "Distribution", "Environment"] + +NAME = "importlib" diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/metadata/importlib/__pycache__/__init__.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_internal/metadata/importlib/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..fc125442721217dcdc65188626e15af6465fc642 GIT binary patch literal 434 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 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/metadata/importlib/__pycache__/_envs.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_internal/metadata/importlib/__pycache__/_envs.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..428f843e419297f50702f17b45e837648ad0783a GIT binary patch literal 11256 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 Cd7k|M literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/metadata/importlib/_compat.py b/.venv/lib/python3.12/site-packages/pip/_internal/metadata/importlib/_compat.py new file mode 100644 index 00000000..593bff23 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_internal/metadata/importlib/_compat.py @@ -0,0 +1,55 @@ +import importlib.metadata +from typing import Any, Optional, Protocol, cast + + +class BadMetadata(ValueError): + def __init__(self, dist: importlib.metadata.Distribution, *, reason: str) -> None: + self.dist = dist + self.reason = reason + + def __str__(self) -> str: + return f"Bad metadata in {self.dist} ({self.reason})" + + +class BasePath(Protocol): + """A protocol that various path objects conform. + + This exists because importlib.metadata uses both ``pathlib.Path`` and + ``zipfile.Path``, and we need a common base for type hints (Union does not + work well since ``zipfile.Path`` is too new for our linter setup). + + This does not mean to be exhaustive, but only contains things that present + in both classes *that we need*. + """ + + @property + def name(self) -> str: + raise NotImplementedError() + + @property + def parent(self) -> "BasePath": + raise NotImplementedError() + + +def get_info_location(d: importlib.metadata.Distribution) -> Optional[BasePath]: + """Find the path to the distribution's metadata directory. + + HACK: This relies on importlib.metadata's private ``_path`` attribute. Not + all distributions exist on disk, so importlib.metadata is correct to not + expose the attribute as public. But pip's code base is old and not as clean, + so we do this to avoid having to rewrite too many things. Hopefully we can + eliminate this some day. + """ + return getattr(d, "_path", None) + + +def get_dist_name(dist: importlib.metadata.Distribution) -> str: + """Get the distribution's project name. + + The ``name`` attribute is only available in Python 3.10 or later. We are + targeting exactly that, but Mypy does not know this. + """ + name = cast(Any, dist).name + if not isinstance(name, str): + raise BadMetadata(dist, reason="invalid metadata entry 'name'") + return name diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/metadata/importlib/_dists.py b/.venv/lib/python3.12/site-packages/pip/_internal/metadata/importlib/_dists.py new file mode 100644 index 00000000..26370fac --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_internal/metadata/importlib/_dists.py @@ -0,0 +1,227 @@ +import email.message +import importlib.metadata +import os +import pathlib +import zipfile +from typing import ( + Collection, + Dict, + Iterable, + Iterator, + Mapping, + Optional, + Sequence, + cast, +) + +from pip._vendor.packaging.requirements import Requirement +from pip._vendor.packaging.utils import NormalizedName, canonicalize_name +from pip._vendor.packaging.version import parse as parse_version + +from pip._internal.exceptions import InvalidWheel, UnsupportedWheel +from pip._internal.metadata.base import ( + BaseDistribution, + BaseEntryPoint, + DistributionVersion, + InfoPath, + Wheel, +) +from pip._internal.utils.misc import normalize_path +from pip._internal.utils.temp_dir import TempDirectory +from pip._internal.utils.wheel import parse_wheel, read_wheel_metadata_file + +from ._compat import BasePath, get_dist_name + + +class WheelDistribution(importlib.metadata.Distribution): + """An ``importlib.metadata.Distribution`` read from a wheel. + + Although ``importlib.metadata.PathDistribution`` accepts ``zipfile.Path``, + its implementation is too "lazy" for pip's needs (we can't keep the ZipFile + handle open for the entire lifetime of the distribution object). + + This implementation eagerly reads the entire metadata directory into the + memory instead, and operates from that. + """ + + def __init__( + self, + files: Mapping[pathlib.PurePosixPath, bytes], + info_location: pathlib.PurePosixPath, + ) -> None: + self._files = files + self.info_location = info_location + + @classmethod + def from_zipfile( + cls, + zf: zipfile.ZipFile, + name: str, + location: str, + ) -> "WheelDistribution": + info_dir, _ = parse_wheel(zf, name) + paths = ( + (name, pathlib.PurePosixPath(name.split("/", 1)[-1])) + for name in zf.namelist() + if name.startswith(f"{info_dir}/") + ) + files = { + relpath: read_wheel_metadata_file(zf, fullpath) + for fullpath, relpath in paths + } + info_location = pathlib.PurePosixPath(location, info_dir) + return cls(files, info_location) + + def iterdir(self, path: InfoPath) -> Iterator[pathlib.PurePosixPath]: + # Only allow iterating through the metadata directory. + if pathlib.PurePosixPath(str(path)) in self._files: + return iter(self._files) + raise FileNotFoundError(path) + + def read_text(self, filename: str) -> Optional[str]: + try: + data = self._files[pathlib.PurePosixPath(filename)] + except KeyError: + return None + try: + text = data.decode("utf-8") + except UnicodeDecodeError as e: + wheel = self.info_location.parent + error = f"Error decoding metadata for {wheel}: {e} in {filename} file" + raise UnsupportedWheel(error) + return text + + +class Distribution(BaseDistribution): + def __init__( + self, + dist: importlib.metadata.Distribution, + info_location: Optional[BasePath], + installed_location: Optional[BasePath], + ) -> None: + self._dist = dist + self._info_location = info_location + self._installed_location = installed_location + + @classmethod + def from_directory(cls, directory: str) -> BaseDistribution: + info_location = pathlib.Path(directory) + dist = importlib.metadata.Distribution.at(info_location) + return cls(dist, info_location, info_location.parent) + + @classmethod + def from_metadata_file_contents( + cls, + metadata_contents: bytes, + filename: str, + project_name: str, + ) -> BaseDistribution: + # Generate temp dir to contain the metadata file, and write the file contents. + temp_dir = pathlib.Path( + TempDirectory(kind="metadata", globally_managed=True).path + ) + metadata_path = temp_dir / "METADATA" + metadata_path.write_bytes(metadata_contents) + # Construct dist pointing to the newly created directory. + dist = importlib.metadata.Distribution.at(metadata_path.parent) + return cls(dist, metadata_path.parent, None) + + @classmethod + def from_wheel(cls, wheel: Wheel, name: str) -> BaseDistribution: + try: + with wheel.as_zipfile() as zf: + dist = WheelDistribution.from_zipfile(zf, name, wheel.location) + except zipfile.BadZipFile as e: + raise InvalidWheel(wheel.location, name) from e + except UnsupportedWheel as e: + raise UnsupportedWheel(f"{name} has an invalid wheel, {e}") + return cls(dist, dist.info_location, pathlib.PurePosixPath(wheel.location)) + + @property + def location(self) -> Optional[str]: + if self._info_location is None: + return None + return str(self._info_location.parent) + + @property + def info_location(self) -> Optional[str]: + if self._info_location is None: + return None + return str(self._info_location) + + @property + def installed_location(self) -> Optional[str]: + if self._installed_location is None: + return None + return normalize_path(str(self._installed_location)) + + def _get_dist_name_from_location(self) -> Optional[str]: + """Try to get the name from the metadata directory name. + + This is much faster than reading metadata. + """ + if self._info_location is None: + return None + stem, suffix = os.path.splitext(self._info_location.name) + if suffix not in (".dist-info", ".egg-info"): + return None + return stem.split("-", 1)[0] + + @property + def canonical_name(self) -> NormalizedName: + name = self._get_dist_name_from_location() or get_dist_name(self._dist) + return canonicalize_name(name) + + @property + def version(self) -> DistributionVersion: + return parse_version(self._dist.version) + + def is_file(self, path: InfoPath) -> bool: + return self._dist.read_text(str(path)) is not None + + def iter_distutils_script_names(self) -> Iterator[str]: + # A distutils installation is always "flat" (not in e.g. egg form), so + # if this distribution's info location is NOT a pathlib.Path (but e.g. + # zipfile.Path), it can never contain any distutils scripts. + if not isinstance(self._info_location, pathlib.Path): + return + for child in self._info_location.joinpath("scripts").iterdir(): + yield child.name + + def read_text(self, path: InfoPath) -> str: + content = self._dist.read_text(str(path)) + if content is None: + raise FileNotFoundError(path) + return content + + def iter_entry_points(self) -> Iterable[BaseEntryPoint]: + # importlib.metadata's EntryPoint structure sasitfies BaseEntryPoint. + return self._dist.entry_points + + def _metadata_impl(self) -> email.message.Message: + # From Python 3.10+, importlib.metadata declares PackageMetadata as the + # return type. This protocol is unfortunately a disaster now and misses + # a ton of fields that we need, including get() and get_payload(). We + # rely on the implementation that the object is actually a Message now, + # until upstream can improve the protocol. (python/cpython#94952) + return cast(email.message.Message, self._dist.metadata) + + def iter_provided_extras(self) -> Iterable[str]: + return self.metadata.get_all("Provides-Extra", []) + + def is_extra_provided(self, extra: str) -> bool: + return any( + canonicalize_name(provided_extra) == canonicalize_name(extra) + for provided_extra in self.metadata.get_all("Provides-Extra", []) + ) + + def iter_dependencies(self, extras: Collection[str] = ()) -> Iterable[Requirement]: + contexts: Sequence[Dict[str, str]] = [{"extra": e} for e in extras] + for req_string in self.metadata.get_all("Requires-Dist", []): + req = Requirement(req_string) + if not req.marker: + yield req + elif not extras and req.marker.evaluate({"extra": ""}): + yield req + elif any(req.marker.evaluate(context) for context in contexts): + yield req diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/metadata/importlib/_envs.py b/.venv/lib/python3.12/site-packages/pip/_internal/metadata/importlib/_envs.py new file mode 100644 index 00000000..048dc55d --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_internal/metadata/importlib/_envs.py @@ -0,0 +1,189 @@ +import functools +import importlib.metadata +import logging +import os +import pathlib +import sys +import zipfile +import zipimport +from typing import Iterator, List, Optional, Sequence, Set, Tuple + +from pip._vendor.packaging.utils import NormalizedName, canonicalize_name + +from pip._internal.metadata.base import BaseDistribution, BaseEnvironment +from pip._internal.models.wheel import Wheel +from pip._internal.utils.deprecation import deprecated +from pip._internal.utils.filetypes import WHEEL_EXTENSION + +from ._compat import BadMetadata, BasePath, get_dist_name, get_info_location +from ._dists import Distribution + +logger = logging.getLogger(__name__) + + +def _looks_like_wheel(location: str) -> bool: + if not location.endswith(WHEEL_EXTENSION): + return False + if not os.path.isfile(location): + return False + if not Wheel.wheel_file_re.match(os.path.basename(location)): + return False + return zipfile.is_zipfile(location) + + +class _DistributionFinder: + """Finder to locate distributions. + + The main purpose of this class is to memoize found distributions' names, so + only one distribution is returned for each package name. At lot of pip code + assumes this (because it is setuptools's behavior), and not doing the same + can potentially cause a distribution in lower precedence path to override a + higher precedence one if the caller is not careful. + + Eventually we probably want to make it possible to see lower precedence + installations as well. It's useful feature, after all. + """ + + FoundResult = Tuple[importlib.metadata.Distribution, Optional[BasePath]] + + def __init__(self) -> None: + self._found_names: Set[NormalizedName] = set() + + def _find_impl(self, location: str) -> Iterator[FoundResult]: + """Find distributions in a location.""" + # Skip looking inside a wheel. Since a package inside a wheel is not + # always valid (due to .data directories etc.), its .dist-info entry + # should not be considered an installed distribution. + if _looks_like_wheel(location): + return + # To know exactly where we find a distribution, we have to feed in the + # paths one by one, instead of dumping the list to importlib.metadata. + for dist in importlib.metadata.distributions(path=[location]): + info_location = get_info_location(dist) + try: + raw_name = get_dist_name(dist) + except BadMetadata as e: + logger.warning("Skipping %s due to %s", info_location, e.reason) + continue + normalized_name = canonicalize_name(raw_name) + if normalized_name in self._found_names: + continue + self._found_names.add(normalized_name) + yield dist, info_location + + def find(self, location: str) -> Iterator[BaseDistribution]: + """Find distributions in a location. + + The path can be either a directory, or a ZIP archive. + """ + for dist, info_location in self._find_impl(location): + if info_location is None: + installed_location: Optional[BasePath] = None + else: + installed_location = info_location.parent + yield Distribution(dist, info_location, installed_location) + + def find_linked(self, location: str) -> Iterator[BaseDistribution]: + """Read location in egg-link files and return distributions in there. + + The path should be a directory; otherwise this returns nothing. This + follows how setuptools does this for compatibility. The first non-empty + line in the egg-link is read as a path (resolved against the egg-link's + containing directory if relative). Distributions found at that linked + location are returned. + """ + path = pathlib.Path(location) + if not path.is_dir(): + return + for child in path.iterdir(): + if child.suffix != ".egg-link": + continue + with child.open() as f: + lines = (line.strip() for line in f) + target_rel = next((line for line in lines if line), "") + if not target_rel: + continue + target_location = str(path.joinpath(target_rel)) + for dist, info_location in self._find_impl(target_location): + yield Distribution(dist, info_location, path) + + def _find_eggs_in_dir(self, location: str) -> Iterator[BaseDistribution]: + from pip._vendor.pkg_resources import find_distributions + + from pip._internal.metadata import pkg_resources as legacy + + with os.scandir(location) as it: + for entry in it: + if not entry.name.endswith(".egg"): + continue + for dist in find_distributions(entry.path): + yield legacy.Distribution(dist) + + def _find_eggs_in_zip(self, location: str) -> Iterator[BaseDistribution]: + from pip._vendor.pkg_resources import find_eggs_in_zip + + from pip._internal.metadata import pkg_resources as legacy + + try: + importer = zipimport.zipimporter(location) + except zipimport.ZipImportError: + return + for dist in find_eggs_in_zip(importer, location): + yield legacy.Distribution(dist) + + def find_eggs(self, location: str) -> Iterator[BaseDistribution]: + """Find eggs in a location. + + This actually uses the old *pkg_resources* backend. We likely want to + deprecate this so we can eventually remove the *pkg_resources* + dependency entirely. Before that, this should first emit a deprecation + warning for some versions when using the fallback since importing + *pkg_resources* is slow for those who don't need it. + """ + if os.path.isdir(location): + yield from self._find_eggs_in_dir(location) + if zipfile.is_zipfile(location): + yield from self._find_eggs_in_zip(location) + + +@functools.lru_cache(maxsize=None) # Warn a distribution exactly once. +def _emit_egg_deprecation(location: Optional[str]) -> None: + deprecated( + reason=f"Loading egg at {location} is deprecated.", + replacement="to use pip for package installation.", + gone_in="24.3", + issue=12330, + ) + + +class Environment(BaseEnvironment): + def __init__(self, paths: Sequence[str]) -> None: + self._paths = paths + + @classmethod + def default(cls) -> BaseEnvironment: + return cls(sys.path) + + @classmethod + def from_paths(cls, paths: Optional[List[str]]) -> BaseEnvironment: + if paths is None: + return cls(sys.path) + return cls(paths) + + def _iter_distributions(self) -> Iterator[BaseDistribution]: + finder = _DistributionFinder() + for location in self._paths: + yield from finder.find(location) + for dist in finder.find_eggs(location): + _emit_egg_deprecation(dist.location) + yield dist + # This must go last because that's how pkg_resources tie-breaks. + yield from finder.find_linked(location) + + def get_distribution(self, name: str) -> Optional[BaseDistribution]: + matches = ( + distribution + for distribution in self.iter_all_distributions() + if distribution.canonical_name == canonicalize_name(name) + ) + return next(matches, None) diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/metadata/pkg_resources.py b/.venv/lib/python3.12/site-packages/pip/_internal/metadata/pkg_resources.py new file mode 100644 index 00000000..bb11e5bd --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_internal/metadata/pkg_resources.py @@ -0,0 +1,278 @@ +import email.message +import email.parser +import logging +import os +import zipfile +from typing import Collection, Iterable, Iterator, List, Mapping, NamedTuple, Optional + +from pip._vendor import pkg_resources +from pip._vendor.packaging.requirements import Requirement +from pip._vendor.packaging.utils import NormalizedName, canonicalize_name +from pip._vendor.packaging.version import parse as parse_version + +from pip._internal.exceptions import InvalidWheel, NoneMetadataError, UnsupportedWheel +from pip._internal.utils.egg_link import egg_link_path_from_location +from pip._internal.utils.misc import display_path, normalize_path +from pip._internal.utils.wheel import parse_wheel, read_wheel_metadata_file + +from .base import ( + BaseDistribution, + BaseEntryPoint, + BaseEnvironment, + DistributionVersion, + InfoPath, + Wheel, +) + +__all__ = ["NAME", "Distribution", "Environment"] + +logger = logging.getLogger(__name__) + +NAME = "pkg_resources" + + +class EntryPoint(NamedTuple): + name: str + value: str + group: str + + +class InMemoryMetadata: + """IMetadataProvider that reads metadata files from a dictionary. + + This also maps metadata decoding exceptions to our internal exception type. + """ + + def __init__(self, metadata: Mapping[str, bytes], wheel_name: str) -> None: + self._metadata = metadata + self._wheel_name = wheel_name + + def has_metadata(self, name: str) -> bool: + return name in self._metadata + + def get_metadata(self, name: str) -> str: + try: + return self._metadata[name].decode() + except UnicodeDecodeError as e: + # Augment the default error with the origin of the file. + raise UnsupportedWheel( + f"Error decoding metadata for {self._wheel_name}: {e} in {name} file" + ) + + def get_metadata_lines(self, name: str) -> Iterable[str]: + return pkg_resources.yield_lines(self.get_metadata(name)) + + def metadata_isdir(self, name: str) -> bool: + return False + + def metadata_listdir(self, name: str) -> List[str]: + return [] + + def run_script(self, script_name: str, namespace: str) -> None: + pass + + +class Distribution(BaseDistribution): + def __init__(self, dist: pkg_resources.Distribution) -> None: + self._dist = dist + + @classmethod + def from_directory(cls, directory: str) -> BaseDistribution: + dist_dir = directory.rstrip(os.sep) + + # Build a PathMetadata object, from path to metadata. :wink: + base_dir, dist_dir_name = os.path.split(dist_dir) + metadata = pkg_resources.PathMetadata(base_dir, dist_dir) + + # Determine the correct Distribution object type. + if dist_dir.endswith(".egg-info"): + dist_cls = pkg_resources.Distribution + dist_name = os.path.splitext(dist_dir_name)[0] + else: + assert dist_dir.endswith(".dist-info") + dist_cls = pkg_resources.DistInfoDistribution + dist_name = os.path.splitext(dist_dir_name)[0].split("-")[0] + + dist = dist_cls(base_dir, project_name=dist_name, metadata=metadata) + return cls(dist) + + @classmethod + def from_metadata_file_contents( + cls, + metadata_contents: bytes, + filename: str, + project_name: str, + ) -> BaseDistribution: + metadata_dict = { + "METADATA": metadata_contents, + } + dist = pkg_resources.DistInfoDistribution( + location=filename, + metadata=InMemoryMetadata(metadata_dict, filename), + project_name=project_name, + ) + return cls(dist) + + @classmethod + def from_wheel(cls, wheel: Wheel, name: str) -> BaseDistribution: + try: + with wheel.as_zipfile() as zf: + info_dir, _ = parse_wheel(zf, name) + metadata_dict = { + path.split("/", 1)[-1]: read_wheel_metadata_file(zf, path) + for path in zf.namelist() + if path.startswith(f"{info_dir}/") + } + except zipfile.BadZipFile as e: + raise InvalidWheel(wheel.location, name) from e + except UnsupportedWheel as e: + raise UnsupportedWheel(f"{name} has an invalid wheel, {e}") + dist = pkg_resources.DistInfoDistribution( + location=wheel.location, + metadata=InMemoryMetadata(metadata_dict, wheel.location), + project_name=name, + ) + return cls(dist) + + @property + def location(self) -> Optional[str]: + return self._dist.location + + @property + def installed_location(self) -> Optional[str]: + egg_link = egg_link_path_from_location(self.raw_name) + if egg_link: + location = egg_link + elif self.location: + location = self.location + else: + return None + return normalize_path(location) + + @property + def info_location(self) -> Optional[str]: + return self._dist.egg_info + + @property + def installed_by_distutils(self) -> bool: + # A distutils-installed distribution is provided by FileMetadata. This + # provider has a "path" attribute not present anywhere else. Not the + # best introspection logic, but pip has been doing this for a long time. + try: + return bool(self._dist._provider.path) + except AttributeError: + return False + + @property + def canonical_name(self) -> NormalizedName: + return canonicalize_name(self._dist.project_name) + + @property + def version(self) -> DistributionVersion: + return parse_version(self._dist.version) + + def is_file(self, path: InfoPath) -> bool: + return self._dist.has_metadata(str(path)) + + def iter_distutils_script_names(self) -> Iterator[str]: + yield from self._dist.metadata_listdir("scripts") + + def read_text(self, path: InfoPath) -> str: + name = str(path) + if not self._dist.has_metadata(name): + raise FileNotFoundError(name) + content = self._dist.get_metadata(name) + if content is None: + raise NoneMetadataError(self, name) + return content + + def iter_entry_points(self) -> Iterable[BaseEntryPoint]: + for group, entries in self._dist.get_entry_map().items(): + for name, entry_point in entries.items(): + name, _, value = str(entry_point).partition("=") + yield EntryPoint(name=name.strip(), value=value.strip(), group=group) + + def _metadata_impl(self) -> email.message.Message: + """ + :raises NoneMetadataError: if the distribution reports `has_metadata()` + True but `get_metadata()` returns None. + """ + if isinstance(self._dist, pkg_resources.DistInfoDistribution): + metadata_name = "METADATA" + else: + metadata_name = "PKG-INFO" + try: + metadata = self.read_text(metadata_name) + except FileNotFoundError: + if self.location: + displaying_path = display_path(self.location) + else: + displaying_path = repr(self.location) + logger.warning("No metadata found in %s", displaying_path) + metadata = "" + feed_parser = email.parser.FeedParser() + feed_parser.feed(metadata) + return feed_parser.close() + + def iter_dependencies(self, extras: Collection[str] = ()) -> Iterable[Requirement]: + if extras: # pkg_resources raises on invalid extras, so we sanitize. + extras = frozenset(pkg_resources.safe_extra(e) for e in extras) + extras = extras.intersection(self._dist.extras) + return self._dist.requires(extras) + + def iter_provided_extras(self) -> Iterable[str]: + return self._dist.extras + + def is_extra_provided(self, extra: str) -> bool: + return pkg_resources.safe_extra(extra) in self._dist.extras + + +class Environment(BaseEnvironment): + def __init__(self, ws: pkg_resources.WorkingSet) -> None: + self._ws = ws + + @classmethod + def default(cls) -> BaseEnvironment: + return cls(pkg_resources.working_set) + + @classmethod + def from_paths(cls, paths: Optional[List[str]]) -> BaseEnvironment: + return cls(pkg_resources.WorkingSet(paths)) + + def _iter_distributions(self) -> Iterator[BaseDistribution]: + for dist in self._ws: + yield Distribution(dist) + + def _search_distribution(self, name: str) -> Optional[BaseDistribution]: + """Find a distribution matching the ``name`` in the environment. + + This searches from *all* distributions available in the environment, to + match the behavior of ``pkg_resources.get_distribution()``. + """ + canonical_name = canonicalize_name(name) + for dist in self.iter_all_distributions(): + if dist.canonical_name == canonical_name: + return dist + return None + + def get_distribution(self, name: str) -> Optional[BaseDistribution]: + # Search the distribution by looking through the working set. + dist = self._search_distribution(name) + if dist: + return dist + + # If distribution could not be found, call working_set.require to + # update the working set, and try to find the distribution again. + # This might happen for e.g. when you install a package twice, once + # using setup.py develop and again using setup.py install. Now when + # running pip uninstall twice, the package gets removed from the + # working set in the first uninstall, so we have to populate the + # working set again so that pip knows about it and the packages gets + # picked up and is successfully uninstalled the second time too. + try: + # We didn't pass in any version specifiers, so this can never + # raise pkg_resources.VersionConflict. + self._ws.require(name) + except pkg_resources.DistributionNotFound: + return None + return self._search_distribution(name) diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/models/__init__.py b/.venv/lib/python3.12/site-packages/pip/_internal/models/__init__.py new file mode 100644 index 00000000..7855226e --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_internal/models/__init__.py @@ -0,0 +1,2 @@ +"""A package that contains models that represent entities. +""" diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/models/__pycache__/__init__.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_internal/models/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..18ed81f42678f6156c6729b67ef3988b91e37cd2 GIT binary patch literal 342 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 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/models/__pycache__/format_control.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_internal/models/__pycache__/format_control.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..3928e4bc1c882db4e4335e5ebda9c78815c0c672 GIT binary patch literal 4303 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 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/models/__pycache__/installation_report.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_internal/models/__pycache__/installation_report.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..67ee5e4940916f48ac3035ce08ce05e49fa445c6 GIT binary patch literal 2348 zcmZ`)Uu+ab7@z%f|9jlgKhSHv=73T>3b$>cLa`bfP{G8;P$lGu*(|%$_S(JOV`i^- zO)DM2S8j$1~LQ_6@|P|6!T(H%1Z*5iKbi(PE$h=4@&E;0hwkP*BidLHx9N+=uti!)h?Nh4N;$)^gs!@^_uQW;x1 z&I+u>z~frkbX0836o_pVvE_g`rm8cT(1LBLDzMFGEb3^cc@`EH2v5Dw$WxajI+h+DqXaFLI0(TYY8R>t^Q zHsa76i0mvb*~DS31ur(0JP(fQjU2d6IW57r-VD=qG$+g<)m8ARg0jLW9I;K^&QDfk zGR5XN0n`xXjxw2Nca@^$D7x|yg%l|lF|mx?Wt&iaQaNSoWu6@n7p&=uGSD|Ls0uqbIU}0rLua<~C1$Ihq24GRl!bPQ2aVBl+ zNUncCq2S|iNzp4U{-JsKL3r;vaEQqO{UsJ8*eMh1g$xHl?Pk~#ybMqA1zQG$CmUe#7sM=5psE2VLKEO*MYE={!6N+TVCn!FE@DSBG)H5}4WWuZafn8< zQPKu`vXEng58WZVI47G>=VUi0<7K!HDlL~vW`Vn!zz!HvhsAxT?m8Cq{IMW~vcv}O zO}a@5znn}Wm{N{?CX*ovE@|C-FV)80vj?`T-%S_TH{`IS&OCb$I>^u zzwiC7_s^a~w?6#g!tD#IJwx*+SCV_HP5T}un&+crC&Z{X-~|#PUZC!kx(Wn53xWfG zZ_J^o&F!rrJ%zpyba4Xd;>S=%SD?vF1^gAy|8s(0L|=)Yx5;3AMR5G~y;0JJctaio zo#5&(!}~GHg#N6|LXB5}#h~x_PXr4!GS6b0UlEybzl1|Ty7|QKXI3Qqy0~aJ`l*XE z=>+L)$2PDwAU_CtdJ-l;a(BnCojs3+->MCts}7(0TN2xMJUn{*OSzWJR+HIV-4Bw= z8W%ooMz1KVoqbPI@np1);*sdTYeA4x-ao!>e?2^!ZQ@PQ(u!DBSyWY_f0j*7H>v8S zvSxZ3!V^h2B81;t7Sm0QQmE=l+aTN*lc+-ohs!%DKg@09g6f@)Hx1&ab?7x_bD`IsyjjD7dpOb_7~hUOiDq@LzWBo&34w-szt{UE}P!I+aqvn((6HLAs}4X#g$<$XSL>a^5QfRyqFmz-#7W z#3ZnB!E0Fi&r1$^0{{Fg>7~RyTOZ$m7qNTZXW?NllW&qikny^vT`<)pK@fgNJyq26 W7`^crb^eBi{|PEWbPd7euKy2O+&jkr literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/models/__pycache__/link.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_internal/models/__pycache__/link.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..25407b3c759f1b624399f791383e2d0de062d7ae GIT binary patch literal 26078 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 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/models/__pycache__/scheme.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_internal/models/__pycache__/scheme.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..c7d088866642a74e35369e8b9dc945e10711b359 GIT binary patch literal 1245 zcmZ`&&1)Pt6xYno?8kWR&4)uA2(6%nvQUo_r#`fVLP*^tEj9tuL-!)IBkhjr+0j(e z?qA*Vd;M<_IXpr3y4Ng6%9_nW8d>k$Hb z@Yl2SrH{}n=d3JPlJif2oFR@nsE@e!o7eGtbPsX=6!FR*aLQT7p9Jmj_|NEDrLmn9 z!eC~MN+h#_$bOEE5K(GvVZI`StHi{`#HK2bmF|;UWO*mdTs(?XJIFp^nH4&R zw6_19P#ir8%US{1WwHxosKuP5f^nfuSu=^2g*9csnPti1(F<%Yo%1h%oFRca9@NU` zUZ*00PRM;x)oXRA{ zOba|TP)%lB5pb6ofw|Nou}VuQcu(mFgE4Jok0tiMEnxWJygKmR$Gyu2FbL2d6qyRGeN85oiE{x>V*l5y|E`0ejxkXw?F9}F~!bfK|49xDy%BHyTFI1sso zu*{DpWaq}tF4@_=@#W3k?)HG`BWa;>cle0qiQxMX;A))j<$ak8@_wBbTKxq3NIVkx zh=3-@LSVPzn>)n7H@26xG^CIPp%Qcn^2*3SagiCa5IU%`tW#K&meS+aqQ~(na2XzC zJ_9&GvkPeJTQ0UvyVbPFcE?x3*(r*5+kaEf00epsK? z(Z%a04`x9#y!PVa<}8GHRz;Vt%xaF+9cwriIkx6l6SXeQ)*ahG(Z=5`V2hjFB?s+_ zcJJ4l4(8Whb?kjAZ|k=gPy1SL!GhD4xehR^c%Jv#553^c1=PChovi&+z3g3kg8=5I F-vP>aPXhn| literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/models/__pycache__/search_scope.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_internal/models/__pycache__/search_scope.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..399f8b009bc65352fa5b4fe1f076ce2306e5dd6b GIT binary patch literal 5164 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 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/models/__pycache__/selection_prefs.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_internal/models/__pycache__/selection_prefs.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..81590c0dec35b9aff7e4ae6890e660b806209b65 GIT binary patch literal 1927 zcmZ`)&u<$=6rS~Z9ow-3MQxQdKQv7!#8tAJ7zNR&L8{sW^?-?r5Rxye@yQ!YbB&ghyypbK|<<@H@kKmi!hPjzBe;(=FRtgGx@n# z%p+(Ie|gbRQwaT`gHcNlowE&aP7y`a2vF0g8iw{$L8@t1O#`LSCy1ISh^Bu`B^lLp z*D7WH(m~0HvY)j=UvLtDU)&S2Ny7Vrhf)MyGCi@yVQ^Lf=M*tiH7Kg4s8KZ!V7Kp$ zYC4CKKRQj*%%T?jGAzTU<{*PkL6n8ailZDg>jj!Wv8vgwSt>+VKW72+bRGMW)tO}6 zW9kXbV`#hFBQ4bqNXQfp8w`7dQ=dYJ)hG+M#%Z`NB&MRn13{?I58_221^ZluBnY4j z*ZqJgJ05vvMFr>;9k)yPA*0c?Bm(QgsuH#!im7M@mIZ8FF99biCR@5SpA*@QuKNdE zNajlRxa~`(+*UVi2wss{IK9kiqp6hB+7!S<8Og%7OgOYL#gS(A(#{5 z8KVghBqNZDML^eZtsUYc68PGUl{Qg1^;L+)5%54TXPr^uy8AzfT`tgxy^|?WyeFD1 z68g1ZlDp+cLv^q3$Le0zrL_SdU^_V{e!%JkFoByY@E!>i8`n|UlkkS2QYK0R+V%gv z8A{&>jTOdkesY>TbUX*>lggIuO+i_poO9vm*P^cMRyWGJFv|~J_sQaAH_RRl&%!y?M_`W8U=eVYC?JJ-Lpt-s6tr8WJX?=Rlg-y8k+?mkWbmR&i6TvST$RrV^SoZgm` zCUe~=@48T3JJ5c?bsx7$FdUh3T`D~2&bh7%M5w?`*Mtb9el(8&;0!scu4_z%Sy?LGGVs`7cDL` zS^*~Pb0+MB348KMNX`&DJ& I1SU@V7ni>%3IG5A literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/models/__pycache__/target_python.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_internal/models/__pycache__/target_python.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..b279f01d3e1f933f5b3031be2251c8e4d3838925 GIT binary patch literal 5030 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 d*d`hK8+q#Qu2JrH~srhVA@RvBRA1j^fGW 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 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/models/candidate.py b/.venv/lib/python3.12/site-packages/pip/_internal/models/candidate.py new file mode 100644 index 00000000..9184a902 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_internal/models/candidate.py @@ -0,0 +1,30 @@ +from pip._vendor.packaging.version import parse as parse_version + +from pip._internal.models.link import Link +from pip._internal.utils.models import KeyBasedCompareMixin + + +class InstallationCandidate(KeyBasedCompareMixin): + """Represents a potential "candidate" for installation.""" + + __slots__ = ["name", "version", "link"] + + def __init__(self, name: str, version: str, link: Link) -> None: + self.name = name + self.version = parse_version(version) + self.link = link + + super().__init__( + key=(self.name, self.version, self.link), + defining_class=InstallationCandidate, + ) + + def __repr__(self) -> str: + return "".format( + self.name, + self.version, + self.link, + ) + + def __str__(self) -> str: + return f"{self.name!r} candidate (version {self.version} at {self.link})" diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/models/direct_url.py b/.venv/lib/python3.12/site-packages/pip/_internal/models/direct_url.py new file mode 100644 index 00000000..0af884bd --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_internal/models/direct_url.py @@ -0,0 +1,235 @@ +""" PEP 610 """ +import json +import re +import urllib.parse +from typing import Any, Dict, Iterable, Optional, Type, TypeVar, Union + +__all__ = [ + "DirectUrl", + "DirectUrlValidationError", + "DirInfo", + "ArchiveInfo", + "VcsInfo", +] + +T = TypeVar("T") + +DIRECT_URL_METADATA_NAME = "direct_url.json" +ENV_VAR_RE = re.compile(r"^\$\{[A-Za-z0-9-_]+\}(:\$\{[A-Za-z0-9-_]+\})?$") + + +class DirectUrlValidationError(Exception): + pass + + +def _get( + d: Dict[str, Any], expected_type: Type[T], key: str, default: Optional[T] = None +) -> Optional[T]: + """Get value from dictionary and verify expected type.""" + if key not in d: + return default + value = d[key] + if not isinstance(value, expected_type): + raise DirectUrlValidationError( + f"{value!r} has unexpected type for {key} (expected {expected_type})" + ) + return value + + +def _get_required( + d: Dict[str, Any], expected_type: Type[T], key: str, default: Optional[T] = None +) -> T: + value = _get(d, expected_type, key, default) + if value is None: + raise DirectUrlValidationError(f"{key} must have a value") + return value + + +def _exactly_one_of(infos: Iterable[Optional["InfoType"]]) -> "InfoType": + infos = [info for info in infos if info is not None] + if not infos: + raise DirectUrlValidationError( + "missing one of archive_info, dir_info, vcs_info" + ) + if len(infos) > 1: + raise DirectUrlValidationError( + "more than one of archive_info, dir_info, vcs_info" + ) + assert infos[0] is not None + return infos[0] + + +def _filter_none(**kwargs: Any) -> Dict[str, Any]: + """Make dict excluding None values.""" + return {k: v for k, v in kwargs.items() if v is not None} + + +class VcsInfo: + name = "vcs_info" + + def __init__( + self, + vcs: str, + commit_id: str, + requested_revision: Optional[str] = None, + ) -> None: + self.vcs = vcs + self.requested_revision = requested_revision + self.commit_id = commit_id + + @classmethod + def _from_dict(cls, d: Optional[Dict[str, Any]]) -> Optional["VcsInfo"]: + if d is None: + return None + return cls( + vcs=_get_required(d, str, "vcs"), + commit_id=_get_required(d, str, "commit_id"), + requested_revision=_get(d, str, "requested_revision"), + ) + + def _to_dict(self) -> Dict[str, Any]: + return _filter_none( + vcs=self.vcs, + requested_revision=self.requested_revision, + commit_id=self.commit_id, + ) + + +class ArchiveInfo: + name = "archive_info" + + def __init__( + self, + hash: Optional[str] = None, + hashes: Optional[Dict[str, str]] = None, + ) -> None: + # set hashes before hash, since the hash setter will further populate hashes + self.hashes = hashes + self.hash = hash + + @property + def hash(self) -> Optional[str]: + return self._hash + + @hash.setter + def hash(self, value: Optional[str]) -> None: + if value is not None: + # Auto-populate the hashes key to upgrade to the new format automatically. + # We don't back-populate the legacy hash key from hashes. + try: + hash_name, hash_value = value.split("=", 1) + except ValueError: + raise DirectUrlValidationError( + f"invalid archive_info.hash format: {value!r}" + ) + if self.hashes is None: + self.hashes = {hash_name: hash_value} + elif hash_name not in self.hashes: + self.hashes = self.hashes.copy() + self.hashes[hash_name] = hash_value + self._hash = value + + @classmethod + def _from_dict(cls, d: Optional[Dict[str, Any]]) -> Optional["ArchiveInfo"]: + if d is None: + return None + return cls(hash=_get(d, str, "hash"), hashes=_get(d, dict, "hashes")) + + def _to_dict(self) -> Dict[str, Any]: + return _filter_none(hash=self.hash, hashes=self.hashes) + + +class DirInfo: + name = "dir_info" + + def __init__( + self, + editable: bool = False, + ) -> None: + self.editable = editable + + @classmethod + def _from_dict(cls, d: Optional[Dict[str, Any]]) -> Optional["DirInfo"]: + if d is None: + return None + return cls(editable=_get_required(d, bool, "editable", default=False)) + + def _to_dict(self) -> Dict[str, Any]: + return _filter_none(editable=self.editable or None) + + +InfoType = Union[ArchiveInfo, DirInfo, VcsInfo] + + +class DirectUrl: + def __init__( + self, + url: str, + info: InfoType, + subdirectory: Optional[str] = None, + ) -> None: + self.url = url + self.info = info + self.subdirectory = subdirectory + + def _remove_auth_from_netloc(self, netloc: str) -> str: + if "@" not in netloc: + return netloc + user_pass, netloc_no_user_pass = netloc.split("@", 1) + if ( + isinstance(self.info, VcsInfo) + and self.info.vcs == "git" + and user_pass == "git" + ): + return netloc + if ENV_VAR_RE.match(user_pass): + return netloc + return netloc_no_user_pass + + @property + def redacted_url(self) -> str: + """url with user:password part removed unless it is formed with + environment variables as specified in PEP 610, or it is ``git`` + in the case of a git URL. + """ + purl = urllib.parse.urlsplit(self.url) + netloc = self._remove_auth_from_netloc(purl.netloc) + surl = urllib.parse.urlunsplit( + (purl.scheme, netloc, purl.path, purl.query, purl.fragment) + ) + return surl + + def validate(self) -> None: + self.from_dict(self.to_dict()) + + @classmethod + def from_dict(cls, d: Dict[str, Any]) -> "DirectUrl": + return DirectUrl( + url=_get_required(d, str, "url"), + subdirectory=_get(d, str, "subdirectory"), + info=_exactly_one_of( + [ + ArchiveInfo._from_dict(_get(d, dict, "archive_info")), + DirInfo._from_dict(_get(d, dict, "dir_info")), + VcsInfo._from_dict(_get(d, dict, "vcs_info")), + ] + ), + ) + + def to_dict(self) -> Dict[str, Any]: + res = _filter_none( + url=self.redacted_url, + subdirectory=self.subdirectory, + ) + res[self.info.name] = self.info._to_dict() + return res + + @classmethod + def from_json(cls, s: str) -> "DirectUrl": + return cls.from_dict(json.loads(s)) + + def to_json(self) -> str: + return json.dumps(self.to_dict(), sort_keys=True) + + def is_local_editable(self) -> bool: + return isinstance(self.info, DirInfo) and self.info.editable diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/models/format_control.py b/.venv/lib/python3.12/site-packages/pip/_internal/models/format_control.py new file mode 100644 index 00000000..ccd11272 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_internal/models/format_control.py @@ -0,0 +1,78 @@ +from typing import FrozenSet, Optional, Set + +from pip._vendor.packaging.utils import canonicalize_name + +from pip._internal.exceptions import CommandError + + +class FormatControl: + """Helper for managing formats from which a package can be installed.""" + + __slots__ = ["no_binary", "only_binary"] + + def __init__( + self, + no_binary: Optional[Set[str]] = None, + only_binary: Optional[Set[str]] = None, + ) -> None: + if no_binary is None: + no_binary = set() + if only_binary is None: + only_binary = set() + + self.no_binary = no_binary + self.only_binary = only_binary + + def __eq__(self, other: object) -> bool: + if not isinstance(other, self.__class__): + return NotImplemented + + if self.__slots__ != other.__slots__: + return False + + return all(getattr(self, k) == getattr(other, k) for k in self.__slots__) + + def __repr__(self) -> str: + return f"{self.__class__.__name__}({self.no_binary}, {self.only_binary})" + + @staticmethod + def handle_mutual_excludes(value: str, target: Set[str], other: Set[str]) -> None: + if value.startswith("-"): + raise CommandError( + "--no-binary / --only-binary option requires 1 argument." + ) + new = value.split(",") + while ":all:" in new: + other.clear() + target.clear() + target.add(":all:") + del new[: new.index(":all:") + 1] + # Without a none, we want to discard everything as :all: covers it + if ":none:" not in new: + return + for name in new: + if name == ":none:": + target.clear() + continue + name = canonicalize_name(name) + other.discard(name) + target.add(name) + + def get_allowed_formats(self, canonical_name: str) -> FrozenSet[str]: + result = {"binary", "source"} + if canonical_name in self.only_binary: + result.discard("source") + elif canonical_name in self.no_binary: + result.discard("binary") + elif ":all:" in self.only_binary: + result.discard("source") + elif ":all:" in self.no_binary: + result.discard("binary") + return frozenset(result) + + def disallow_binaries(self) -> None: + self.handle_mutual_excludes( + ":all:", + self.no_binary, + self.only_binary, + ) diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/models/index.py b/.venv/lib/python3.12/site-packages/pip/_internal/models/index.py new file mode 100644 index 00000000..b94c3251 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_internal/models/index.py @@ -0,0 +1,28 @@ +import urllib.parse + + +class PackageIndex: + """Represents a Package Index and provides easier access to endpoints""" + + __slots__ = ["url", "netloc", "simple_url", "pypi_url", "file_storage_domain"] + + def __init__(self, url: str, file_storage_domain: str) -> None: + super().__init__() + self.url = url + self.netloc = urllib.parse.urlsplit(url).netloc + self.simple_url = self._url_for_path("simple") + self.pypi_url = self._url_for_path("pypi") + + # This is part of a temporary hack used to block installs of PyPI + # packages which depend on external urls only necessary until PyPI can + # block such packages themselves + self.file_storage_domain = file_storage_domain + + def _url_for_path(self, path: str) -> str: + return urllib.parse.urljoin(self.url, path) + + +PyPI = PackageIndex("https://pypi.org/", file_storage_domain="files.pythonhosted.org") +TestPyPI = PackageIndex( + "https://test.pypi.org/", file_storage_domain="test-files.pythonhosted.org" +) diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/models/installation_report.py b/.venv/lib/python3.12/site-packages/pip/_internal/models/installation_report.py new file mode 100644 index 00000000..b9c6330d --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_internal/models/installation_report.py @@ -0,0 +1,56 @@ +from typing import Any, Dict, Sequence + +from pip._vendor.packaging.markers import default_environment + +from pip import __version__ +from pip._internal.req.req_install import InstallRequirement + + +class InstallationReport: + def __init__(self, install_requirements: Sequence[InstallRequirement]): + self._install_requirements = install_requirements + + @classmethod + def _install_req_to_dict(cls, ireq: InstallRequirement) -> Dict[str, Any]: + assert ireq.download_info, f"No download_info for {ireq}" + res = { + # PEP 610 json for the download URL. download_info.archive_info.hashes may + # be absent when the requirement was installed from the wheel cache + # and the cache entry was populated by an older pip version that did not + # record origin.json. + "download_info": ireq.download_info.to_dict(), + # is_direct is true if the requirement was a direct URL reference (which + # includes editable requirements), and false if the requirement was + # downloaded from a PEP 503 index or --find-links. + "is_direct": ireq.is_direct, + # is_yanked is true if the requirement was yanked from the index, but + # was still selected by pip to conform to PEP 592. + "is_yanked": ireq.link.is_yanked if ireq.link else False, + # requested is true if the requirement was specified by the user (aka + # top level requirement), and false if it was installed as a dependency of a + # requirement. https://peps.python.org/pep-0376/#requested + "requested": ireq.user_supplied, + # PEP 566 json encoding for metadata + # https://www.python.org/dev/peps/pep-0566/#json-compatible-metadata + "metadata": ireq.get_dist().metadata_dict, + } + if ireq.user_supplied and ireq.extras: + # For top level requirements, the list of requested extras, if any. + res["requested_extras"] = sorted(ireq.extras) + return res + + def to_dict(self) -> Dict[str, Any]: + return { + "version": "1", + "pip_version": __version__, + "install": [ + self._install_req_to_dict(ireq) for ireq in self._install_requirements + ], + # https://peps.python.org/pep-0508/#environment-markers + # TODO: currently, the resolver uses the default environment to evaluate + # environment markers, so that is what we report here. In the future, it + # should also take into account options such as --python-version or + # --platform, perhaps under the form of an environment_override field? + # https://github.com/pypa/pip/issues/11198 + "environment": default_environment(), + } diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/models/link.py b/.venv/lib/python3.12/site-packages/pip/_internal/models/link.py new file mode 100644 index 00000000..73041b86 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_internal/models/link.py @@ -0,0 +1,579 @@ +import functools +import itertools +import logging +import os +import posixpath +import re +import urllib.parse +from dataclasses import dataclass +from typing import ( + TYPE_CHECKING, + Any, + Dict, + List, + Mapping, + NamedTuple, + Optional, + Tuple, + Union, +) + +from pip._internal.utils.deprecation import deprecated +from pip._internal.utils.filetypes import WHEEL_EXTENSION +from pip._internal.utils.hashes import Hashes +from pip._internal.utils.misc import ( + pairwise, + redact_auth_from_url, + split_auth_from_netloc, + splitext, +) +from pip._internal.utils.models import KeyBasedCompareMixin +from pip._internal.utils.urls import path_to_url, url_to_path + +if TYPE_CHECKING: + from pip._internal.index.collector import IndexContent + +logger = logging.getLogger(__name__) + + +# Order matters, earlier hashes have a precedence over later hashes for what +# we will pick to use. +_SUPPORTED_HASHES = ("sha512", "sha384", "sha256", "sha224", "sha1", "md5") + + +@dataclass(frozen=True) +class LinkHash: + """Links to content may have embedded hash values. This class parses those. + + `name` must be any member of `_SUPPORTED_HASHES`. + + This class can be converted to and from `ArchiveInfo`. While ArchiveInfo intends to + be JSON-serializable to conform to PEP 610, this class contains the logic for + parsing a hash name and value for correctness, and then checking whether that hash + conforms to a schema with `.is_hash_allowed()`.""" + + name: str + value: str + + _hash_url_fragment_re = re.compile( + # NB: we do not validate that the second group (.*) is a valid hex + # digest. Instead, we simply keep that string in this class, and then check it + # against Hashes when hash-checking is needed. This is easier to debug than + # proactively discarding an invalid hex digest, as we handle incorrect hashes + # and malformed hashes in the same place. + r"[#&]({choices})=([^&]*)".format( + choices="|".join(re.escape(hash_name) for hash_name in _SUPPORTED_HASHES) + ), + ) + + def __post_init__(self) -> None: + assert self.name in _SUPPORTED_HASHES + + @classmethod + @functools.lru_cache(maxsize=None) + def find_hash_url_fragment(cls, url: str) -> Optional["LinkHash"]: + """Search a string for a checksum algorithm name and encoded output value.""" + match = cls._hash_url_fragment_re.search(url) + if match is None: + return None + name, value = match.groups() + return cls(name=name, value=value) + + def as_dict(self) -> Dict[str, str]: + return {self.name: self.value} + + def as_hashes(self) -> Hashes: + """Return a Hashes instance which checks only for the current hash.""" + return Hashes({self.name: [self.value]}) + + def is_hash_allowed(self, hashes: Optional[Hashes]) -> bool: + """ + Return True if the current hash is allowed by `hashes`. + """ + if hashes is None: + return False + return hashes.is_hash_allowed(self.name, hex_digest=self.value) + + +@dataclass(frozen=True) +class MetadataFile: + """Information about a core metadata file associated with a distribution.""" + + hashes: Optional[Dict[str, str]] + + def __post_init__(self) -> None: + if self.hashes is not None: + assert all(name in _SUPPORTED_HASHES for name in self.hashes) + + +def supported_hashes(hashes: Optional[Dict[str, str]]) -> Optional[Dict[str, str]]: + # Remove any unsupported hash types from the mapping. If this leaves no + # supported hashes, return None + if hashes is None: + return None + hashes = {n: v for n, v in hashes.items() if n in _SUPPORTED_HASHES} + if not hashes: + return None + return hashes + + +def _clean_url_path_part(part: str) -> str: + """ + Clean a "part" of a URL path (i.e. after splitting on "@" characters). + """ + # We unquote prior to quoting to make sure nothing is double quoted. + return urllib.parse.quote(urllib.parse.unquote(part)) + + +def _clean_file_url_path(part: str) -> str: + """ + Clean the first part of a URL path that corresponds to a local + filesystem path (i.e. the first part after splitting on "@" characters). + """ + # We unquote prior to quoting to make sure nothing is double quoted. + # Also, on Windows the path part might contain a drive letter which + # should not be quoted. On Linux where drive letters do not + # exist, the colon should be quoted. We rely on urllib.request + # to do the right thing here. + return urllib.request.pathname2url(urllib.request.url2pathname(part)) + + +# percent-encoded: / +_reserved_chars_re = re.compile("(@|%2F)", re.IGNORECASE) + + +def _clean_url_path(path: str, is_local_path: bool) -> str: + """ + Clean the path portion of a URL. + """ + if is_local_path: + clean_func = _clean_file_url_path + else: + clean_func = _clean_url_path_part + + # Split on the reserved characters prior to cleaning so that + # revision strings in VCS URLs are properly preserved. + parts = _reserved_chars_re.split(path) + + cleaned_parts = [] + for to_clean, reserved in pairwise(itertools.chain(parts, [""])): + cleaned_parts.append(clean_func(to_clean)) + # Normalize %xx escapes (e.g. %2f -> %2F) + cleaned_parts.append(reserved.upper()) + + return "".join(cleaned_parts) + + +def _ensure_quoted_url(url: str) -> str: + """ + Make sure a link is fully quoted. + For example, if ' ' occurs in the URL, it will be replaced with "%20", + and without double-quoting other characters. + """ + # Split the URL into parts according to the general structure + # `scheme://netloc/path;parameters?query#fragment`. + result = urllib.parse.urlparse(url) + # If the netloc is empty, then the URL refers to a local filesystem path. + is_local_path = not result.netloc + path = _clean_url_path(result.path, is_local_path=is_local_path) + return urllib.parse.urlunparse(result._replace(path=path)) + + +class Link(KeyBasedCompareMixin): + """Represents a parsed link from a Package Index's simple URL""" + + __slots__ = [ + "_parsed_url", + "_url", + "_hashes", + "comes_from", + "requires_python", + "yanked_reason", + "metadata_file_data", + "cache_link_parsing", + "egg_fragment", + ] + + def __init__( + self, + url: str, + comes_from: Optional[Union[str, "IndexContent"]] = None, + requires_python: Optional[str] = None, + yanked_reason: Optional[str] = None, + metadata_file_data: Optional[MetadataFile] = None, + cache_link_parsing: bool = True, + hashes: Optional[Mapping[str, str]] = None, + ) -> None: + """ + :param url: url of the resource pointed to (href of the link) + :param comes_from: instance of IndexContent where the link was found, + or string. + :param requires_python: String containing the `Requires-Python` + metadata field, specified in PEP 345. This may be specified by + a data-requires-python attribute in the HTML link tag, as + described in PEP 503. + :param yanked_reason: the reason the file has been yanked, if the + file has been yanked, or None if the file hasn't been yanked. + This is the value of the "data-yanked" attribute, if present, in + a simple repository HTML link. If the file has been yanked but + no reason was provided, this should be the empty string. See + PEP 592 for more information and the specification. + :param metadata_file_data: the metadata attached to the file, or None if + no such metadata is provided. This argument, if not None, indicates + that a separate metadata file exists, and also optionally supplies + hashes for that file. + :param cache_link_parsing: A flag that is used elsewhere to determine + whether resources retrieved from this link should be cached. PyPI + URLs should generally have this set to False, for example. + :param hashes: A mapping of hash names to digests to allow us to + determine the validity of a download. + """ + + # The comes_from, requires_python, and metadata_file_data arguments are + # only used by classmethods of this class, and are not used in client + # code directly. + + # url can be a UNC windows share + if url.startswith("\\\\"): + url = path_to_url(url) + + self._parsed_url = urllib.parse.urlsplit(url) + # Store the url as a private attribute to prevent accidentally + # trying to set a new value. + self._url = url + + link_hash = LinkHash.find_hash_url_fragment(url) + hashes_from_link = {} if link_hash is None else link_hash.as_dict() + if hashes is None: + self._hashes = hashes_from_link + else: + self._hashes = {**hashes, **hashes_from_link} + + self.comes_from = comes_from + self.requires_python = requires_python if requires_python else None + self.yanked_reason = yanked_reason + self.metadata_file_data = metadata_file_data + + super().__init__(key=url, defining_class=Link) + + self.cache_link_parsing = cache_link_parsing + self.egg_fragment = self._egg_fragment() + + @classmethod + def from_json( + cls, + file_data: Dict[str, Any], + page_url: str, + ) -> Optional["Link"]: + """ + Convert an pypi json document from a simple repository page into a Link. + """ + file_url = file_data.get("url") + if file_url is None: + return None + + url = _ensure_quoted_url(urllib.parse.urljoin(page_url, file_url)) + pyrequire = file_data.get("requires-python") + yanked_reason = file_data.get("yanked") + hashes = file_data.get("hashes", {}) + + # PEP 714: Indexes must use the name core-metadata, but + # clients should support the old name as a fallback for compatibility. + metadata_info = file_data.get("core-metadata") + if metadata_info is None: + metadata_info = file_data.get("dist-info-metadata") + + # The metadata info value may be a boolean, or a dict of hashes. + if isinstance(metadata_info, dict): + # The file exists, and hashes have been supplied + metadata_file_data = MetadataFile(supported_hashes(metadata_info)) + elif metadata_info: + # The file exists, but there are no hashes + metadata_file_data = MetadataFile(None) + else: + # False or not present: the file does not exist + metadata_file_data = None + + # The Link.yanked_reason expects an empty string instead of a boolean. + if yanked_reason and not isinstance(yanked_reason, str): + yanked_reason = "" + # The Link.yanked_reason expects None instead of False. + elif not yanked_reason: + yanked_reason = None + + return cls( + url, + comes_from=page_url, + requires_python=pyrequire, + yanked_reason=yanked_reason, + hashes=hashes, + metadata_file_data=metadata_file_data, + ) + + @classmethod + def from_element( + cls, + anchor_attribs: Dict[str, Optional[str]], + page_url: str, + base_url: str, + ) -> Optional["Link"]: + """ + Convert an anchor element's attributes in a simple repository page to a Link. + """ + href = anchor_attribs.get("href") + if not href: + return None + + url = _ensure_quoted_url(urllib.parse.urljoin(base_url, href)) + pyrequire = anchor_attribs.get("data-requires-python") + yanked_reason = anchor_attribs.get("data-yanked") + + # PEP 714: Indexes must use the name data-core-metadata, but + # clients should support the old name as a fallback for compatibility. + metadata_info = anchor_attribs.get("data-core-metadata") + if metadata_info is None: + metadata_info = anchor_attribs.get("data-dist-info-metadata") + # The metadata info value may be the string "true", or a string of + # the form "hashname=hashval" + if metadata_info == "true": + # The file exists, but there are no hashes + metadata_file_data = MetadataFile(None) + elif metadata_info is None: + # The file does not exist + metadata_file_data = None + else: + # The file exists, and hashes have been supplied + hashname, sep, hashval = metadata_info.partition("=") + if sep == "=": + metadata_file_data = MetadataFile(supported_hashes({hashname: hashval})) + else: + # Error - data is wrong. Treat as no hashes supplied. + logger.debug( + "Index returned invalid data-dist-info-metadata value: %s", + metadata_info, + ) + metadata_file_data = MetadataFile(None) + + return cls( + url, + comes_from=page_url, + requires_python=pyrequire, + yanked_reason=yanked_reason, + metadata_file_data=metadata_file_data, + ) + + def __str__(self) -> str: + if self.requires_python: + rp = f" (requires-python:{self.requires_python})" + else: + rp = "" + if self.comes_from: + return f"{redact_auth_from_url(self._url)} (from {self.comes_from}){rp}" + else: + return redact_auth_from_url(str(self._url)) + + def __repr__(self) -> str: + return f"" + + @property + def url(self) -> str: + return self._url + + @property + def filename(self) -> str: + path = self.path.rstrip("/") + name = posixpath.basename(path) + if not name: + # Make sure we don't leak auth information if the netloc + # includes a username and password. + netloc, user_pass = split_auth_from_netloc(self.netloc) + return netloc + + name = urllib.parse.unquote(name) + assert name, f"URL {self._url!r} produced no filename" + return name + + @property + def file_path(self) -> str: + return url_to_path(self.url) + + @property + def scheme(self) -> str: + return self._parsed_url.scheme + + @property + def netloc(self) -> str: + """ + This can contain auth information. + """ + return self._parsed_url.netloc + + @property + def path(self) -> str: + return urllib.parse.unquote(self._parsed_url.path) + + def splitext(self) -> Tuple[str, str]: + return splitext(posixpath.basename(self.path.rstrip("/"))) + + @property + def ext(self) -> str: + return self.splitext()[1] + + @property + def url_without_fragment(self) -> str: + scheme, netloc, path, query, fragment = self._parsed_url + return urllib.parse.urlunsplit((scheme, netloc, path, query, "")) + + _egg_fragment_re = re.compile(r"[#&]egg=([^&]*)") + + # Per PEP 508. + _project_name_re = re.compile( + r"^([A-Z0-9]|[A-Z0-9][A-Z0-9._-]*[A-Z0-9])$", re.IGNORECASE + ) + + def _egg_fragment(self) -> Optional[str]: + match = self._egg_fragment_re.search(self._url) + if not match: + return None + + # An egg fragment looks like a PEP 508 project name, along with + # an optional extras specifier. Anything else is invalid. + project_name = match.group(1) + if not self._project_name_re.match(project_name): + deprecated( + reason=f"{self} contains an egg fragment with a non-PEP 508 name", + replacement="to use the req @ url syntax, and remove the egg fragment", + gone_in="25.0", + issue=11617, + ) + + return project_name + + _subdirectory_fragment_re = re.compile(r"[#&]subdirectory=([^&]*)") + + @property + def subdirectory_fragment(self) -> Optional[str]: + match = self._subdirectory_fragment_re.search(self._url) + if not match: + return None + return match.group(1) + + def metadata_link(self) -> Optional["Link"]: + """Return a link to the associated core metadata file (if any).""" + if self.metadata_file_data is None: + return None + metadata_url = f"{self.url_without_fragment}.metadata" + if self.metadata_file_data.hashes is None: + return Link(metadata_url) + return Link(metadata_url, hashes=self.metadata_file_data.hashes) + + def as_hashes(self) -> Hashes: + return Hashes({k: [v] for k, v in self._hashes.items()}) + + @property + def hash(self) -> Optional[str]: + return next(iter(self._hashes.values()), None) + + @property + def hash_name(self) -> Optional[str]: + return next(iter(self._hashes), None) + + @property + def show_url(self) -> str: + return posixpath.basename(self._url.split("#", 1)[0].split("?", 1)[0]) + + @property + def is_file(self) -> bool: + return self.scheme == "file" + + def is_existing_dir(self) -> bool: + return self.is_file and os.path.isdir(self.file_path) + + @property + def is_wheel(self) -> bool: + return self.ext == WHEEL_EXTENSION + + @property + def is_vcs(self) -> bool: + from pip._internal.vcs import vcs + + return self.scheme in vcs.all_schemes + + @property + def is_yanked(self) -> bool: + return self.yanked_reason is not None + + @property + def has_hash(self) -> bool: + return bool(self._hashes) + + def is_hash_allowed(self, hashes: Optional[Hashes]) -> bool: + """ + Return True if the link has a hash and it is allowed by `hashes`. + """ + if hashes is None: + return False + return any(hashes.is_hash_allowed(k, v) for k, v in self._hashes.items()) + + +class _CleanResult(NamedTuple): + """Convert link for equivalency check. + + This is used in the resolver to check whether two URL-specified requirements + likely point to the same distribution and can be considered equivalent. This + equivalency logic avoids comparing URLs literally, which can be too strict + (e.g. "a=1&b=2" vs "b=2&a=1") and produce conflicts unexpecting to users. + + Currently this does three things: + + 1. Drop the basic auth part. This is technically wrong since a server can + serve different content based on auth, but if it does that, it is even + impossible to guarantee two URLs without auth are equivalent, since + the user can input different auth information when prompted. So the + practical solution is to assume the auth doesn't affect the response. + 2. Parse the query to avoid the ordering issue. Note that ordering under the + same key in the query are NOT cleaned; i.e. "a=1&a=2" and "a=2&a=1" are + still considered different. + 3. Explicitly drop most of the fragment part, except ``subdirectory=`` and + hash values, since it should have no impact the downloaded content. Note + that this drops the "egg=" part historically used to denote the requested + project (and extras), which is wrong in the strictest sense, but too many + people are supplying it inconsistently to cause superfluous resolution + conflicts, so we choose to also ignore them. + """ + + parsed: urllib.parse.SplitResult + query: Dict[str, List[str]] + subdirectory: str + hashes: Dict[str, str] + + +def _clean_link(link: Link) -> _CleanResult: + parsed = link._parsed_url + netloc = parsed.netloc.rsplit("@", 1)[-1] + # According to RFC 8089, an empty host in file: means localhost. + if parsed.scheme == "file" and not netloc: + netloc = "localhost" + fragment = urllib.parse.parse_qs(parsed.fragment) + if "egg" in fragment: + logger.debug("Ignoring egg= fragment in %s", link) + try: + # If there are multiple subdirectory values, use the first one. + # This matches the behavior of Link.subdirectory_fragment. + subdirectory = fragment["subdirectory"][0] + except (IndexError, KeyError): + subdirectory = "" + # If there are multiple hash values under the same algorithm, use the + # first one. This matches the behavior of Link.hash_value. + hashes = {k: fragment[k][0] for k in _SUPPORTED_HASHES if k in fragment} + return _CleanResult( + parsed=parsed._replace(netloc=netloc, query="", fragment=""), + query=urllib.parse.parse_qs(parsed.query), + subdirectory=subdirectory, + hashes=hashes, + ) + + +@functools.lru_cache(maxsize=None) +def links_equivalent(link1: Link, link2: Link) -> bool: + return _clean_link(link1) == _clean_link(link2) diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/models/scheme.py b/.venv/lib/python3.12/site-packages/pip/_internal/models/scheme.py new file mode 100644 index 00000000..f51190ac --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_internal/models/scheme.py @@ -0,0 +1,31 @@ +""" +For types associated with installation schemes. + +For a general overview of available schemes and their context, see +https://docs.python.org/3/install/index.html#alternate-installation. +""" + + +SCHEME_KEYS = ["platlib", "purelib", "headers", "scripts", "data"] + + +class Scheme: + """A Scheme holds paths which are used as the base directories for + artifacts associated with a Python package. + """ + + __slots__ = SCHEME_KEYS + + def __init__( + self, + platlib: str, + purelib: str, + headers: str, + scripts: str, + data: str, + ) -> None: + self.platlib = platlib + self.purelib = purelib + self.headers = headers + self.scripts = scripts + self.data = data diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/models/search_scope.py b/.venv/lib/python3.12/site-packages/pip/_internal/models/search_scope.py new file mode 100644 index 00000000..fe61e811 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_internal/models/search_scope.py @@ -0,0 +1,132 @@ +import itertools +import logging +import os +import posixpath +import urllib.parse +from typing import List + +from pip._vendor.packaging.utils import canonicalize_name + +from pip._internal.models.index import PyPI +from pip._internal.utils.compat import has_tls +from pip._internal.utils.misc import normalize_path, redact_auth_from_url + +logger = logging.getLogger(__name__) + + +class SearchScope: + + """ + Encapsulates the locations that pip is configured to search. + """ + + __slots__ = ["find_links", "index_urls", "no_index"] + + @classmethod + def create( + cls, + find_links: List[str], + index_urls: List[str], + no_index: bool, + ) -> "SearchScope": + """ + Create a SearchScope object after normalizing the `find_links`. + """ + # Build find_links. If an argument starts with ~, it may be + # a local file relative to a home directory. So try normalizing + # it and if it exists, use the normalized version. + # This is deliberately conservative - it might be fine just to + # blindly normalize anything starting with a ~... + built_find_links: List[str] = [] + for link in find_links: + if link.startswith("~"): + new_link = normalize_path(link) + if os.path.exists(new_link): + link = new_link + built_find_links.append(link) + + # If we don't have TLS enabled, then WARN if anyplace we're looking + # relies on TLS. + if not has_tls(): + for link in itertools.chain(index_urls, built_find_links): + parsed = urllib.parse.urlparse(link) + if parsed.scheme == "https": + logger.warning( + "pip is configured with locations that require " + "TLS/SSL, however the ssl module in Python is not " + "available." + ) + break + + return cls( + find_links=built_find_links, + index_urls=index_urls, + no_index=no_index, + ) + + def __init__( + self, + find_links: List[str], + index_urls: List[str], + no_index: bool, + ) -> None: + self.find_links = find_links + self.index_urls = index_urls + self.no_index = no_index + + def get_formatted_locations(self) -> str: + lines = [] + redacted_index_urls = [] + if self.index_urls and self.index_urls != [PyPI.simple_url]: + for url in self.index_urls: + redacted_index_url = redact_auth_from_url(url) + + # Parse the URL + purl = urllib.parse.urlsplit(redacted_index_url) + + # URL is generally invalid if scheme and netloc is missing + # there are issues with Python and URL parsing, so this test + # is a bit crude. See bpo-20271, bpo-23505. Python doesn't + # always parse invalid URLs correctly - it should raise + # exceptions for malformed URLs + if not purl.scheme and not purl.netloc: + logger.warning( + 'The index url "%s" seems invalid, please provide a scheme.', + redacted_index_url, + ) + + redacted_index_urls.append(redacted_index_url) + + lines.append( + "Looking in indexes: {}".format(", ".join(redacted_index_urls)) + ) + + if self.find_links: + lines.append( + "Looking in links: {}".format( + ", ".join(redact_auth_from_url(url) for url in self.find_links) + ) + ) + return "\n".join(lines) + + def get_index_urls_locations(self, project_name: str) -> List[str]: + """Returns the locations found via self.index_urls + + Checks the url_name on the main (first in the list) index and + use this url_name to produce all locations + """ + + def mkurl_pypi_url(url: str) -> str: + loc = posixpath.join( + url, urllib.parse.quote(canonicalize_name(project_name)) + ) + # For maximum compatibility with easy_install, ensure the path + # ends in a trailing slash. Although this isn't in the spec + # (and PyPI can handle it without the slash) some other index + # implementations might break if they relied on easy_install's + # behavior. + if not loc.endswith("/"): + loc = loc + "/" + return loc + + return [mkurl_pypi_url(url) for url in self.index_urls] diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/models/selection_prefs.py b/.venv/lib/python3.12/site-packages/pip/_internal/models/selection_prefs.py new file mode 100644 index 00000000..977bc4ca --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_internal/models/selection_prefs.py @@ -0,0 +1,51 @@ +from typing import Optional + +from pip._internal.models.format_control import FormatControl + + +class SelectionPreferences: + """ + Encapsulates the candidate selection preferences for downloading + and installing files. + """ + + __slots__ = [ + "allow_yanked", + "allow_all_prereleases", + "format_control", + "prefer_binary", + "ignore_requires_python", + ] + + # Don't include an allow_yanked default value to make sure each call + # site considers whether yanked releases are allowed. This also causes + # that decision to be made explicit in the calling code, which helps + # people when reading the code. + def __init__( + self, + allow_yanked: bool, + allow_all_prereleases: bool = False, + format_control: Optional[FormatControl] = None, + prefer_binary: bool = False, + ignore_requires_python: Optional[bool] = None, + ) -> None: + """Create a SelectionPreferences object. + + :param allow_yanked: Whether files marked as yanked (in the sense + of PEP 592) are permitted to be candidates for install. + :param format_control: A FormatControl object or None. Used to control + the selection of source packages / binary packages when consulting + the index and links. + :param prefer_binary: Whether to prefer an old, but valid, binary + dist over a new source dist. + :param ignore_requires_python: Whether to ignore incompatible + "Requires-Python" values in links. Defaults to False. + """ + if ignore_requires_python is None: + ignore_requires_python = False + + self.allow_yanked = allow_yanked + self.allow_all_prereleases = allow_all_prereleases + self.format_control = format_control + self.prefer_binary = prefer_binary + self.ignore_requires_python = ignore_requires_python diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/models/target_python.py b/.venv/lib/python3.12/site-packages/pip/_internal/models/target_python.py new file mode 100644 index 00000000..67ea5da7 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_internal/models/target_python.py @@ -0,0 +1,122 @@ +import sys +from typing import List, Optional, Set, Tuple + +from pip._vendor.packaging.tags import Tag + +from pip._internal.utils.compatibility_tags import get_supported, version_info_to_nodot +from pip._internal.utils.misc import normalize_version_info + + +class TargetPython: + + """ + Encapsulates the properties of a Python interpreter one is targeting + for a package install, download, etc. + """ + + __slots__ = [ + "_given_py_version_info", + "abis", + "implementation", + "platforms", + "py_version", + "py_version_info", + "_valid_tags", + "_valid_tags_set", + ] + + def __init__( + self, + platforms: Optional[List[str]] = None, + py_version_info: Optional[Tuple[int, ...]] = None, + abis: Optional[List[str]] = None, + implementation: Optional[str] = None, + ) -> None: + """ + :param platforms: A list of strings or None. If None, searches for + packages that are supported by the current system. Otherwise, will + find packages that can be built on the platforms passed in. These + packages will only be downloaded for distribution: they will + not be built locally. + :param py_version_info: An optional tuple of ints representing the + Python version information to use (e.g. `sys.version_info[:3]`). + This can have length 1, 2, or 3 when provided. + :param abis: A list of strings or None. This is passed to + compatibility_tags.py's get_supported() function as is. + :param implementation: A string or None. This is passed to + compatibility_tags.py's get_supported() function as is. + """ + # Store the given py_version_info for when we call get_supported(). + self._given_py_version_info = py_version_info + + if py_version_info is None: + py_version_info = sys.version_info[:3] + else: + py_version_info = normalize_version_info(py_version_info) + + py_version = ".".join(map(str, py_version_info[:2])) + + self.abis = abis + self.implementation = implementation + self.platforms = platforms + self.py_version = py_version + self.py_version_info = py_version_info + + # This is used to cache the return value of get_(un)sorted_tags. + self._valid_tags: Optional[List[Tag]] = None + self._valid_tags_set: Optional[Set[Tag]] = None + + def format_given(self) -> str: + """ + Format the given, non-None attributes for display. + """ + display_version = None + if self._given_py_version_info is not None: + display_version = ".".join( + str(part) for part in self._given_py_version_info + ) + + key_values = [ + ("platforms", self.platforms), + ("version_info", display_version), + ("abis", self.abis), + ("implementation", self.implementation), + ] + return " ".join( + f"{key}={value!r}" for key, value in key_values if value is not None + ) + + def get_sorted_tags(self) -> List[Tag]: + """ + Return the supported PEP 425 tags to check wheel candidates against. + + The tags are returned in order of preference (most preferred first). + """ + if self._valid_tags is None: + # Pass versions=None if no py_version_info was given since + # versions=None uses special default logic. + py_version_info = self._given_py_version_info + if py_version_info is None: + version = None + else: + version = version_info_to_nodot(py_version_info) + + tags = get_supported( + version=version, + platforms=self.platforms, + abis=self.abis, + impl=self.implementation, + ) + self._valid_tags = tags + + return self._valid_tags + + def get_unsorted_tags(self) -> Set[Tag]: + """Exactly the same as get_sorted_tags, but returns a set. + + This is important for performance. + """ + if self._valid_tags_set is None: + self._valid_tags_set = set(self.get_sorted_tags()) + + return self._valid_tags_set diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/models/wheel.py b/.venv/lib/python3.12/site-packages/pip/_internal/models/wheel.py new file mode 100644 index 00000000..a5dc12bd --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_internal/models/wheel.py @@ -0,0 +1,92 @@ +"""Represents a wheel file and provides access to the various parts of the +name that have meaning. +""" +import re +from typing import Dict, Iterable, List + +from pip._vendor.packaging.tags import Tag + +from pip._internal.exceptions import InvalidWheelFilename + + +class Wheel: + """A wheel file""" + + wheel_file_re = re.compile( + r"""^(?P(?P[^\s-]+?)-(?P[^\s-]*?)) + ((-(?P\d[^-]*?))?-(?P[^\s-]+?)-(?P[^\s-]+?)-(?P[^\s-]+?) + \.whl|\.dist-info)$""", + re.VERBOSE, + ) + + def __init__(self, filename: str) -> None: + """ + :raises InvalidWheelFilename: when the filename is invalid for a wheel + """ + wheel_info = self.wheel_file_re.match(filename) + if not wheel_info: + raise InvalidWheelFilename(f"{filename} is not a valid wheel filename.") + self.filename = filename + self.name = wheel_info.group("name").replace("_", "-") + # we'll assume "_" means "-" due to wheel naming scheme + # (https://github.com/pypa/pip/issues/1150) + self.version = wheel_info.group("ver").replace("_", "-") + self.build_tag = wheel_info.group("build") + self.pyversions = wheel_info.group("pyver").split(".") + self.abis = wheel_info.group("abi").split(".") + self.plats = wheel_info.group("plat").split(".") + + # All the tag combinations from this file + self.file_tags = { + Tag(x, y, z) for x in self.pyversions for y in self.abis for z in self.plats + } + + def get_formatted_file_tags(self) -> List[str]: + """Return the wheel's tags as a sorted list of strings.""" + return sorted(str(tag) for tag in self.file_tags) + + def support_index_min(self, tags: List[Tag]) -> int: + """Return the lowest index that one of the wheel's file_tag combinations + achieves in the given list of supported tags. + + For example, if there are 8 supported tags and one of the file tags + is first in the list, then return 0. + + :param tags: the PEP 425 tags to check the wheel against, in order + with most preferred first. + + :raises ValueError: If none of the wheel's file tags match one of + the supported tags. + """ + try: + return next(i for i, t in enumerate(tags) if t in self.file_tags) + except StopIteration: + raise ValueError() + + def find_most_preferred_tag( + self, tags: List[Tag], tag_to_priority: Dict[Tag, int] + ) -> int: + """Return the priority of the most preferred tag that one of the wheel's file + tag combinations achieves in the given list of supported tags using the given + tag_to_priority mapping, where lower priorities are more-preferred. + + This is used in place of support_index_min in some cases in order to avoid + an expensive linear scan of a large list of tags. + + :param tags: the PEP 425 tags to check the wheel against. + :param tag_to_priority: a mapping from tag to priority of that tag, where + lower is more preferred. + + :raises ValueError: If none of the wheel's file tags match one of + the supported tags. + """ + return min( + tag_to_priority[tag] for tag in self.file_tags if tag in tag_to_priority + ) + + def supported(self, tags: Iterable[Tag]) -> bool: + """Return whether the wheel is compatible with one of the given tags. + + :param tags: the PEP 425 tags to check the wheel against. + """ + return not self.file_tags.isdisjoint(tags) diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/network/__init__.py b/.venv/lib/python3.12/site-packages/pip/_internal/network/__init__.py new file mode 100644 index 00000000..b51bde91 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_internal/network/__init__.py @@ -0,0 +1,2 @@ +"""Contains purely network-related utilities. +""" diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/network/__pycache__/__init__.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_internal/network/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..cfcabddb6db4acc1f157db381b5dad7af5b9778d GIT binary patch literal 330 zcmX|7u};G<5RFR(Ri*wz*9tY)26aF}NC+4hU}Isi9NTJ4lCxzyslt!&4Geq<6JlfK z2N2ylaghqQ+`V^qPw(z+G8rcnHy`gsM)|7;f5G;}c0|QbSAKoD&dHt7#KWWunm`9pBB^=Mm@1O3q)BZLhd{g&HGBxDVO~$hAk6(teNy zTv^%F8Y9sL%MP+dwt{T6I9;ytc`bZtqL%SOwF0G9w?rtr!E0O_)bQWu&f7@NXMl!=_DuG@{yYO9(`pZh~{-#;bv QKl?sljQtE48~P!^U+ns3ssI20 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/network/__pycache__/auth.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_internal/network/__pycache__/auth.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..e386f7b46e5a357df17f51e11c57a533e8274a07 GIT binary patch literal 22072 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 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/network/__pycache__/download.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_internal/network/__pycache__/download.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..0cd3dd7557fd02c8e99f638d03277ebd434ffa51 GIT binary patch literal 8629 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 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/network/__pycache__/session.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_internal/network/__pycache__/session.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..e82327c562e31806af9811725e5153fdfe296625 GIT binary patch literal 18850 zcmc(H32+?OnO^stJ@?=Sad7|;B!;+1P^2h|Hwcp80nh>{OCza9!|4V&;2hZQ0ZBju zo7!k&utG;<);6KFT!!tfG8oY@Hnm%!tG0GkYrCRkH`y5iT8vvzOlRe))h4L|1vrwK zWApv5r)LH*q|zQ$dE~tF@AqE68cewMM z$OSl&7Y$K9U|^{+U}UK&U}C8`U}mW$U}32>U}dQg5Ljvp*jQ>0*jefbI9TcoI9cin zxLN86c#s;S-dIVXBvu+IjgBRvD;_RRyYI)q(2Rrog6HO`wLSd6}ZM zvARHAtUgfB%I0W8Y;(ZJ@|I|0tSQhGYYsHCvK8emffkk*qFZCz0^4G(fmT+wMg6hu zf$c1BkG93y1MMvDh<3y}1D!1IjCRF#1a`2zE4nk*9q49xcXU_miNF&q?}_e??FsB* zd2jT|*xtZimM@7u726ls$MU7or(^pA`&qs$dLVW%a4>c#aEO)5qlaTh0!MgGDv@b@ zDxybYJ%Jw9RvA4O>kahsoPm=pBRBOeE2Pqiw|K1-I4NzC`tYwxs*z4feZz)LXrSM) zk>bE<^x+wq)}V`Hu}bQ^SN#@tp90Ta3h6XGDfNpr`;m&ZfdR2jIyY<( z>t8bkzJNSN5gU+y#=xE6#Lcg9qEBjm%SioT#6ecuh}tH-_rMUVYewA`X-H~$%anuN z!s=U4zZLbqeEnutzYX=R(w2PB=UJ^EwcDl5`Pye$Z5wLarMi)SqxD=I=OLdPH~2dy zE}e^v4oZp=NyL4jxad>HMn@BJG7`V&3nxUW9dSGvio~fR6pi{uBcmP4s1%M2N5b~F zl)RddFZ*Qax5gwTNwC9_i(_&qsdsllx)iz+Nywe{4`~wpe!J=#dj4E*u;*lN&*{GY z6RPn@d|Wjhi-eP^?SvGU@Nhy_O=luXQnj89jgDeuRTvnhE<;gO7^Jb{VM#R)jg3Z; zoR6c$Z%~EYEELr`CP$-@3%mThTGkT^Uy^$84ss%TL=254B^j_K$9j(+Ie%s-cy3_e z%+WIgJ*QR2(U2nP5WMO*IW%-mFB(+OIawMF$&&bt_NuDzjHHYv;) zCWBJ^N<>b?V^W-Y#mdAlBP~CRw#czW44Z?gN5V(Ol9y2L8Vn6f$0JdRy*VnZmqJP~ z8C8%Kuqt612uo0LVJs3AgIKEIu$+hmv6sb{ zbdBcXp!Yf(iia*rvTBK3j3;DT4(+Pml9aq8$-YR^7fmEC zE52ytvP5^v7g2ojSe#w6vA773p1w}@WH>)uZW_C2Du)rB2A;aZrMQKQLb9@ACaP2ZjVLOzwzLv2%xNiicv7LVfsrkMDKG z;>oUX*Lel!v+IH+$Hh)udL?|R>sTT@MyC?hIFsXD-8;H>cXjXH@zl=U7dm1g`En$Q z<9|fF62g5I&!R$1T#fg}FGk{0SH3+sDknw&*VTCi)9Atx?HV0VUP{Dwb?)r$!i|zT zMnmDtIAcl|R;nu)!SR!U3%YXXr%TcBSLf*XW840Vz#-R0<%1L23I}P0gW*W$es