From 955130fb542ef71cc5a57140a2247f4e2819fe00 Mon Sep 17 00:00:00 2001 From: manoraga Date: Thu, 6 Aug 2026 13:56:09 +0300 Subject: [PATCH] feat: initial commit for scud_context_api --- 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 -> 682 bytes .../pip/__pycache__/__main__.cpython-312.pyc | Bin 0 -> 838 bytes .../__pip-runner__.cpython-312.pyc | Bin 0 -> 2201 bytes .../site-packages/pip/_internal/__init__.py | 18 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 784 bytes .../__pycache__/build_env.cpython-312.pyc | Bin 0 -> 14291 bytes .../__pycache__/cache.cpython-312.pyc | Bin 0 -> 12662 bytes .../__pycache__/configuration.cpython-312.pyc | Bin 0 -> 17663 bytes .../__pycache__/exceptions.cpython-312.pyc | Bin 0 -> 33281 bytes .../__pycache__/main.cpython-312.pyc | Bin 0 -> 667 bytes .../__pycache__/pyproject.cpython-312.pyc | Bin 0 -> 4968 bytes .../self_outdated_check.cpython-312.pyc | Bin 0 -> 10549 bytes .../__pycache__/wheel_builder.cpython-312.pyc | Bin 0 -> 13646 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 -> 275 bytes .../autocompletion.cpython-312.pyc | Bin 0 -> 8462 bytes .../__pycache__/base_command.cpython-312.pyc | Bin 0 -> 10452 bytes .../__pycache__/cmdoptions.cpython-312.pyc | Bin 0 -> 30371 bytes .../command_context.cpython-312.pyc | Bin 0 -> 1778 bytes .../cli/__pycache__/main.cpython-312.pyc | Bin 0 -> 2295 bytes .../__pycache__/main_parser.cpython-312.pyc | Bin 0 -> 4902 bytes .../cli/__pycache__/parser.cpython-312.pyc | Bin 0 -> 15019 bytes .../__pycache__/progress_bars.cpython-312.pyc | Bin 0 -> 2617 bytes .../__pycache__/req_command.cpython-312.pyc | Bin 0 -> 18849 bytes .../cli/__pycache__/spinners.cpython-312.pyc | Bin 0 -> 7837 bytes .../__pycache__/status_codes.cpython-312.pyc | Bin 0 -> 372 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 -> 3999 bytes .../__pycache__/cache.cpython-312.pyc | Bin 0 -> 9708 bytes .../__pycache__/check.cpython-312.pyc | Bin 0 -> 2087 bytes .../__pycache__/completion.cpython-312.pyc | Bin 0 -> 5189 bytes .../__pycache__/configuration.cpython-312.pyc | Bin 0 -> 13209 bytes .../__pycache__/debug.cpython-312.pyc | Bin 0 -> 10158 bytes .../__pycache__/download.cpython-312.pyc | Bin 0 -> 7586 bytes .../__pycache__/freeze.cpython-312.pyc | Bin 0 -> 4413 bytes .../commands/__pycache__/hash.cpython-312.pyc | Bin 0 -> 2980 bytes .../commands/__pycache__/help.cpython-312.pyc | Bin 0 -> 1670 bytes .../__pycache__/index.cpython-312.pyc | Bin 0 -> 6717 bytes .../__pycache__/inspect.cpython-312.pyc | Bin 0 -> 3972 bytes .../__pycache__/install.cpython-312.pyc | Bin 0 -> 28910 bytes .../commands/__pycache__/list.cpython-312.pyc | Bin 0 -> 15653 bytes .../__pycache__/search.cpython-312.pyc | Bin 0 -> 7618 bytes .../commands/__pycache__/show.cpython-312.pyc | Bin 0 -> 9725 bytes .../__pycache__/uninstall.cpython-312.pyc | Bin 0 -> 4723 bytes .../__pycache__/wheel.cpython-312.pyc | Bin 0 -> 8953 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 -> 938 bytes .../__pycache__/base.cpython-312.pyc | Bin 0 -> 2859 bytes .../__pycache__/installed.cpython-312.pyc | Bin 0 -> 1697 bytes .../__pycache__/sdist.cpython-312.pyc | Bin 0 -> 8485 bytes .../__pycache__/wheel.cpython-312.pyc | Bin 0 -> 2245 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 -> 229 bytes .../__pycache__/collector.cpython-312.pyc | Bin 0 -> 21883 bytes .../package_finder.cpython-312.pyc | Bin 0 -> 40732 bytes .../index/__pycache__/sources.cpython-312.pyc | Bin 0 -> 12601 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 -> 16773 bytes .../__pycache__/_distutils.cpython-312.pyc | Bin 0 -> 6853 bytes .../__pycache__/_sysconfig.cpython-312.pyc | Bin 0 -> 8008 bytes .../__pycache__/base.cpython-312.pyc | Bin 0 -> 3778 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 -> 5879 bytes .../__pycache__/_json.cpython-312.pyc | Bin 0 -> 2872 bytes .../metadata/__pycache__/base.cpython-312.pyc | Bin 0 -> 35709 bytes .../__pycache__/pkg_resources.cpython-312.pyc | Bin 0 -> 15787 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 -> 355 bytes .../__pycache__/_compat.cpython-312.pyc | Bin 0 -> 3330 bytes .../__pycache__/_dists.cpython-312.pyc | Bin 0 -> 13422 bytes .../__pycache__/_envs.cpython-312.pyc | Bin 0 -> 11177 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 -> 263 bytes .../__pycache__/candidate.cpython-312.pyc | Bin 0 -> 1902 bytes .../__pycache__/direct_url.cpython-312.pyc | Bin 0 -> 11196 bytes .../format_control.cpython-312.pyc | Bin 0 -> 4224 bytes .../models/__pycache__/index.cpython-312.pyc | Bin 0 -> 1691 bytes .../installation_report.cpython-312.pyc | Bin 0 -> 2269 bytes .../models/__pycache__/link.cpython-312.pyc | Bin 0 -> 25999 bytes .../models/__pycache__/scheme.cpython-312.pyc | Bin 0 -> 1166 bytes .../__pycache__/search_scope.cpython-312.pyc | Bin 0 -> 5085 bytes .../selection_prefs.cpython-312.pyc | Bin 0 -> 1848 bytes .../__pycache__/target_python.cpython-312.pyc | Bin 0 -> 4951 bytes .../models/__pycache__/wheel.cpython-312.pyc | Bin 0 -> 5777 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 -> 251 bytes .../network/__pycache__/auth.cpython-312.pyc | Bin 0 -> 21993 bytes .../network/__pycache__/cache.cpython-312.pyc | Bin 0 -> 6515 bytes .../__pycache__/download.cpython-312.pyc | Bin 0 -> 8550 bytes .../__pycache__/lazy_wheel.cpython-312.pyc | Bin 0 -> 11660 bytes .../__pycache__/session.cpython-312.pyc | Bin 0 -> 18771 bytes .../network/__pycache__/utils.cpython-312.pyc | Bin 0 -> 2250 bytes .../__pycache__/xmlrpc.cpython-312.pyc | Bin 0 -> 2946 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 -> 194 bytes .../__pycache__/check.cpython-312.pyc | Bin 0 -> 7576 bytes .../__pycache__/freeze.cpython-312.pyc | Bin 0 -> 10114 bytes .../__pycache__/prepare.cpython-312.pyc | Bin 0 -> 25744 bytes .../_internal/operations/build/__init__.py | 0 .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 200 bytes .../__pycache__/build_tracker.cpython-312.pyc | Bin 0 -> 7820 bytes .../__pycache__/metadata.cpython-312.pyc | Bin 0 -> 1877 bytes .../metadata_editable.cpython-312.pyc | Bin 0 -> 1911 bytes .../metadata_legacy.cpython-312.pyc | Bin 0 -> 3062 bytes .../build/__pycache__/wheel.cpython-312.pyc | Bin 0 -> 1681 bytes .../wheel_editable.cpython-312.pyc | Bin 0 -> 2022 bytes .../__pycache__/wheel_legacy.cpython-312.pyc | Bin 0 -> 3926 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 -> 263 bytes .../editable_legacy.cpython-312.pyc | Bin 0 -> 1814 bytes .../install/__pycache__/wheel.cpython-312.pyc | Bin 0 -> 33856 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 -> 3740 bytes .../__pycache__/constructors.cpython-312.pyc | Bin 0 -> 21579 bytes .../req/__pycache__/req_file.cpython-312.pyc | Bin 0 -> 21458 bytes .../__pycache__/req_install.cpython-312.pyc | Bin 0 -> 38411 bytes .../req/__pycache__/req_set.cpython-312.pyc | Bin 0 -> 7215 bytes .../__pycache__/req_uninstall.cpython-312.pyc | Bin 0 -> 32974 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 -> 194 bytes .../__pycache__/base.cpython-312.pyc | Bin 0 -> 1182 bytes .../pip/_internal/resolution/base.py | 20 + .../_internal/resolution/legacy/__init__.py | 0 .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 201 bytes .../__pycache__/resolver.cpython-312.pyc | Bin 0 -> 22436 bytes .../_internal/resolution/legacy/resolver.py | 598 ++ .../resolution/resolvelib/__init__.py | 0 .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 205 bytes .../__pycache__/base.cpython-312.pyc | Bin 0 -> 8334 bytes .../__pycache__/candidates.cpython-312.pyc | Bin 0 -> 30395 bytes .../__pycache__/factory.cpython-312.pyc | Bin 0 -> 32111 bytes .../found_candidates.cpython-312.pyc | Bin 0 -> 6205 bytes .../__pycache__/provider.cpython-312.pyc | Bin 0 -> 10375 bytes .../__pycache__/reporter.cpython-312.pyc | Bin 0 -> 4932 bytes .../__pycache__/requirements.cpython-312.pyc | Bin 0 -> 11426 bytes .../__pycache__/resolver.cpython-312.pyc | Bin 0 -> 12348 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 -> 189 bytes .../__pycache__/_jaraco_text.cpython-312.pyc | Bin 0 -> 4530 bytes .../utils/__pycache__/_log.cpython-312.pyc | Bin 0 -> 1860 bytes .../utils/__pycache__/appdirs.cpython-312.pyc | Bin 0 -> 2404 bytes .../utils/__pycache__/compat.cpython-312.pyc | Bin 0 -> 2207 bytes .../compatibility_tags.cpython-312.pyc | Bin 0 -> 5555 bytes .../__pycache__/datetime.cpython-312.pyc | Bin 0 -> 678 bytes .../__pycache__/deprecation.cpython-312.pyc | Bin 0 -> 4180 bytes .../direct_url_helpers.cpython-312.pyc | Bin 0 -> 3557 bytes .../__pycache__/egg_link.cpython-312.pyc | Bin 0 -> 3220 bytes .../__pycache__/encoding.cpython-312.pyc | Bin 0 -> 2152 bytes .../__pycache__/entrypoints.cpython-312.pyc | Bin 0 -> 3987 bytes .../__pycache__/filesystem.cpython-312.pyc | Bin 0 -> 7452 bytes .../__pycache__/filetypes.cpython-312.pyc | Bin 0 -> 1158 bytes .../utils/__pycache__/glibc.cpython-312.pyc | Bin 0 -> 2336 bytes .../utils/__pycache__/hashes.cpython-312.pyc | Bin 0 -> 7548 bytes .../utils/__pycache__/logging.cpython-312.pyc | Bin 0 -> 13551 bytes .../utils/__pycache__/misc.cpython-312.pyc | Bin 0 -> 34115 bytes .../utils/__pycache__/models.cpython-312.pyc | Bin 0 -> 2706 bytes .../__pycache__/packaging.cpython-312.pyc | Bin 0 -> 2577 bytes .../setuptools_build.cpython-312.pyc | Bin 0 -> 4544 bytes .../__pycache__/subprocess.cpython-312.pyc | Bin 0 -> 8712 bytes .../__pycache__/temp_dir.cpython-312.pyc | Bin 0 -> 12056 bytes .../__pycache__/unpacking.cpython-312.pyc | Bin 0 -> 11102 bytes .../utils/__pycache__/urls.cpython-312.pyc | Bin 0 -> 2399 bytes .../__pycache__/virtualenv.cpython-312.pyc | Bin 0 -> 4474 bytes .../utils/__pycache__/wheel.cpython-312.pyc | Bin 0 -> 5920 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 -> 528 bytes .../vcs/__pycache__/bazaar.cpython-312.pyc | Bin 0 -> 5020 bytes .../vcs/__pycache__/git.cpython-312.pyc | Bin 0 -> 18989 bytes .../vcs/__pycache__/mercurial.cpython-312.pyc | Bin 0 -> 7609 bytes .../__pycache__/subversion.cpython-312.pyc | Bin 0 -> 12481 bytes .../versioncontrol.cpython-312.pyc | Bin 0 -> 29007 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 -> 4690 bytes .../_vendor/__pycache__/six.cpython-312.pyc | Bin 0 -> 41267 bytes .../typing_extensions.cpython-312.pyc | Bin 0 -> 122047 bytes .../pip/_vendor/cachecontrol/__init__.py | 28 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 900 bytes .../__pycache__/_cmd.cpython-312.pyc | Bin 0 -> 2644 bytes .../__pycache__/adapter.cpython-312.pyc | Bin 0 -> 6462 bytes .../__pycache__/cache.cpython-312.pyc | Bin 0 -> 3807 bytes .../__pycache__/controller.cpython-312.pyc | Bin 0 -> 16165 bytes .../__pycache__/filewrapper.cpython-312.pyc | Bin 0 -> 4345 bytes .../__pycache__/heuristics.cpython-312.pyc | Bin 0 -> 6692 bytes .../__pycache__/serialize.cpython-312.pyc | Bin 0 -> 6403 bytes .../__pycache__/wrapper.cpython-312.pyc | Bin 0 -> 1672 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 -> 433 bytes .../__pycache__/file_cache.cpython-312.pyc | Bin 0 -> 7708 bytes .../__pycache__/redis_cache.cpython-312.pyc | Bin 0 -> 2736 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 -> 316 bytes .../__pycache__/__main__.cpython-312.pyc | Bin 0 -> 643 bytes .../certifi/__pycache__/core.cpython-312.pyc | Bin 0 -> 3325 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 -> 4566 bytes .../__pycache__/big5freq.cpython-312.pyc | Bin 0 -> 27197 bytes .../__pycache__/big5prober.cpython-312.pyc | Bin 0 -> 1385 bytes .../chardistribution.cpython-312.pyc | Bin 0 -> 9636 bytes .../charsetgroupprober.cpython-312.pyc | Bin 0 -> 4120 bytes .../__pycache__/charsetprober.cpython-312.pyc | Bin 0 -> 5016 bytes .../codingstatemachine.cpython-312.pyc | Bin 0 -> 3876 bytes .../codingstatemachinedict.cpython-312.pyc | Bin 0 -> 787 bytes .../__pycache__/cp949prober.cpython-312.pyc | Bin 0 -> 1394 bytes .../chardet/__pycache__/enums.cpython-312.pyc | Bin 0 -> 2994 bytes .../__pycache__/escprober.cpython-312.pyc | Bin 0 -> 4564 bytes .../chardet/__pycache__/escsm.cpython-312.pyc | Bin 0 -> 15308 bytes .../__pycache__/eucjpprober.cpython-312.pyc | Bin 0 -> 4381 bytes .../__pycache__/euckrfreq.cpython-312.pyc | Bin 0 -> 12080 bytes .../__pycache__/euckrprober.cpython-312.pyc | Bin 0 -> 1388 bytes .../__pycache__/euctwfreq.cpython-312.pyc | Bin 0 -> 27202 bytes .../__pycache__/euctwprober.cpython-312.pyc | Bin 0 -> 1388 bytes .../__pycache__/gb2312freq.cpython-312.pyc | Bin 0 -> 19124 bytes .../__pycache__/gb2312prober.cpython-312.pyc | Bin 0 -> 1401 bytes .../__pycache__/hebrewprober.cpython-312.pyc | Bin 0 -> 5820 bytes .../__pycache__/jisfreq.cpython-312.pyc | Bin 0 -> 22153 bytes .../__pycache__/johabfreq.cpython-312.pyc | Bin 0 -> 83001 bytes .../__pycache__/johabprober.cpython-312.pyc | Bin 0 -> 1392 bytes .../__pycache__/jpcntx.cpython-312.pyc | Bin 0 -> 39547 bytes .../langbulgarianmodel.cpython-312.pyc | Bin 0 -> 83120 bytes .../langgreekmodel.cpython-312.pyc | Bin 0 -> 76986 bytes .../langhebrewmodel.cpython-312.pyc | Bin 0 -> 77497 bytes .../langhungarianmodel.cpython-312.pyc | Bin 0 -> 83074 bytes .../langrussianmodel.cpython-312.pyc | Bin 0 -> 105249 bytes .../__pycache__/langthaimodel.cpython-312.pyc | Bin 0 -> 77675 bytes .../langturkishmodel.cpython-312.pyc | Bin 0 -> 77514 bytes .../__pycache__/latin1prober.cpython-312.pyc | Bin 0 -> 7000 bytes .../macromanprober.cpython-312.pyc | Bin 0 -> 7180 bytes .../mbcharsetprober.cpython-312.pyc | Bin 0 -> 3901 bytes .../mbcsgroupprober.cpython-312.pyc | Bin 0 -> 1586 bytes .../__pycache__/mbcssm.cpython-312.pyc | Bin 0 -> 38643 bytes .../__pycache__/resultdict.cpython-312.pyc | Bin 0 -> 630 bytes .../sbcharsetprober.cpython-312.pyc | Bin 0 -> 6385 bytes .../sbcsgroupprober.cpython-312.pyc | Bin 0 -> 2355 bytes .../__pycache__/sjisprober.cpython-312.pyc | Bin 0 -> 4493 bytes .../universaldetector.cpython-312.pyc | Bin 0 -> 12267 bytes .../__pycache__/utf1632prober.cpython-312.pyc | Bin 0 -> 9977 bytes .../__pycache__/utf8prober.cpython-312.pyc | Bin 0 -> 3173 bytes .../__pycache__/version.cpython-312.pyc | Bin 0 -> 486 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 -> 193 bytes .../__pycache__/chardetect.cpython-312.pyc | Bin 0 -> 4010 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 -> 198 bytes .../__pycache__/languages.cpython-312.pyc | Bin 0 -> 9753 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 -> 490 bytes .../colorama/__pycache__/ansi.cpython-312.pyc | Bin 0 -> 3948 bytes .../__pycache__/ansitowin32.cpython-312.pyc | Bin 0 -> 16419 bytes .../__pycache__/initialise.cpython-312.pyc | Bin 0 -> 3548 bytes .../__pycache__/win32.cpython-312.pyc | Bin 0 -> 8124 bytes .../__pycache__/winterm.cpython-312.pyc | Bin 0 -> 9086 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 -> 196 bytes .../__pycache__/ansi_test.cpython-312.pyc | Bin 0 -> 5465 bytes .../ansitowin32_test.cpython-312.pyc | Bin 0 -> 18101 bytes .../initialise_test.cpython-312.pyc | Bin 0 -> 11746 bytes .../__pycache__/isatty_test.cpython-312.pyc | Bin 0 -> 4902 bytes .../tests/__pycache__/utils.cpython-312.pyc | Bin 0 -> 2486 bytes .../__pycache__/winterm_test.cpython-312.pyc | Bin 0 -> 6610 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 -> 1267 bytes .../__pycache__/compat.cpython-312.pyc | Bin 0 -> 45603 bytes .../__pycache__/database.cpython-312.pyc | Bin 0 -> 66025 bytes .../distlib/__pycache__/index.cpython-312.pyc | Bin 0 -> 24364 bytes .../__pycache__/locators.cpython-312.pyc | Bin 0 -> 60156 bytes .../__pycache__/manifest.cpython-312.pyc | Bin 0 -> 15123 bytes .../__pycache__/markers.cpython-312.pyc | Bin 0 -> 7680 bytes .../__pycache__/metadata.cpython-312.pyc | Bin 0 -> 41797 bytes .../__pycache__/resources.cpython-312.pyc | Bin 0 -> 17323 bytes .../__pycache__/scripts.cpython-312.pyc | Bin 0 -> 19578 bytes .../distlib/__pycache__/util.cpython-312.pyc | Bin 0 -> 88254 bytes .../__pycache__/version.cpython-312.pyc | Bin 0 -> 30364 bytes .../distlib/__pycache__/wheel.cpython-312.pyc | Bin 0 -> 51859 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 -> 958 bytes .../__pycache__/__main__.cpython-312.pyc | Bin 0 -> 290 bytes .../distro/__pycache__/distro.cpython-312.pyc | Bin 0 -> 53752 bytes .../pip/_vendor/distro/distro.py | 1399 +++ .../pip/_vendor/idna/__init__.py | 44 + .../idna/__pycache__/__init__.cpython-312.pyc | Bin 0 -> 879 bytes .../idna/__pycache__/codec.cpython-312.pyc | Bin 0 -> 4631 bytes .../idna/__pycache__/compat.cpython-312.pyc | Bin 0 -> 885 bytes .../idna/__pycache__/core.cpython-312.pyc | Bin 0 -> 16021 bytes .../idna/__pycache__/idnadata.cpython-312.pyc | Bin 0 -> 99495 bytes .../__pycache__/intranges.cpython-312.pyc | Bin 0 -> 2636 bytes .../__pycache__/package_data.cpython-312.pyc | Bin 0 -> 214 bytes .../__pycache__/uts46data.cpython-312.pyc | Bin 0 -> 158868 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 | 4246 ++++++++ .../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 -> 1829 bytes .../__pycache__/exceptions.cpython-312.pyc | Bin 0 -> 2023 bytes .../msgpack/__pycache__/ext.cpython-312.pyc | Bin 0 -> 8666 bytes .../__pycache__/fallback.cpython-312.pyc | Bin 0 -> 43574 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 -> 628 bytes .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 464 bytes .../__pycache__/_manylinux.cpython-312.pyc | Bin 0 -> 12074 bytes .../__pycache__/_musllinux.cpython-312.pyc | Bin 0 -> 6908 bytes .../__pycache__/_structures.cpython-312.pyc | Bin 0 -> 3239 bytes .../__pycache__/markers.cpython-312.pyc | Bin 0 -> 14056 bytes .../__pycache__/requirements.cpython-312.pyc | Bin 0 -> 6944 bytes .../__pycache__/specifiers.cpython-312.pyc | Bin 0 -> 31245 bytes .../__pycache__/tags.cpython-312.pyc | Bin 0 -> 18954 bytes .../__pycache__/utils.cpython-312.pyc | Bin 0 -> 5866 bytes .../__pycache__/version.cpython-312.pyc | Bin 0 -> 19937 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 -> 146472 bytes .../pip/_vendor/platformdirs/__init__.py | 566 ++ .../pip/_vendor/platformdirs/__main__.py | 53 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 18027 bytes .../__pycache__/__main__.cpython-312.pyc | Bin 0 -> 1944 bytes .../__pycache__/android.cpython-312.pyc | Bin 0 -> 9442 bytes .../__pycache__/api.cpython-312.pyc | Bin 0 -> 9670 bytes .../__pycache__/macos.cpython-312.pyc | Bin 0 -> 5635 bytes .../__pycache__/unix.cpython-312.pyc | Bin 0 -> 12439 bytes .../__pycache__/version.cpython-312.pyc | Bin 0 -> 309 bytes .../__pycache__/windows.cpython-312.pyc | Bin 0 -> 12997 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 -> 3487 bytes .../__pycache__/__main__.cpython-312.pyc | Bin 0 -> 733 bytes .../__pycache__/cmdline.cpython-312.pyc | Bin 0 -> 26604 bytes .../__pycache__/console.cpython-312.pyc | Bin 0 -> 2625 bytes .../__pycache__/filter.cpython-312.pyc | Bin 0 -> 3231 bytes .../__pycache__/formatter.cpython-312.pyc | Bin 0 -> 4568 bytes .../__pycache__/lexer.cpython-312.pyc | Bin 0 -> 38328 bytes .../__pycache__/modeline.cpython-312.pyc | Bin 0 -> 1567 bytes .../__pycache__/plugin.cpython-312.pyc | Bin 0 -> 3395 bytes .../__pycache__/regexopt.cpython-312.pyc | Bin 0 -> 4080 bytes .../__pycache__/scanner.cpython-312.pyc | Bin 0 -> 4755 bytes .../__pycache__/sphinxext.cpython-312.pyc | Bin 0 -> 11045 bytes .../__pycache__/style.cpython-312.pyc | Bin 0 -> 6673 bytes .../__pycache__/token.cpython-312.pyc | Bin 0 -> 8141 bytes .../__pycache__/unistring.cpython-312.pyc | Bin 0 -> 32987 bytes .../pygments/__pycache__/util.cpython-312.pyc | Bin 0 -> 13980 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 -> 37935 bytes .../pip/_vendor/pygments/formatter.py | 124 + .../_vendor/pygments/formatters/__init__.py | 158 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 6925 bytes .../__pycache__/_mapping.cpython-312.pyc | Bin 0 -> 4214 bytes .../__pycache__/bbcode.cpython-312.pyc | Bin 0 -> 4193 bytes .../__pycache__/groff.cpython-312.pyc | Bin 0 -> 7263 bytes .../__pycache__/html.cpython-312.pyc | Bin 0 -> 40571 bytes .../__pycache__/img.cpython-312.pyc | Bin 0 -> 27042 bytes .../__pycache__/irc.cpython-312.pyc | Bin 0 -> 6064 bytes .../__pycache__/latex.cpython-312.pyc | Bin 0 -> 19953 bytes .../__pycache__/other.cpython-312.pyc | Bin 0 -> 6883 bytes .../__pycache__/pangomarkup.cpython-312.pyc | Bin 0 -> 2929 bytes .../__pycache__/rtf.cpython-312.pyc | Bin 0 -> 6125 bytes .../__pycache__/svg.cpython-312.pyc | Bin 0 -> 9065 bytes .../__pycache__/terminal.cpython-312.pyc | Bin 0 -> 5828 bytes .../__pycache__/terminal256.cpython-312.pyc | Bin 0 -> 15156 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 -> 14651 bytes .../__pycache__/_mapping.cpython-312.pyc | Bin 0 -> 64403 bytes .../lexers/__pycache__/python.cpython-312.pyc | Bin 0 -> 42638 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 -> 4447 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 -> 7910 bytes .../__pycache__/actions.cpython-312.pyc | Bin 0 -> 8394 bytes .../__pycache__/common.cpython-312.pyc | Bin 0 -> 13413 bytes .../__pycache__/core.cpython-312.pyc | Bin 0 -> 267707 bytes .../__pycache__/exceptions.cpython-312.pyc | Bin 0 -> 12993 bytes .../__pycache__/helpers.cpython-312.pyc | Bin 0 -> 48500 bytes .../__pycache__/results.cpython-312.pyc | Bin 0 -> 34109 bytes .../__pycache__/testing.cpython-312.pyc | Bin 0 -> 17187 bytes .../__pycache__/unicode.cpython-312.pyc | Bin 0 -> 13183 bytes .../__pycache__/util.cpython-312.pyc | Bin 0 -> 14903 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 -> 26812 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 -> 612 bytes .../__pycache__/_compat.cpython-312.pyc | Bin 0 -> 373 bytes .../__pycache__/_impl.cpython-312.pyc | Bin 0 -> 14724 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 -> 1079 bytes .../__pycache__/_in_process.cpython-312.pyc | Bin 0 -> 14396 bytes .../_in_process/_in_process.py | 353 + .../pip/_vendor/requests/__init__.py | 182 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 5452 bytes .../__pycache__/__version__.cpython-312.pyc | Bin 0 -> 583 bytes .../_internal_utils.cpython-312.pyc | Bin 0 -> 2023 bytes .../__pycache__/adapters.cpython-312.pyc | Bin 0 -> 21279 bytes .../requests/__pycache__/api.cpython-312.pyc | Bin 0 -> 7203 bytes .../requests/__pycache__/auth.cpython-312.pyc | Bin 0 -> 13922 bytes .../__pycache__/certs.cpython-312.pyc | Bin 0 -> 921 bytes .../__pycache__/compat.cpython-312.pyc | Bin 0 -> 1506 bytes .../__pycache__/cookies.cpython-312.pyc | Bin 0 -> 25245 bytes .../__pycache__/exceptions.cpython-312.pyc | Bin 0 -> 7046 bytes .../requests/__pycache__/help.cpython-312.pyc | Bin 0 -> 4311 bytes .../__pycache__/hooks.cpython-312.pyc | Bin 0 -> 1051 bytes .../__pycache__/models.cpython-312.pyc | Bin 0 -> 35447 bytes .../__pycache__/packages.cpython-312.pyc | Bin 0 -> 771 bytes .../__pycache__/sessions.cpython-312.pyc | Bin 0 -> 27756 bytes .../__pycache__/status_codes.cpython-312.pyc | Bin 0 -> 5958 bytes .../__pycache__/structures.cpython-312.pyc | Bin 0 -> 5616 bytes .../__pycache__/utils.cpython-312.pyc | Bin 0 -> 36074 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 | 1088 +++ .../pip/_vendor/resolvelib/__init__.py | 26 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 633 bytes .../__pycache__/providers.cpython-312.pyc | Bin 0 -> 6850 bytes .../__pycache__/reporters.cpython-312.pyc | Bin 0 -> 2653 bytes .../__pycache__/resolvers.cpython-312.pyc | Bin 0 -> 25896 bytes .../__pycache__/structs.cpython-312.pyc | Bin 0 -> 10505 bytes .../pip/_vendor/resolvelib/compat/__init__.py | 0 .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 199 bytes .../collections_abc.cpython-312.pyc | Bin 0 -> 419 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 -> 7014 bytes .../rich/__pycache__/__main__.cpython-312.pyc | Bin 0 -> 10303 bytes .../__pycache__/_cell_widths.cpython-312.pyc | Bin 0 -> 7820 bytes .../__pycache__/_emoji_codes.cpython-312.pyc | Bin 0 -> 205975 bytes .../_emoji_replace.cpython-312.pyc | Bin 0 -> 1728 bytes .../_export_format.cpython-312.pyc | Bin 0 -> 2320 bytes .../__pycache__/_extension.cpython-312.pyc | Bin 0 -> 536 bytes .../rich/__pycache__/_fileno.cpython-312.pyc | Bin 0 -> 854 bytes .../rich/__pycache__/_inspect.cpython-312.pyc | Bin 0 -> 12076 bytes .../__pycache__/_log_render.cpython-312.pyc | Bin 0 -> 4146 bytes .../rich/__pycache__/_loop.cpython-312.pyc | Bin 0 -> 1884 bytes .../__pycache__/_null_file.cpython-312.pyc | Bin 0 -> 3619 bytes .../__pycache__/_palettes.cpython-312.pyc | Bin 0 -> 5159 bytes .../rich/__pycache__/_pick.cpython-312.pyc | Bin 0 -> 725 bytes .../rich/__pycache__/_ratio.cpython-312.pyc | Bin 0 -> 6578 bytes .../__pycache__/_spinners.cpython-312.pyc | Bin 0 -> 13178 bytes .../rich/__pycache__/_stack.cpython-312.pyc | Bin 0 -> 964 bytes .../rich/__pycache__/_timer.cpython-312.pyc | Bin 0 -> 864 bytes .../_win32_console.cpython-312.pyc | Bin 0 -> 28975 bytes .../rich/__pycache__/_windows.cpython-312.pyc | Bin 0 -> 2489 bytes .../_windows_renderer.cpython-312.pyc | Bin 0 -> 3572 bytes .../rich/__pycache__/_wrap.cpython-312.pyc | Bin 0 -> 2359 bytes .../rich/__pycache__/abc.cpython-312.pyc | Bin 0 -> 1607 bytes .../rich/__pycache__/align.cpython-312.pyc | Bin 0 -> 12321 bytes .../rich/__pycache__/ansi.cpython-312.pyc | Bin 0 -> 9105 bytes .../rich/__pycache__/bar.cpython-312.pyc | Bin 0 -> 4271 bytes .../rich/__pycache__/box.cpython-312.pyc | Bin 0 -> 11857 bytes .../rich/__pycache__/cells.cpython-312.pyc | Bin 0 -> 5617 bytes .../rich/__pycache__/color.cpython-312.pyc | Bin 0 -> 26569 bytes .../__pycache__/color_triplet.cpython-312.pyc | Bin 0 -> 1700 bytes .../rich/__pycache__/columns.cpython-312.pyc | Bin 0 -> 8586 bytes .../rich/__pycache__/console.cpython-312.pyc | Bin 0 -> 113792 bytes .../__pycache__/constrain.cpython-312.pyc | Bin 0 -> 2257 bytes .../__pycache__/containers.cpython-312.pyc | Bin 0 -> 9225 bytes .../rich/__pycache__/control.cpython-312.pyc | Bin 0 -> 10928 bytes .../default_styles.cpython-312.pyc | Bin 0 -> 10372 bytes .../rich/__pycache__/diagnose.cpython-312.pyc | Bin 0 -> 1486 bytes .../rich/__pycache__/emoji.cpython-312.pyc | Bin 0 -> 4208 bytes .../rich/__pycache__/errors.cpython-312.pyc | Bin 0 -> 1844 bytes .../__pycache__/file_proxy.cpython-312.pyc | Bin 0 -> 3576 bytes .../rich/__pycache__/filesize.cpython-312.pyc | Bin 0 -> 3081 bytes .../__pycache__/highlighter.cpython-312.pyc | Bin 0 -> 9897 bytes .../rich/__pycache__/json.cpython-312.pyc | Bin 0 -> 6034 bytes .../rich/__pycache__/jupyter.cpython-312.pyc | Bin 0 -> 5208 bytes .../rich/__pycache__/layout.cpython-312.pyc | Bin 0 -> 20219 bytes .../rich/__pycache__/live.cpython-312.pyc | Bin 0 -> 19142 bytes .../__pycache__/live_render.cpython-312.pyc | Bin 0 -> 4893 bytes .../rich/__pycache__/logging.cpython-312.pyc | Bin 0 -> 13553 bytes .../rich/__pycache__/markup.cpython-312.pyc | Bin 0 -> 9297 bytes .../rich/__pycache__/measure.cpython-312.pyc | Bin 0 -> 6375 bytes .../rich/__pycache__/padding.cpython-312.pyc | Bin 0 -> 7133 bytes .../rich/__pycache__/pager.cpython-312.pyc | Bin 0 -> 1819 bytes .../rich/__pycache__/palette.cpython-312.pyc | Bin 0 -> 5313 bytes .../rich/__pycache__/panel.cpython-312.pyc | Bin 0 -> 12096 bytes .../rich/__pycache__/pretty.cpython-312.pyc | Bin 0 -> 40055 bytes .../rich/__pycache__/progress.cpython-312.pyc | Bin 0 -> 75077 bytes .../__pycache__/progress_bar.cpython-312.pyc | Bin 0 -> 10388 bytes .../rich/__pycache__/prompt.cpython-312.pyc | Bin 0 -> 14780 bytes .../rich/__pycache__/protocol.cpython-312.pyc | Bin 0 -> 1791 bytes .../rich/__pycache__/region.cpython-312.pyc | Bin 0 -> 566 bytes .../rich/__pycache__/repr.cpython-312.pyc | Bin 0 -> 6625 bytes .../rich/__pycache__/rule.cpython-312.pyc | Bin 0 -> 6567 bytes .../rich/__pycache__/scope.cpython-312.pyc | Bin 0 -> 3829 bytes .../rich/__pycache__/screen.cpython-312.pyc | Bin 0 -> 2483 bytes .../rich/__pycache__/segment.cpython-312.pyc | Bin 0 -> 28160 bytes .../rich/__pycache__/spinner.cpython-312.pyc | Bin 0 -> 6063 bytes .../rich/__pycache__/status.cpython-312.pyc | Bin 0 -> 6067 bytes .../rich/__pycache__/style.cpython-312.pyc | Bin 0 -> 33513 bytes .../rich/__pycache__/styled.cpython-312.pyc | Bin 0 -> 2138 bytes .../rich/__pycache__/syntax.cpython-312.pyc | Bin 0 -> 39611 bytes .../rich/__pycache__/table.cpython-312.pyc | Bin 0 -> 43583 bytes .../terminal_theme.cpython-312.pyc | Bin 0 -> 3347 bytes .../rich/__pycache__/text.cpython-312.pyc | Bin 0 -> 58962 bytes .../rich/__pycache__/theme.cpython-312.pyc | Bin 0 -> 6339 bytes .../rich/__pycache__/themes.cpython-312.pyc | Bin 0 -> 313 bytes .../__pycache__/traceback.cpython-312.pyc | Bin 0 -> 31547 bytes .../rich/__pycache__/tree.cpython-312.pyc | Bin 0 -> 11438 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 -> 27085 bytes .../__pycache__/_asyncio.cpython-312.pyc | Bin 0 -> 4805 bytes .../__pycache__/_utils.cpython-312.pyc | Bin 0 -> 2314 bytes .../__pycache__/after.cpython-312.pyc | Bin 0 -> 1623 bytes .../__pycache__/before.cpython-312.pyc | Bin 0 -> 1463 bytes .../__pycache__/before_sleep.cpython-312.pyc | Bin 0 -> 2301 bytes .../tenacity/__pycache__/nap.cpython-312.pyc | Bin 0 -> 1411 bytes .../__pycache__/retry.cpython-312.pyc | Bin 0 -> 14280 bytes .../tenacity/__pycache__/stop.cpython-312.pyc | Bin 0 -> 5567 bytes .../__pycache__/tornadoweb.cpython-312.pyc | Bin 0 -> 2585 bytes .../tenacity/__pycache__/wait.cpython-312.pyc | Bin 0 -> 12412 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 -> 383 bytes .../tomli/__pycache__/_parser.cpython-312.pyc | Bin 0 -> 26926 bytes .../tomli/__pycache__/_re.cpython-312.pyc | Bin 0 -> 3907 bytes .../tomli/__pycache__/_types.cpython-312.pyc | Bin 0 -> 365 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 -> 617 bytes .../__pycache__/_api.cpython-312.pyc | Bin 0 -> 15796 bytes .../__pycache__/_macos.cpython-312.pyc | Bin 0 -> 16661 bytes .../__pycache__/_openssl.cpython-312.pyc | Bin 0 -> 2214 bytes .../_ssl_constants.cpython-312.pyc | Bin 0 -> 1098 bytes .../__pycache__/_windows.cpython-312.pyc | Bin 0 -> 15505 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 -> 3404 bytes .../__pycache__/_collections.cpython-312.pyc | Bin 0 -> 16487 bytes .../__pycache__/_version.cpython-312.pyc | Bin 0 -> 217 bytes .../__pycache__/connection.cpython-312.pyc | Bin 0 -> 20406 bytes .../connectionpool.cpython-312.pyc | Bin 0 -> 36441 bytes .../__pycache__/exceptions.cpython-312.pyc | Bin 0 -> 13492 bytes .../__pycache__/fields.cpython-312.pyc | Bin 0 -> 10412 bytes .../__pycache__/filepost.cpython-312.pyc | Bin 0 -> 4017 bytes .../__pycache__/poolmanager.cpython-312.pyc | Bin 0 -> 20799 bytes .../__pycache__/request.cpython-312.pyc | Bin 0 -> 7293 bytes .../__pycache__/response.cpython-312.pyc | Bin 0 -> 33967 bytes .../pip/_vendor/urllib3/_collections.py | 355 + .../pip/_vendor/urllib3/_version.py | 2 + .../pip/_vendor/urllib3/connection.py | 572 ++ .../pip/_vendor/urllib3/connectionpool.py | 1137 +++ .../pip/_vendor/urllib3/contrib/__init__.py | 0 .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 197 bytes .../_appengine_environ.cpython-312.pyc | Bin 0 -> 1847 bytes .../__pycache__/appengine.cpython-312.pyc | Bin 0 -> 11563 bytes .../__pycache__/ntlmpool.cpython-312.pyc | Bin 0 -> 5718 bytes .../__pycache__/pyopenssl.cpython-312.pyc | Bin 0 -> 24449 bytes .../securetransport.cpython-312.pyc | Bin 0 -> 35555 bytes .../contrib/__pycache__/socks.cpython-312.pyc | Bin 0 -> 7510 bytes .../urllib3/contrib/_appengine_environ.py | 36 + .../contrib/_securetransport/__init__.py | 0 .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 214 bytes .../__pycache__/bindings.cpython-312.pyc | Bin 0 -> 17426 bytes .../__pycache__/low_level.cpython-312.pyc | Bin 0 -> 14800 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 -> 198 bytes .../packages/__pycache__/six.cpython-312.pyc | Bin 0 -> 41318 bytes .../urllib3/packages/backports/__init__.py | 0 .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 208 bytes .../__pycache__/makefile.cpython-312.pyc | Bin 0 -> 1824 bytes .../weakref_finalize.cpython-312.pyc | Bin 0 -> 7330 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 | 556 ++ .../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 -> 1145 bytes .../__pycache__/connection.cpython-312.pyc | Bin 0 -> 4755 bytes .../util/__pycache__/proxy.cpython-312.pyc | Bin 0 -> 1551 bytes .../util/__pycache__/queue.cpython-312.pyc | Bin 0 -> 1351 bytes .../util/__pycache__/request.cpython-312.pyc | Bin 0 -> 4182 bytes .../util/__pycache__/response.cpython-312.pyc | Bin 0 -> 2988 bytes .../util/__pycache__/retry.cpython-312.pyc | Bin 0 -> 21717 bytes .../util/__pycache__/ssl_.cpython-312.pyc | Bin 0 -> 15102 bytes .../ssl_match_hostname.cpython-312.pyc | Bin 0 -> 5070 bytes .../__pycache__/ssltransport.cpython-312.pyc | Bin 0 -> 10771 bytes .../util/__pycache__/timeout.cpython-312.pyc | Bin 0 -> 11138 bytes .../util/__pycache__/url.cpython-312.pyc | Bin 0 -> 15794 bytes .../util/__pycache__/wait.cpython-312.pyc | Bin 0 -> 4402 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 -> 12000 bytes .../__pycache__/labels.cpython-312.pyc | Bin 0 -> 7131 bytes .../__pycache__/mklabels.cpython-312.pyc | Bin 0 -> 2698 bytes .../__pycache__/tests.cpython-312.pyc | Bin 0 -> 9250 bytes .../x_user_defined.cpython-312.pyc | Bin 0 -> 3294 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, 192094 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 100755 venv/bin/pip create mode 100755 venv/bin/pip3 create mode 100755 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 0000000..b49d77b --- /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 0000000..1f47fd3 --- /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 /home/puh/scud_context_api/venv) +else + # use the path as-is + export VIRTUAL_ENV=/home/puh/scud_context_api/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 0000000..8f94bd8 --- /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 /home/puh/scud_context_api/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 0000000..8b9d591 --- /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 /home/puh/scud_context_api/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 100755 index 0000000..d2c0bdf --- /dev/null +++ b/venv/bin/pip @@ -0,0 +1,8 @@ +#!/home/puh/scud_context_api/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 100755 index 0000000..d2c0bdf --- /dev/null +++ b/venv/bin/pip3 @@ -0,0 +1,8 @@ +#!/home/puh/scud_context_api/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 100755 index 0000000..d2c0bdf --- /dev/null +++ b/venv/bin/pip3.12 @@ -0,0 +1,8 @@ +#!/home/puh/scud_context_api/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 0000000..b8a0adb --- /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 0000000..ae65fda --- /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 0000000..b8a0adb --- /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 0000000..0e63548 --- /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 0000000..a1b589e --- /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 0000000..8e7b65e --- /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 0000000..e5b45bd --- /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 0000000..84d4f20 --- /dev/null +++ b/venv/lib/python3.12/site-packages/pip-24.0.dist-info/RECORD @@ -0,0 +1,1005 @@ +../../../bin/pip,sha256=UOuELzc9yBPQTXkGXHq9pdCdN9USxwMh9rvVWDTsnmo,248 +../../../bin/pip3,sha256=UOuELzc9yBPQTXkGXHq9pdCdN9USxwMh9rvVWDTsnmo,248 +../../../bin/pip3.12,sha256=UOuELzc9yBPQTXkGXHq9pdCdN9USxwMh9rvVWDTsnmo,248 +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=kkCFNJOrE6I3WwBTXcGNuc24V_QZQ8AULE6EYe1iHlU,12813 +pip/_vendor/idna/idnadata.py,sha256=9NIhTqC2piUpeIMOGZ9Bu_7eAFQ-Ic8TkP_hOzUpnDc,78344 +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=BvQDKkLuXCSaVfSW_1blUN0IzJSfNC8njNr8vhKj76Y,33189 +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=pyASJJhW7wdOpqJj9QJA8FyGRfr8E8uUUhqUvhF0728,11372 +pip/_vendor/urllib3/_version.py,sha256=azoM7M7BUADl2kBhMVR6PPf2GhBDI90me1fcnzTwdcw,64 +pip/_vendor/urllib3/connection.py,sha256=92k9td_y4PEiTIjNufCUa1NzMB3J3w0LEdyokYgXnW8,20300 +pip/_vendor/urllib3/connectionpool.py,sha256=Be6q65SR9laoikg-h_jmc_p8OWtEmwgq_Om_Xtig-2M,40285 +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=mJmZWy_Mb4-dHbmNCKbDqv3fZS9UF_2bVDuiECHyPaI,20943 +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 0000000..e69de29 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 0000000..98c0d20 --- /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 0000000..26fa361 --- /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 0000000..a1b589e --- /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 0000000..be0e3ed --- /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 0000000..5991326 --- /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 0000000..49a148a --- /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..f773325f295e3624be4a66829d9b1f6a12d5bad6 GIT binary patch literal 682 zcmX|<&ui2`6vtglVN7EZAyh6 zJP2OAwf+Z+e~K49nv04jZhYj(IQ-JzQ7ne*vI2rwNp&rN@UG4jw3-a#LZy4O(T zZ|^ z{XPME1g$A!;vXzw+@_*1*NEYqDFsa`jH$VycNUlK#xo)9 z0eytqUb3lErMQNxxCEVXa!eW57Nlb?t!`8Wr$+bOH=cI)Kg*31A>?p{=2gk5s&i_x znkB$)`Ib#mCFq392`$73SZrR&Tk*{WYJ}z2Rhm6d#{lK{5*RCNlEkWMgEAFT4?sEu zH)kO1qCb7qS^7RW_vYd2?RKIA2<;$ACR`iXXOgtOvAXpE zf2Q~z>65O{{alB=`(?%If-mc{P`a&|2*QDnG5(4!e>-)4cknCh;tQ{~_JjSkw@Hu@}VT1`#X&{X-cbX#dsnaX` z_OO|5XX;r5{BDpj|93C1XQTUxv=Ia-K>65jL4Ux2B~`Vp>6WVI5yJxIr>LPs*cuJ)0$LOS%T=UrM0P;vZ|Y+6xS_}y1uB06JD8hbf=)| zmQOj?EHq5LAaq>u9$4&DongAJ`yb(0xH_pSExSz>r_)lrMu(^koA<8!s^;iQms(xL z)SoI&;J0k+X5mIr@pPYFADi+NuBJraRB(cmCh>#lX)`F{mT2|UTL?qSJ|z6C?6~=9b|58+>bhIy;`^&`d{(oBRRA6d|#gXiIO-vg{6n?Y2{>RvfArR6e8zoI~W$coqN>mY2H6;m&1O&*Tma5gpJBBs(uCu!) zm>7v7q^44(a;OTuaj2?9v{H{f_TG!ZsK82*QniP2Bk`dvr@rxe15(a@u`^-izVQJ3#uRr1nv1$c0G2_4G$=&j@+3_ZKFuk@BBXgra(>t0U{*NA z(*=~9;sA_Z4yZ@*=E4VdcZHV!MOed=*=X$JTx|_e*>Lp*(um8K_TlWy`wM||fUsEo z`CuWG4iV-bVjpdBecU-6=HMnMfkjY)E^fLNZ*|H!AMX|i)&wCyM4KH|AG@%LQ3m*ku~125h!!<=3Be{Q?SP63HF5;y*SNZV@W*A-K76UuX>C{Lns0zJ_=aof?RDfFNoG zK8^s)5yn<$REUf56ydUVBpc}WO-a@@4)bFA*ZVv&b}s|$!;wgA(VFL&>05i1lVVGpqPj4Q0o_0 zKD&Z&t2Z}eiCQR86%utc!7fX{?6n44ngC6XiHc5a3Z#WH zi3@huh*}(MaB!3&8qHX$HsKsFlwmn>2X-)rXOp-l%A|N}tA)Ch+kMqV+gt7x!yt-r-X~vF@430=+ z!}mt74~$8p!^7iok1d!qpSAtjQa;bpVhcsgmhH7}ML(0>Lu8}zo<=9Cv*-Rh z3CUL{zKJ`{t0?B-c__A2+6cX|9qaf#a(pXtc0F=-_10$US~dCpPv>iq!NoYW*&7rGV;;* zt>GbQbl~p2!O?-SMzPo}ZuzKMR=0y=WfR-nz>I3y-mGpEWXtv-c(H89oW_U^Az6?! z*o3K3b~xbE%_MtQBi6hSYrm3Y97na03p;@6k|pQuRn4S^Wt?VvgDmdmUCy%I>@6CJ z-1ql6|ND(g_>a}QSw*qO6GC2a0uky_AfY`k#E#ELUU~`X+4F()0AukJoCcJ9VB51nayI z^6r7)@z#$52|t6kpTUV=V_jcgUcFK~k*LLbsu2Ct>nCk50L9)hAi}5NPr_T!whnDe zch@^F)H*M1!n@CXk)`)Gd?%|gT0K2lL+LxY4bgee7DU$}y41ef^@H^b^fhk$4-J|l A@&Et; literal 0 HcmV?d00001 diff --git a/venv/lib/python3.12/site-packages/pip/_internal/__init__.py b/venv/lib/python3.12/site-packages/pip/_internal/__init__.py new file mode 100644 index 0000000..96c6b88 --- /dev/null +++ b/venv/lib/python3.12/site-packages/pip/_internal/__init__.py @@ -0,0 +1,18 @@ +from typing import List, Optional + +from pip._internal.utils import _log + +# init_logging() must be called before any call to logging.getLogger() +# which happens at import of most modules. +_log.init_logging() + + +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/__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..188b065668f122d2ba229265fb04884021779cd0 GIT binary patch literal 784 zcmZuvJ8#rL5Z<+Y7bm$$gro@tEQ01F@QQ~Nf>0_%g+c+MxW+j4oV|%3tKD_rP>@p4 z(WE0Z^e7GggN8^*2sa2J3c5oFO)6%c3l$^pyflw*X8d7cVU8euNzIn)5c1s`r_`A$ zlP9RWCJ9MsP6|4pg)?xdwVm88yn#oFL%`c=E1f2v$iu0L(KCq$4p8W>pwGUf12aP} z>Avg?{E^%Df7;l-(|GrVHjV#48c~%|-lvTh=2g1Uc#%qV(^X(0ggBsqXC{oK;5$(6@LX&n7L!%wjo{jKu7!cC zGK#mO6hT>h|GM%JRbj#~kfX*cB2lUyHnCUNi^%rKpC0L~eVbp}zx!(aqqj0aCl0dF zpKZEkBynTP9!Yt~nx+3tr0gHp^x7_X@f0%}R~yy1IAh!F9Z?Im#5}TN|4vaQbq?!l z8BKd(y^3t?QcAy)i$BQau}|pPJ?}GFJR*yq$kMN_PtWc92g?WXo0X$8m&OF`_wH{i H+QNSUZ7R;= 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..a1a39c60165d9b9b0c1edc5280d1f93923d0b9d1 GIT binary patch literal 14291 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 S>VCU>RN#C0haAh;di_82HrJ5= literal 0 HcmV?d00001 diff --git a/venv/lib/python3.12/site-packages/pip/_internal/__pycache__/exceptions.cpython-312.pyc b/venv/lib/python3.12/site-packages/pip/_internal/__pycache__/exceptions.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..2b0be1cafb0da17df264c915760b252d283502d2 GIT binary patch literal 33281 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 AR{#J2 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..79fe0a4fd7981514758510e97ab0bf11f73b17c6 GIT binary patch literal 667 zcmX|9J#Q2-5Vd#rj^mODA*xV-K{O}9S|msigi;|Y6eN=Bnv-umxi##EJF{qT>SrJrL~U~4pl^E*tT%O~ zimf(LZh~#sfp1)uQQi}a2?d{Dpg=jfjzZ37oU@4S^L_U5c=t9N#82Pt zf)=~A6Lq0QR##XTATV>rdK5laUX*Gk(3_$VV-OB@!9kUoYSI^E#;5%SxJML9Yx7U7 z(BPFR@Tx!nk$Z3Pwv-d&^Jbi8bt&!4Drt?C2C)H@H*aj*N*6>fq9O*o?Twx|Wi2@B z#YNhgj!fmjQ7h7h)L;sgcQaelEV^De6S>g*1;#)k#L+{U*Cj~X zkyEIqvM^)P;`6#%Pp_{@G#;*5l|5Dy5*75FWR;~dRcdE#5`bHx1PM8wrSP2nS!SJ$ z?@Q-i-+i_DIa!_4Bo(nW=(b%yv(zmYF35!wZH(TvG3j2Ad|+-lEQKd^)VovGx+!4O r1=?_Hc!k1Y%sKzYF8%8E`1zN62g$+q+tXjpTs~wpexLmgzXi)*!5g!3 literal 0 HcmV?d00001 diff --git a/venv/lib/python3.12/site-packages/pip/_internal/__pycache__/pyproject.cpython-312.pyc b/venv/lib/python3.12/site-packages/pip/_internal/__pycache__/pyproject.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..c126ee9a2ea5f1a2e955590f0060018c76c47e9f GIT binary patch literal 4968 zcmbUlTWl29_0D6TvoG)ZjST}f*c)ICF^B{iqfi?IA+{T$MzI>L#yhk2nAw@lomu?I zZnH)C04Y-9pV(CriL_Nq1eN&YqaSUhHj(lXEVlJZ5Kj+B@1V8^_R`x!OIE~kw__Min5;c6b(;WVRGyg zOOZ21@#MTy-kfjBm-A2gtvyx=)oSpxzJQ77oG}RYp)W?MW>><*i28rRHQnzSZwy9PzA^}bZEX63m$Kcmw z;rXRjvYQQxalmd{q>_n$5~T4YWd>CtCy7QOuSiM8WS&zOP4=R!8>W9EZ^)V|C;;R! zw45R*X)}Iay&@>G_@eY$LB>)}QVo;avH%iI=T+Sh6h$D|qZn)0?5<-?E>2=?PRbZ( z3bNwR(9P}_WL=llnQu8}wCOq1izTCg)eJ@Ct`8QT4E#1Pz_fx4_pFGFx=|2v%(Fn@ zIE4&P9TyzVM+Zr%Xg_2 zib8L-vS<Qgdx0Iv^j;3z^HpjHD0b<@`We1`G_| z1F*bp^i+QFNnmJ3Ql*7F9$wm)mi4p(o=$7oG{}(}QnZYq=))-&rU|6c+hFjslN1gUY+_X&w~)i=4u+V- zWQ+jqfvJo(xR!S^?;l&|_)ocspI-t7pA6pXpIF~NQDG-G0R)*H1(j$iiD_Lc;Ea?O zAqX>uh8MSa%ngh)fCPa-aIG=thJ~|((3~3*jlCj-hZ8tfKrBTXW+b@)aZYQx$>s%P z)@0{2Sp|imXlzqBkrOUUX%{g~fH4n15IaaG+7qS2Z=bk+;_ad9LzVWUmBH_=b0ZaY z1b4!z8MpG}(xMKbF(Mg)tmsMB^kX~ubkjFYjG>CACo?N$E}NnH+Tvse3p#L@^2d*! zFdO2hiTI{phjhw=Y!cHD~zX#Y(MDVE#@Pq@08*vERY|w2SR2vU;rO(IWKz+R<9UkRzW=*Rt{zv#b$ za4*2`0r>7M@PWC+4tB6C`b9s9CWn^utkXPKMCG$Zc7f8*KmjDNXN|d5=dJOaBV=|A zG3d|>A)vv3CmLLXMhU8CnZAI)YmhCAY|&r#!d*s*VKMSP4c7A8r(zVWK;e)<(#je| z=61}X1K55sO2jP%jP5!BDh8Z$J#3JwVvQmrHr4ltSME(LCc`I;HRoDn*K+vPTS;LPX0_#Mtk03=~7fNHKh?o_Uv04>}4q znWriA3fwakdWU*zaDjOR%~L(d*yrH&BHUWyw&|BB2H&GUpc`5ixvM1hxF2!z)I73j zBwK_tkj@u1LFA2DiFYegiqr%?D=She802A03K%K^Tp;>MYfbhV)r3FHpA&S81Z-lS z)FTOMl*mtxPV!K0c(`#gl69w_=EpTva)}T^?#M}kx`oWFpsRfb54V#dXJkWJrMLG>$%i2oWmtCL!P3pO1obvZS30OdIYg(3ZQ9)a)UIOY% zU_??n9p3fAOu8a|Uh2bOV%HFSe^$dT5!VJhFOe1rY?#-u0ZmZS_P~o)yR*go#EiV0 z1-iUGs}&THIKWlHT)zG88q$TnWq!N69Be$tVlA?mCE z>IuZ+g*=4yOHaZ!<+^2-rvGo!PJ-${*7j7L7RiX$OCZaRh%$o~cSF+@-So`QN|Le^ zZ)^>pI(8)WOzOyzEu;mOvIwW490@1WX*<}{=_HLwJ;aB|MBcz=zIq3|)OFq4XlbF^ zVbY#hjWH%I3no1c_LGU+Q^_bkK;HYv)K8`)OlBA=XQRzD17vC0)TFXtl)T;Y*3*q?5*oq{o(Fck>CNUW2Q}13w4Q#4`Ge&}f&@<0Gi0 zZDnkEY-N0T{KoKl^V8)QHe&G=-?DEdvK(1mSdaCW&;NyM|FB~tvZoqtyEa!tRL3cp z!o!;k6Aji769_&GB7e(9xapnL%@g;+gK!!+bmz5=)?F)?moMMg`^y6#9{5@Rdh5Y! zV_z|F^q_6`%InLo1HZPXuZJGA?Yb6v7y}AFd8Nv=RJgq#J+%?%q?gEvo}Jf4J89>^4xksrT=_Pkngy=Fr{f+QD<{z2`T5EWu;}GiYJf+EK8% z64>=1)bR+>;o}>Lu9e~C;roe$Yl(w5FRmw^twf)F#K6gy+fK&T6UQpiV>KTNBx(^9 zY6Sr+>|U53`e9X#CLZ__72mE}GwMuL+Edl;(+@pNd+=JQ7Du7>3fEI%dtk1GkUzfK zwdUKu5jlA0+`Y)DivLv2i(*}?7uKSE<#QWc=jt=}xL!D}Hg{DMM<06}`vPt|{|Na! z9oM)T?G1EngxXfQKZSa09@qmu(Ovf=yVoMSSKnBV43x*Ji9PodJ!^@c8{>D*tS3&C zFIL++%A-|Zr2GchA#wbguiCV~5<76s^Cj24I(yT1r{!*Fog1yNqhHCyMGuJ!zka+x zqu9Pjhy{-EfoeNn?KpM!^4)Z$?FA4H?CV9%9W@^l?)bXK0MHYigye7e-m}M<->0}S zn*PIa&)L(ykLkeJUeCu|(^!}1<1P=pC)>@4n`9}HWB3H1T3Ksy84d2A3~3s4%)qwk zH5T(w8!+j^F!>zBUb4->hjc0p-`k>w?VR4XWhZ4<8^B9#Nh96PR+6`7y9Mohh^M55 zjAZ>wMYn2&o!}(jO?DdUp`G<{!ks4*Nq8%vK0?;lpp|w{{6jfSEGW`2Cja!H;HUor zrW!+0)aR(>a}@Y9+V=%Iu!au&4RwEk#=l}&ihhV-szoSjl3Gnb{=oA_^QQHz`6+6Y zxG2;;m;na> 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..a66e4c3e023beb4decd05ea73eb818bf7f486889 GIT binary patch literal 10549 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 X0+Rc!KkximC(r)s!egr8=GXrLaUGNz literal 0 HcmV?d00001 diff --git a/venv/lib/python3.12/site-packages/pip/_internal/__pycache__/wheel_builder.cpython-312.pyc b/venv/lib/python3.12/site-packages/pip/_internal/__pycache__/wheel_builder.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..a000a56a3be54e0bb0275d1968afba06b21b7447 GIT binary patch literal 13646 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 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 0000000..4f704a3 --- /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 0000000..f45ac23 --- /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 0000000..e589bb9 --- /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..3d11a1d7d2576532e415eb79c6ddcb00ac676570 GIT binary patch literal 275 zcmXw!F-`+95Jl|}K@=%>aEDTm5lM?^>1gQEj2wHiJK(jgwKrm^xdUh5ESvyZE`Ugv z3U3sCGyl&>^JYF~v#BWhtn%Y)soz8RmpqyMq?k8h#ai@oK6<%(=r&QCCtZ;;!Dr2$ zeWkQ>Dr{Bcc$rGSX|%V>u_whoQ@hoMR7*~0vSn;(dOw$67l<|(#CNeDXooe_p&^J} z4asyChyC=NQAdUy`5idkKHK@H!f;rX94Ddq1-%5gg`@ehxXQXBvP 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..cb7f0974b85223d6c68ae55a552d68a657640221 GIT binary patch literal 8462 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 h_)rDB>$@wcmLE{uglRm*oHe 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..8fdf37db7c230cad874adb8417c332d56bf5080b GIT binary patch literal 10452 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 literal 0 HcmV?d00001 diff --git a/venv/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/command_context.cpython-312.pyc b/venv/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/command_context.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..dd703c847159e2a0f553816881af449ef1d08a21 GIT binary patch literal 1778 zcmZ`(O>7%g5T3VxUZ-|9sgt%u6gf>=Wh0SoL6HC<6t|@nAS{$xMO_Z7#k)y1*lY84 zoy1WNQ56YSf+M7eGg2XN;e@zA&s^-1Dq&lxL0sTw8lhB$1M_yhZW4tj?Yx;Le*BO6K;sJhVLcD|yv-1uzYhZyzN>C;`DRVkUn9P;9z7f~C=(e8V;0jpMDp-lGPOi&p@=s=X@!yjGm5YH;XBhKf*k0 z(1`^)XC)diO)PFTrSrC65nHtQXV7MvvxHS)z2ifdEYVKbGCM&Vd0N0+1U=b+MWXjy z1yv3*7b|6q*os4S7T<6KiQ0aRx<%6Q!!`ss{C4uld`i~9XWDSxB+KxL2oOJu@S?`( zfC%6xV$0Y9Pvg{}jyUEot70H}wW>`6*)SZ}@eL#BMaC$bNIK9`7DSNVr^6x$o?V&_ zl7>+%nVx4D9(y^v^2F3;D`i`&)@C)YShHd;hFNvAdE1@WO3wRQweHVW+!x2szo2=J zZ$DqfT4Mb?t?E=Y48XUkYnHTP$&VKP;L%1go?w}2*d_JGwhr5K@Vf=P(BY6u5Ho-E?A%AdD z?oGHsLgc$gNoL!vLstzG=*NQ3_%#xa0`hTtqs(D-x~6q}{5*JM0f*)~-XidE-y(k< z7Rc}c%LRz^-|`Ct(}5}X-pT)LMU z+D$N#o&EDv`L8#QzHc1Q9V4HoauR$gzQTVkBlDe%svpE0pZGC>;vFfOQ}{aykJ_NO z)0ak-R^}bcrp3KjcPFNRp8v0EURbrmt2Bo*b#N_{_0Ck{_>#QJKgBpm+pJsT_C)v@ zD97fK6rTO{`X_c`f)fk@CpZX$VmAeeg3=1wL=|cj5J+uVRk9ZE;H=p{&5n~e zav%o|iG&nxH7XT7rV5AN+EY~!l`8d;h)AIuq9Q>L+ybOh1((jOy;-1_jMaX#{l8XL>8Eubr`hkgDkqe@rV32-OuYiESI zP#N&`fvmH>Kj*=IfRnx^3y?X(y%Ez+UlYhmSAcz_3U%%q@a?u$;+3xgmH%l2cl%o^ zX&(jB_m^1S&WOsMK<^`!307Vp6*bxIk26$)jSNQ9{k+X;l&dNo`o>7-wQ7fAkg42ooA^UQ>A7s=1TxAhG^YM+qlc+oSNfR*MuugD##?895;SR(=kNb^W<<)ieEGrp)hqn zrI`*^biLSGTGXv_nRr4=3(=}Vw1`~M!75>0VG?N=x~%26Azd?}18tXwQyO-~rlW3{ zINpNd=qJTfqoc0iH3YhXnsx;hUaXc;h}z{1MKg0EqTQIp$xw@?V!$Ty8U_caN-hK4 zP^;-U)TfL$UVUB|w+vXYtK$WyR8>h|GBKROMa9+%6VRL}=-S1CUBly+c_cshe!(HG z57)~L#=$Ij7>dr;A0?6tQ}a^| zroqnD=lHD{5Zc!G-7Ea=hl#G$zN5<@j{VKCg18j{Li-wjV1+-h${&2nw_h9E{S$_do;?Ywnz7U&_E$cCrYs6C~LoO=6eNlOGQTaE1 zOQgQMTy=Z?yNupv(fef~FO}WYJ8PQ%F{hb|-ES*N-a+qA=rk)}$J^>E)^w*?Lg6yR zqs`QoieCPbkK9jP=Nyb&j^vn^P2Yo;gan9o_E*wSvlV=VPLL_>B+do$+T<99dCoEn z{{*zHgZMfKuY<@sNc;(U{{qK1z_AT5xB&(>z~RT?^jz0kIK2{1H$Hd}&d!R@hkBX5 axv2)T!*8c^j9w4;< literal 0 HcmV?d00001 diff --git a/venv/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/main_parser.cpython-312.pyc b/venv/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/main_parser.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..823f849e80fa722dc29d5daff28fd737d1cec111 GIT binary patch literal 4902 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 Pdlp-E{f?sy8{q#3ZC{6a 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..8916b253587563626d7c56849d37371abf35839c GIT binary patch literal 2617 zcmZ`)U1(g#6`s5IZ-1_K^)K17qU#@OFUY%99fKU4hFDJ2Mrmv$6`C8ua^9_nh;c`FmGa8o~Hil`h^^5&DcT;*sev`~LvuePkg^aFD_0gd?~KBjJjM z=t_p<%7*MJhT^J*D)4>LNxCT`<))3an=vx3W@v7g(dA~1teZ1(Znx3x_82{GuhARn zOHQBLZ}bZYC$NME4#9m@0n2T!lHhA&(30alOTj~yiifQv7V&^3SVBeQI+diAdRsCM zfh7HVp`)eXVZH~tgB8Wfysa3ASA@KFA7tpYyuy-GrsJ3k4rZxo>|tV3pRnXlDR5la z<|5gpfZD!iI!vCg2M*4sS?YpGrhKRFdMta| z%yo9U<^tP;i#yBoJibahe9ye?;+GsV2yuLF9~aGH*R(y`t9JDI=85Tr6-?#=9BbwU zmaAe~vONoX)a0(Sr2Y7_7EDs2D*R!Tk$`^^{>S0J{{W;jNPrq> zK&+QeArz{wKoxAlCLeDJjYRkYjcpG_%+>S4{VJC^Qy&WgT(^*Yp~ZhJbdVco(Nv+hvc^(|arqU}{yPrVUz z3cg_BuuSX-Ja7Jzn&HxSC2LG_Y!6r4-hcA~l&u`{DrO?4ChH}*0;s8#0!&IFF8iK! z{~6GIB}o4o#$-R$7K?AUg8?3VbaYda?=KbqJ+d45}e{^OrFvtv8ind{TLsh%&9D4*LM z82t(*Qs>rR+U*^BXJ%LHfA7+bOE;&t=57yc8ta$-sZD+OaV?N)yuGsAx3?jVCdnb zjkL}yqsKWeq|>~-W~25U>L%E>pR@7yQPf<*AoldQ_3Lopv1MWg#|n`p;qBzZ#6fN6 zC6=nxy)yNECuC}15^9@HR7XtWr;s98g#4Rzos7f8p5YIT)p6~h{Mvql!5L6`jvJi> z0tJ{w$?lD3KT(JFa>Ms>`gTsgd-TjlwZF~Z&CNEGv!Cbs)-(H{it;1mhcGb(o+^0m z2oECRktIAWgh!I_M}u&ju|oinLJ5#$`J}*+P>7@S9l%GOfCHZJm!aJqqCOEdhNvCz zKEXz!!(zM@>eP0^g5y`K+>fY3$O|hJhio{0`7d{1Hyfo36DEcf2pkawFN(s4h&;=$ z-Rlb?u70v;eHtIM0mI!=HLAlV8dN!5&c$r4>wDp{wJ3*-`)66UayP8^XWu(>f_@a_t%s#9-AIn*=^#uH#w1ua3U|7 zl6-_`Z&Sp?-sXrIZ*$U;vPP^t)v+XPDSO1u;?|@i<%~E}u81q;j<{2vh$rQZcv+b( z=}Y+|eipYU>r(ZRdKPyi1F2vn$l}gqL#i>-$l|VKQz{e*rJ5tnEbUIVq*^1bEbd9R zrP?FyEbdKqq&g#=EbdEorG$vU;{IfJswdLJ;&sX1R9~cz#p{#nQtKn@Sv-*JPi=^7 zNQEQe)W*oh)Iel_!nrG_KJEZ&&hoZ1rE!s1QIt*LF1Z7d#2Zcpuq z>`3j5>`d*7>|%M%$=#_vkv%*oIb|ExsU^8LwJ)-d=S-Z$PhB<^zVen1+~T!Vr;+`_St;>2P^0CuU9I{uuU@JDN#n zV~MmPWG5xzXeO14rA6U zBqeNBz2{y!JsLfFV)W>9C&!Mf=ELb()p9DKWL3ut(^)J^EU8-0%}ggHG;_T;DM`tr z7y?VhQ(}hIQ3$%e)`$l6C~bvwIs1I#^2v1Aqd}V2n#Lri;1os^?rxo{+MqXS0);G}5lh z)>0|!=$wpgkO*w>jP&wMLY7ieItw^h9AsP67Mz_d)-@_iFGt7aOe%_<%*M_qCAIO1 zq9nFL?R_E}uoOuo2u25L+Y^-tzLJ%3N-&rJYf{~UCKNcSjiqX&Y$7<#XCx()yvQcf zG@Y1^DpGPhiZq?$DE23QA#BFxN~viqEnCT1wPjWE-0U=bX z%a+TgfaBLbB7Xt7vO7zy*dv+@eDn(MNQlw+Rfxg0+gH0oF0Ic}<< zk}_fjw6k0cn|@9U^mFQcZVzFetURM+6`XoW7?)yLS700kI0^_M zb}^Pn(kT?iGqRu^abergmdyh)t>@g9k%WR`!Z}q?lmxDZpeRW}nVDu7h45Jd*p8h# zSEcG)|I-IBlP>qZR|vaRvofow9^e4Q`Et#2^kYv?#EOhVAckjOI z-m`4k^Y!B(=LvnmnXC=>9lkew*L=&NXYVZawejr&8};f>tKw$8)-=8xC&6mE1Lv6(;K<~zch{~d2d zeAQibqai&juOWC9w^ic6d2z&bf#Y&7aO2>*u6iOC$tqeTn`n~kl0$M5hrqZ5i)g)S zxkV80L|l3uHz>9Z6x-v(y~WM-uzWk(da0G@D948u2f1m-$HDSuX5V zgF0!}Ne4(tB0V?i!Z{EQYlIrd8F}nh=(|`Z;06(no+lCm6v?RkhVT$;FZW>(ah>U* zfirZ)P}XK7euu9{TG#j-_d_5jW0GL9xEvQPqq14s6 zu>8=wf&xyp>jXJo9vO1WsQ7&(-sC2Lin8T-=NOA^FjC--s!Pm3ezYQZ=FK^?T%R*d z>1i!j3v=cQid@wm$EDoflC!Y(WfWh5kgGzmIn!lcF=2fzH~_Y}U1u155n@6TluF2q zg9j6(%fgJDR0JZ=!i*xxgVS>6VnPH1q|bjyb)+-c15`bxI@vplCSz(H7!o&3 zuD9lnuC6o&7)lhu6|Q9Cnwl3}_x(-RFWq!4jo$Nby&q^w4R&`m}dVA!qf6s#DQ@6heEaU0OdpZ`yd!F8h{+2ub?!|M>Z z+qkZC{k1l(M#b*}q%w-&3ir_Mf8)Tl1Iuoq*e(>>hw|-1OWDHkk^JzHk9OT1e(rAj zsfCf(p9dXiXnym+jRVWUP0OB52#fyU8}rxZmmTeFi&Q(9Dj6KSYR@K8Qf4Nr2FJmY zo(B<&W;4;a1U`N|5wBi-VrgiPRvzQ#V<-7qYdLStS>^6*88=K>&|=LqWnYtlWX@{r zrNVYfy`Pi@ZjzWJ8Evh#MpXs*;UV!&fH^Kr`Yj6o3aIbA z?IrFy|N6!m4XJE010Gw33W`(RRg4|c zXKJZhDOAEus*|;jLMl>C8AY{B$Fh^EmDp@Wt<(8)B`T$fD;F7Gs5(b4$0a5b%QSh_ zGL=cBS^x4mq~&K>Cf#4v2L3rQKC8OHg92@_OD&(Kaw~}0n=#MBtb@X`X`4S6&$DaOCaTMQSfUNe4Bc(>xfgKJItt;LBQnaku%p* z3-_%?rsJrmjDlAH&GK=L?S+PQ`G$21&QF8w@0xyMf5-k4?>pY5#64m6vSatMfA>Ro zXmMAeZCf7y-P=kgtGD-l=l;8$&)jgAJX~AX!gHSo+CSZW_(wf&_TT7#bJLAYi?d7N zdx7mAWs6=*-*5Q2Xa52CL3%C`+6{}juA^|tpdZ?Q#qyW_2nM^{z&-xXN@aC4sASMWdQl3UN;~ z`Z7dwy~G}kikWyc%J@k-T+n%?Bq&5gnUK9qJ1!H7hqRWJ*@0w7RVF4xHA6B|E$1_t zBs&PISLapZ5)>lQ_jq|fYAM7a9@4nh9f-;lj8MUEBl!9%_sC+hI=*z6tlL29Z1p9R z+uCz;yu{&kyZM8@50nqX`7I+~PvTIa}OmztXBb8vfK>^Y%bbn0g zBQT|pF4_>ss-2xx>|U8k_!~CkRjfL15LS)E17(-l1XR`^#e;lf-Hc4UWq#HK!di=U zfaI8U8dXIL+PjQYgJVYXvTSMzh?E=avWbcvyShM&WB)jk|-k zk0Od;uGZ=?INIejr$Ad6dM8!@@XFk+Jc$fLVWJ5p&6Cg)_pn0bJJZb)|YPxPFCmGThz3`5GT_ymQBWPtVO=OULhdwtrY#d5PTf;9uAv74qFdzwTEr;6td(C6eKA~Q9#E?{yu{DI1K?XF?)t`Dflsd zN-F}wR~DXq;kZMXDU z;TG|@KmYfInJhREAtvaWJci(u88O4;Z&FeU-%ckk>$m14*-3Pru>hT1Le8W~&%OzI zNHn3#r(_c_UR;u)onv^eqG8r>*b8alMWD;fCD<`Y#E0H8HY-3Y&05D4;joDFPulAk z6s8QtLQsOfRDoeb1HtaCFwK!Yi;o z3^@>4$CC-zG=M#HoHC zA7EnQUV*W=dxuFI3Z3V4Y$%Z#))z`)N>uQXJvaw4SqkNsCx#>%@)oNpdP%Yy#>G&$$9+4ork}EXQSGiYBFf;R6#I*;c#0+9@xoUaMBw8zy zsc5UZzV^yxte6m(D$`UkA!N%Ji%P~F3nr*fO`_wfXC6{Bv>DF1u@P*Tc5F$RPn(D9 z166q8zdk|4DrrNq4Xay^z_4OtT3?E?=xKNYY^xWv^>BC1(jYiLnK7V@TnS36ORPNs1!@jOb_i(X5wImo*8<2 z3o>ge-3Xuzt?&N=^kL(|;i9LZ;OWYHx^D6}cYNXrKLYL8sGZ9)afB2lPbhIZ48~Jl zq<@Z_-@(zSt%|y$si|smMsmQ!T{G8iSHY!D*x#>Na!}9YOon2V3Atq&0U@`6tn|Ma z)+=R8lnk5>`mfflT~#JJvNe?n$%m~~EW$rVhWr`@zlp%mV_wm;(JB+U~g9KJ~1>nJx71&-d@Y=Q&Wa*qwn- zgP}#s;>6ADU8V;6`o6#K3(o2cJaTZ}{;JAFPkqUa{BIPx!#{QI;Xdp*+++^hWdUh5 zP-Ps|*>a8a6Ei9kjn!nHX~e)I(PZT}D4@AB9_iNwO_)(V)pM0^p!{>H^BjV|#r#|* z>&AP7$4ao%Z2S+~SLju8_^g5ZKA~i$_rMnIz30H6#y@Of@z0(0KkB{K@qer+F9{Gr zuZ*$d7zfPq)27E(CUJ9Dn_na|3?pVHirAPL#;TiPY%s%^B|C7Iy~^|gqYN{(bi%me z5~+?;a*HmwbGRk1=z*EVEBPfm!&yG54iM_c1ET+`)nHvB0S$s?ve6AUU1FV7&ma)Q zdO!#=2m~*HUl6|r{2C>@*o0CaD-9vmfIgbXO_XMNW~p(!S!}85uSw*kkUk=UPUEEU znvvT~ZD15?g$ULH(-W0xLRnkYoLkw91vXo1*^Yjh^9sggjKwT@0jC4TrFLdq>Hr?@ zmahZ6O!q)FUAXiV+)4Llg@_%q2bD1^UC$rl(&qRCw2<%ezr{l{#nlpxY6(RZf$0Co ztX0s)ET>&@o4lKbyoZMDfcHfd)(%B=#Y7f^I{YE{FoxMwrkeL!g{Bhb?oXBcLbXmD1qaE=?xllf+9g z&j&%7%*-U=+anRjBW_~SH}mKr4s0R;TX0#%p7STAiCBDg&}gjMv<%gy=fG$T&xSU* z1%bK}1&*%O@Im`Q^I_T#K@+N4MPqRA+|Wi9y$A=MSUNj5SYuhAUfo6u-3;&yk9s<8 z+6%(bJpQ|n7K3dM{cRdw<0A~OE8<8m>D4Toq3lsZP+c;?%P=-~B5^ozN3%Ker zT#=YU(+O$zd?Yo3eTyeH?84^;T8sp?VbwP8!tVe(wMU$oA<&_6K6(_qStzW`p9kW;Z) z&DoLftE7z>a%t7pJUMgDf|6QR2`lnRIlSh{*>awoBjrsf*u<#94W35qX_ zlvFKP4sn*v7s_vOhWUdHotxWNsSj-mY6{Z$I2dM{MVeuXiaJii0cDIb6!xi3?MBh% zvMX|&E{psQ)=Twk1qobpHYc@?X?Tpwh;@|z3F>Kg(1RgO03|5V^D$X|o7($mwZOVZ zF{(*Pk#AC_3yVD)W$P>d0cGfTs*Fy;ZaIQ{`NtG|mx7AS)kMiZq~MPz_z49|6ugHZ z?3IsE{P!s!yj2+;8xQNB%}nb!xEixW$=D$iSD@CdMQ!pwMYiHaz|N%+XehBI6}uo+ z`?0|^q50O$ZK^uBI;S@D)Y?8=b>%+#07C5Kx&{lKTk@S-mK|+Hf6uaiXxTA@u-MwQ z;D6ZGS!mmnZ`<=h|J}AD%Z}!vyKOOd$30MN>07dEs`%xWLkrJ->TkJU*Yu|EhOcC@ zH1>RHw$%qpbzE2P!VATg&V^@-{?^5bLg&sr{`+_8Rf`SZdTch;2Oc}Py53?_xY*G4 z<_kB_U|q4jx6r;V-@XlYhC;`Ve8-MrYd?x%CMdKF=354f!4_t0*phGCLPeqOVpCVK zec*A2zs^qRj53)+Hv=@C1W10rN+cM72rJ(NB^R)x4ZkKQ3CF z7G1BZ*3C>$$T3kO|3c8RiCNV}#9&&Q-mztu>Ytu1>lEpd4#lg{9qlV40e^xWsMc;( zgyNjJ77_>Q;tiPw=)ATzxa=r0@6CC2vT%l&x};^^m-E$PhiW0?T8Ow78m{Rd2-yqB z*^{$k9<>p%9f;VObH8uBMf?<=v*dwjNxFZfF%mgn^Zfme5$-a_YLN?_Ut*`@m!lC7 z^Bo$dgJttyVG@jHFn!k;P|{B+hp?J_8-ZHKZn1v&=Jn{5RL2=TCjT4icEeM<&*dmVX%o@R0_d?d~l!;+?fyVECdhcg9i)2 z6ZznYVoP^1)KP5jFLrM!b`BK#1`2%#^L+;?*?*uY3{ylHE`_*;ll%(jY4DXekJq=- z$~kvG^ase>rQq++`}+(2p}c>n;NO+^?<)8Y<^6|>jU9wJn|q5LgM>DP{(`VCFYKda z?;hY!inI>^blqVBO}NyfbA-qyzer6wIE_T)^WO|%*~8H}Y4W&W2L(X1%Ryiw#uE5+`mw}2;)0Z4fLk}y>AbswE?|>#|NQO}$ z;gs$3hRL1;D4jiHbu!8Kx_Fg5kT|9;sj1BV!7ruJ)&BrM!E45+L~>E zva%h)b15sNUotN! z1%K}+{@%QA|KBQf{aWL)W?^A<$ zVFS#NP&v&~I~XgnLJvvLdg1qRLM|xtJqN?z@B;KnR+gSS@vHZuNRkG5Qc4=&d&11l z7H))JPx&AzGGPFj(2M+UDHx%knF7XafSz!w)A)u-kwcXBRLxEIZ#H9bRdXyo%fv_d zzfd(7sgj~>4%!zUHcg~gEh21{G7u;SZg3x7OpU6^nT#)_GcDgG7>@A-J{!W)sjkXr zQN)zJOs=d@UCRHNs#!>tsSvwOmqmXx4ybPJw$JsR`Ne1B3LS(Op>Tu%*}!exzThb~ zcNLlk^34NZa9-!;g%kHXHy7)gi)~%R$uxK2KRn2~d|!Z3*?ipv2ZzqXe6gXEiFaG` z9b1b%{otND1J_+(p6WXab-nqz-kZ;UQaAjl1x-q3K!vQ@(EJ7GbZ%NWdcS3;SQjMt zBoPkfktE-TS^tSgubz1EnAUm72JQ zwnDHkAB26xp#k1XfIEAh1iTum+s2^!)_jv(UFU-?w*p->G|j&p&MGcYb=%H8wrzvtdxTo+z|=SR<9)io^I3(es>&EcgN3xkL63?42vv@VXk zee$i7%fa;vBSn8x!QTz{_WMmeB@^E`%9l94@tMz_8ToMhk=fkX^m%LNVs>fUPj|n! z`}Xm|_G9_&$LN0DN3d@`!U zGt-h9qPwSEdeVuLS(YJiriM~2)B%iY?8<+J8K};3jn(c)b)=$}pbf*YAexP5YTn_s zmG03U-U7I|!yc}=vk=;t4{gLvZV(C$yYmgZ?>6j(%c;BJz9;a;bJw0*bbjLL!9nyi zYMK>qmVFSa>q%A#2X;VZoAsxNRI52^xxGOU;Gx_AGNEVQS`h(6l+96c7B79 zQSmspRovZbj>HN*ag}%hcEvjPvogC<))5Sp!=FtziP*(B<*af$Y(dwKAxEwb&zEWFH@+ z1-|J4xf~KkwC_5YBKa8X{!)c)l79~?ehyrZ2OmIWE=6Z!=?hSW`Lr|1KJ}0@NwrZc zrSEp3O@k8!s5o4wy-45#;pq898txNJ?*KcwkGe%u{S#x=kMFW@5$MZVs;|hOqfgkE zNv{uIAEtMgNtG}EH_9j1WyfaYo zo$lQOTG!@U@IS8O>N>z5<^8?IwlGQ8twiNWsJ7@rHT*u9<|phJJ9h5au{nP>GYB`u zgfc!mNM2QA_>vXB&b3~6ByDQ8N)I%c*+jhB4>?1HKc*l}K^Fy$6p;ME7FK?lVh#$X zDIlg!{u2sZ6p(>P?x5h`Q$PzWw^Q(dg1@GK1XTHdQ2=p}lNAKjzRTAslLC&`vKzM> zzRU0=vhH4t1Jzr1F9q4_cEgvH0^+v?;J9vWUxE(+UbhwaD_Gmfg;~poBRssF16)5; z&#jMw+pVsL&Fe~5yvbv^xn!r9gKO?9IVtAi0_`O?#XMYnXUR)3AJ^Po@>8si3w13j zH&Uf~N(H!vP>CRdmvMD`(TEuJ3*TzWOY#);aD&jr^peAL|E8j_t|)8)B`xmQ^QdJv zh7!O~@WxQknVn*AoNg{TDdysuIv1z%jp34;lEAg?B`?K%aLq6IDOSf^H7OS0T02WY ziZyU;oux*KHF1p{i|1~Pl|qzi=30Ahu3IuMon3OgGn{YPTA~rao!iy)MH^!J&?zs= zpW&_T4}F2_+pZ-_R!ZoL#i9-xtdm8xY=jyLtxUb0gR+alcb(`Vd6U^$bc0Q3mM1S@Ic#i!I44ITgYWI_s z^m2wu>ElRJo2kvK>q*9EEeewZm^YEyvAPafoiD>-OUJ4j_9Wq`N^7gtS&j49Wmo%F zS0ue}QW;u{miB;moz?fc^Cd@P{Jvd|-x6nbbXM`|1G!40eT? z3du0au(p7DayM08a{{%>6=zz_qjZ3(_fmByc*|4l?*nL*V~|Qn-@rcAU{2bq^T@YP zo*Idcj(tb1A3c3y^!ezECq_q4MUNiFpDa@Sb~( z?4+gW|`e>({IPkgY8Y&9w;I6|%wg(zHx#LSwD zaqO9o@vIhN0;|QC2sNLPvaXmb>yEjza!lrMj*#(Wy)iFqiy2?mAMWXj~&I!J~m=aVf$j5spPvMfe;ZK170NX_k+=jn-3B=^VUtET^k9 zl}M_Fi>mrG&5b85xwA!4-YDHlH(OeF`fPbzJ$0gj*;!p zj%sOL-8Pj-o=conwb7~c)F?;*b_>E8O=i-gn)wCV$kZ&n2ObJtjUP3F>>%#n2jl`- z4QyBn3@*xp6?i0uKb3~X;u^?wT1#5k!XAL-6Th4KVGL~n@;*;nvE2nk!N4bbJeSC-@wnlQ$Fq55I)iP0JpRwqiHzAp zak3$3I;Fih*<6FYmwJG~NB|ldYS$%F;W=rj>;iIYN0~r%d*=hJ*sIy#I!xgbSStSn zq>3pI!GB7N!mENJsG=&VOi38vMc_%QD8Bb0msAlwKp*cOJBy`n8#d$nP z6)>e}NeOpu6>KvEM*xM_$Q(CE;&vaI<1e)8&bd$8isbYY@-{!m!wg)372OsLnGYX!FYq2c9xwDgilY&`6NRNs1GzxTtt1qg7vE_q z`GWKNS3A0|?fcoj`6H#S5HP)~>$faMk1VY}IxjBE;Zmp{n1L_)hHf6Ze(3hTrM_Lr z@4YAcuXrzeSLEKJ+`G_m;7<&HG-Nn%HW%-p-ch9`|Qy)__ z6doEIrs;JS$HD2hO`JA8L&_f~7r`^Z2|K8T@39J=J>Zoz!|^0awxP`N3XWc5B}B>` zUyqlsu{KvlS&hy(T)-WA1ys%okp6-+GdM3(CeIHl<+4UK{WK>#fxxDaXv zK-Tp%4A*`LhQ;89vWv8LFNimN*L}sd!FgAy4p-f`25*bM^}X*a zZro7}?f5WN4DDZ*57dLNds&XGc83-=|Kc1#)mOIyB3SmX$l;q!}7JHf?W)kN&6kGC|Ijac*Ymh-ESsYrwgpDD)=Ey8zemCkePtQK0 zgfdIN0doy82O$N02AUMHV1^#1S44+d=xK61Xohy<;5|U#aD2fl2Y-C9U`>s{Iuyu(Ms2;HDUyRm5+ctL995g zq0Bi7!yqp9Ews`x+QzrZOn#s>)E58fCT>abcNc z7L+tq2Gb)PgrV9CKWqCs#h8H@Q<^DPjv&-wjt_GOkL9q+swm0WS&%%;W zK0QP+B#HWH7%JL_WF3`7+}rl-{g!sA_g-6PS%MlgI@oiSE)4!`rWhC~yOAZ6uHLc-TYj?n=?V@n zZ}Ccl3#ZBis#~vBu&VS*($;doCG}&J1{FqWP?;OS*C*lU6kDY#$AMLi(iESt`SpQPxe!Q#Ko@RJMtD2ijR0F2a4Z%valTGgrQae zrRIJK-r`rzMFxC_(BM17@j|zK3y935^@)fX0!M})a>K6ybePT}Qr2)H>zYf$T=Tmy zPm2O+^dtD`J=<<)Zh!Zq?TcLpmgR$`P>sLfEJrc^yy+-BO&tX~DAPHx{jKR7Uc_-o zUV)!>49F#NpBJUbEul=H`g9Yk7Ehh7;A7b@NY5=K%LJ-hN(HNmSCXRTfM^64tnd$cma!+28ZUwJ96kzBj9`j&bmgbX{$+iZY*}(^ERNlxxp=f!88*A&8}AG z-X!Fd6_yHysHd|k{RemnJqg6}Jcf|V&lr-TX7oh8??F>gXsi8VszNl28@2R&HPC(~ zeL4M;bMr!}wd1O?(mh;+|EYs%wCVB!NZZ|fpA$F7h4@|Eg|nTjVjDxRZrhIj_j1*WaU7c@p> z48urNe9dMc5Rvh`wCTg6WdhYlpjl9rWkK3^RYxt`_rS|ZmMvtnSv-K=u+D|JfH4Ta z%D-@^(Hx2m9?kM~FF$nq;~lb%J{`BgO0$dYIS6B^Uq`vKGUp_5-sW;X9kY#(@I6Gw z+#)NF-@hG#JqO=9$Gs<9<5-d&lJ<7O9QjRCP&GG=SrFQGxN*(!9C;m9;>bIFZwarH z8E%m1-S$p~Amh2_YBd4gMWSOE&dOuw)cBr@WQLe;{EaZfMa6MLRPs61kdujAQq4dX zN>VW~9c`hQ{HN$Q3|Cr9==v;0t8KJFp8aSlrLsKa3H7|1G29sLfDbpsvGJEqvMT^H z^+wA?T7iUoJULCZyqSeH+Fns-&*T$SVX-rvp3)7^(YKN+OX`EKL%>1M3XU9d@3ofC z@aLysEvtv3vDfhTYastk{&Iml2oTx#qrwjgEAHN+yLZ_gzHxqKV0Up~_tL=Lk57N{ z<{#et)4mWB>pc7M@6eA~U${>;3)%zLGQ)t2y$9XIz~-?!AV`99%1;Zl3( z$KU))fL6Jkcv`OnE(fljza#g5)qyM=@z*bW>%IgH3Y6p^>n=bLR+3v*eVujenPqtZ z*kuWZ{!K$ObMb|~7yG!+`a_2|lFxQahr5N(_RG-zTx@73;}E|rQGsr(q1gIHH|e6? z)$9&!kJDvml%t_Ghmdne07muiY^nCzEgkdltk{~yVHTad$Ky`H=QNvxcC%p)YS`aD zx>gs=q=|>3X`^o-LAX=!T!elH3C2-o2F!PC?8wphi~soQsgti7zEj6ep0*yM96OQP zlnN#ZD3UAi({MG0)j!Kb4z2z55NoP?;AzLwEgc_x!C_j$c0h?)UEa2mdmE#A*Lc!z(#p>u@_@OMGDu`D|l1 zw)gZL4ho+K1!zaZhS&PL68trZVxVk(AJcbqV1`Sd1@$}2?*9}az|sLm82-RC;{1VW zWE#SEZ6uk`PC?s?lJ9ml3eGm`&soaFa5V z5~%VNT^UUwVWO?iK|GZAn|}*BNV6~m;7_z=AZ3B$xVxn7E@{0>0(Xh`F7f>bd8$aB z`Y$r_?_~EqPk6p(#S<=i!V7zrJVO^;U%4c1=sp4Rpml`nUkpVb5U3waay{_0ZtDXA z^;bK6+?M+UNO>LM{VQC!$c4*%CpWM#SSC>2iY{*5|B>?Pk;SdYiW|qiL|#Q8d>IR 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..6245141fdf8b40f40f53a5418c2aca55f1824e00 GIT binary patch literal 372 zcmXw!!A`wCmr81FyX@L$4CteafC0|G2S1WO<}D@R02 zBzY@OBuknXTE$gnU1fn)E`yjMpP|lyT7|S|nBA^o7^$S_x~8YHiSCg0i12o-4OM+$ zcKQk$Vx$f5jb@@=+IY~Fp{kh%zBbi<5BF4k=dU0Q-**PxTgBLVKfsz_0-Gl|4ks?8 z@fb! 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 0000000..db9d5cc --- /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 0000000..d643256 --- /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 0000000..139995a --- /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 0000000..7e061f5 --- /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 0000000..5ade356 --- /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 0000000..ae554b2 --- /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 0000000..0ad1403 --- /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 0000000..6f2f79c --- /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 0000000..cf2b976 --- /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 0000000..5e29502 --- /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 0000000..858a410 --- /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..37b56923055e6fb0e7ea76b9e6936d30427d46f0 GIT binary patch literal 3999 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 CSt;!R literal 0 HcmV?d00001 diff --git a/venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/completion.cpython-312.pyc b/venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/completion.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..e3656962477046287b14444378ce638c98194687 GIT binary patch literal 5189 zcmbVQU2Gd!6&~B;pE!2nB>n&6l7z;ybnH!wikhygwrL7o+B767Wt~RD#B=RTI`(+) zjMK)6r9M=mm5{2HkXi{I7G7x8N)+)xd0Gh&FT6A=knC(LA+bClUIHx->=WmVXU2Bo z7IsJ0%(?fT^WAgLJ?GqW{fBrw%E9w-!Cd$#!Et}ZhWi8^;^lQ9?s5vJ_%tqC|N62% zX!|vPF^~=TurHwT#b7pQ)4UcchO=Rt4r-BNN4CSJLt3=hne7BRoQ)|Fr9+7-ol5M- zd^YaqzQHN+o1D@`!w&=XnX_F>KB4>X*ccalR_HsjR-pz^{CU+d;Ts;+i$%GlAUSnu zbaZTL3dl%-no^nRh3c8;04b|wvTV##O{Mvkdvv-VmpT2i9& z0UyUjiStN+CpB=Af;Y0f?2*Vjdhx=<C~m^ixLW)ADbS_43oiOa`;4Ap^NEKMbn5t z8rs)to&wJ5C=qp{(7asHOd_5on^sPi(ZqEr`5(p@^&~TP$@=XNmzPdaZ#P=Ew{tlcSd=C&$L8#bH5sopsvUr9RE@Y^!-Zm79#C z=E=+q8LS%f5?z!vaD|ddubVR>2xl@x(`7}jn0mfa%8}XG8PoxCGI5Q!9}uymo8)_*D9+zj zv^mV_X*qYbQifn^306WTX-O_p@tjGEubH(aT{t-2zw47fPGK07iph1=i?56!F`pB)k~GE>t`Ely#^Z_3wb0W@F(DrK`6 zmsN8<*rrb=Vz>$IoVcAQ zZgxb(7$9dcea?Ze5;)oEbx3y@l%_lf4JQg(lt8IA=-_XdhCHupk!e!gAqC#z=VW8v z3czV#@tFIpXj#8TnO$z=>P1Zb9da5kj{7s6Znlx^*8_RwGF z^>Is_uzkE55=Hczs$ZP5It^226w3(1WVi!X(Dt6{{;?t)DUDqNQla*aqAd7cNVcm5 zD`?AFyaMNd#iKJ+gQ5s73HVjk0g%;wuf;+(PzQY%*z*i;182i!@!X%%_c9MRCh8NiM7DMOs=+YwBFOykySnr6Z}~!)Ze`saS>#As48ThQcH* zsZhAF5|m6%gcwM;AyQtlIvbi9)%~O17*H5_sixrx(8>5cyl!yok=UL1?f6=RtVYOs zY}Daa?Np%zHes=KkVmS&P0Cu zX_p-yI%Bnf>E0;0mB2$M^PJ)C@Hu~h%lT&kwZ<#H6}}1*ANYUJ!E?1>jbHICxY^S| z!p}-zkz>myy0`r-*!NhsRsS~W6>lBER(o8~p!y zZ7$UgZ6(xRhey1tgNy0o%pES$6ld;o>4iNm)%Y&#Z_qBK1l!H8gciQ!ax}gxL3h^8 z-&QShejn^wjlaeT;i@UYr~u@97m%tQaOK%Z5RgYtbrC;6M`+R}16Bx*MYu39^kOSmM#Zh})2F7!+^aIcGITjBVAznR zLK(Ay*BB%bi(k;yk`QKSd3FF_XhWD7|6(xe6UXg_lfMi$01O7shII!#Y%fX#Sfy0m zzBR8vH#)BI8+hH|KJ6J;>q)NmB%k%Xbu0Az$gw8}e|h51yH4N#%DrtL27k2g>8{ha z;_zDU?7fq@ow;{*wX^^E_WgII52WXb{)|`>BBq@3hy8F~Z z36Drd-><;MSixsUnG zU-le$%I|#1_XkHdzUk`3Xm&#Cd*3~%x2TaO4U{X0vO~Ij!r@Vc1Ftmx)h6(0Pq0%kfC<+?BWwhGKHn!?^b@Z81-JJFxASk@ z;TQN5H+X*^f1`UN8i_|Xdb?tgjRR4jc5Ls9{PUb|WQYGL*ZZpK`?_!Mz3{&|_}G*E E7qVs%p#T5? 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..455aab83bfbadb85d3c692d3bb5689b317a6b560 GIT binary patch literal 13209 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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..9e91464026d5ad2e54d2c96f3880549a34866c7f GIT binary patch literal 7586 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 b!RR3v{0&SWvhV7Nq;i8_U;YbF7JK*?l+v(z 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..5cd57705522271f49fb0c4dfa7bb4cfc98af09fb GIT binary patch literal 6717 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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..84c6fd6305eb8a3c392f3892f154e6754825656b GIT binary patch literal 28910 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 ZeceXyjvn>B_W*m}a=7n05YM>h{|B}j3LO9d 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..21b16b20245a440a7711d0420d2344f728a91bbf GIT binary patch literal 15653 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 literal 0 HcmV?d00001 diff --git a/venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/search.cpython-312.pyc b/venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/search.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..3aac436704e6506ec0df2194371db870bcf8ad06 GIT binary patch literal 7618 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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..f9bbcd2fdf9b634d736ab1037e7ec8e8adb41e57 GIT binary patch literal 9725 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 V7rYspt7t%oBYM-i5g@wb{|g{<&B*`& literal 0 HcmV?d00001 diff --git a/venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/uninstall.cpython-312.pyc b/venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/uninstall.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..9287295181074732b566e6f41fad6cccd2d5f99f GIT binary patch literal 4723 zcmbVP-ESMm5#QtSGGw6XQQJB-27ARou{A!E2SY>bpf1mr^mEgbiZ?)7AJO=yowyL{+X zq{iPzYJx;aY|Y=9A6pjk1OH)z^LfDyzNP3@Vgu!WU9%nNQ)R`pOs%ZwT8+r2Vi1^& zlnvFYIGSZL*3c=-FceeG``pYlv2B>{%=|>VqM2@HNuj2!&C0ZD%8D&h%VL^C(-%&i zIx{`ZHaTb7j-u-dQ+b9`i^62OqEMU2l)PKjC^3lX*s#M6tlO zF0J;9gYXE0mmQD=XliRw=ebh|6nr)WuY=JCu-W!agxOl%XUS}9hR zJ%*W?r}5IfR-Wg^VXPBnk>E>Y9-M|v3me2yRK-!4tttWU8*pnNp*VO}(}|6j2pG^c zyU5iP@N}7K6$dX-rBWf(?lIs?%i9>El0~9hm6@5geC^Q4yzIwT0>lxFhjIc<@cxL*~Iks`)#&O>UpqYVRoLLT6%4T45hceD!2 zSj~V;&Ieq-N^A!#C^M9CLn@h7fX5B7d|6be>z^lj1&**>3ls{=#CAp2L~O^RM0RME z)Q+CE%y9=R_GLV4QCzmnS&bSTwXikY2Mj9F35V=rUZlg|Bg(*t?qUsdSw7@Sfa@~Y z4Lc|*r@$)8BEn5F)Ry5CRPGo%YAq5bny@{%8m98W7l?d@3#ZC#lF>pV3B53 zWHUC}OzmlAMw{8eW_D-GFQiTitrQC99-(MB(i%qL_+tW@W@@mR+0#s&X+=3-5cm>X z`2M(aGdJ1DO>X3-?n*Ch*^@23+Q_}Skvn%+`Y~IIeh}T1#v9W3s<3+e&oAD3@k{B2 zhhQvnLmg;y{R*A4%l#yN9w`4-(d*Jf7^3;7EA)qwU?YO3T&JEzIwphRY2F? z@*}V<(NW*m!6|+QrwBPIZ?Yb$3w80fxYjura7+P*-BcTVM)(_9;yq-8TIDWP~E?X zZcCmXKzjeen77*NJz4PHOW-|r?|XWy9tAdFkM8wg|K8rnqtx)_(-2D$?^dsd>tXQc zk$QMxzsJ+-z5U_tPx8Az&|C8;HF_D+nMRzvH`9}H4taCaC?8{$ucX-))SpDHO`kIt zq1sjZk^KbTPq8*<0_v)`z|p^pFaWu{{Dso00tKXvS&_U&8j#*cnH6rxZr8`PLl>9N?O7Z{8JQ2zJMLnYyf*bF6Z0 z1G&$QDOJZ}NXp&pdfo>({Txj_cKAi&N-S#jV7 zb!%>pP&dSMz;=`cD~+*+B_55khFvU$k0?Zw(6~WxBz#V|;jXhN3nn+*Hb`@p-5~Rx z=Fl7yVhBN5;^!lj-8y#~Wp_mj(6}jZjV;5;dis9E=0%uyCH8zXd)-K{_IFcVR=J`$ z^H8_iYy(zXw||s{4rr*Fwd@72iuRrcn0*8Zb-{ma>ny)WKLPJNXeyq@@VqUH1L*xw4G9V6d{1F3W?1qxfc5U3h{x-tCp10;pd z2`gvs?LN{>4&NOA^tnf(Z%^U@3dPR}A4MJo(a?!zcK7PgW`3%XpMu4q^hYA-%MM+C z{x{Dz&zxP)?!SBBxzEHeq|c>|11IlfU-@Q$3AaS1`I|IK=I*8UHPe%yz4^t(&o6%V zS_=thg|X&X?#9JWE`I#lP1+KL)ZvFBoT-Jxc%l_S$)U}Gqjv_5-itkTH+JAF=}2?u zp7njl*LNQOR`kJBC!y^A&CKCO=I}4r38Fn&HCbtRd9tje+*ky$KPbpmuumfx)^I*Sq*g=AT^%0L9F zHhfyqage3#U7+llb4A;st_ZaSJqg2Gh;PBeg{B!3YZ#i^&p`7&`o<>(q*m4!KmOjC zhtgo+MC-^ifuWC|Z6WAZv#aG>Bb@xye#BltijUi|qmk){6X#t(~JO&f!%<#j>uoi?`iBm@i&Z;M=-`T$I%a?${5R zAg#JQ67cW@b+^$5U++%U23{y=q`TebB*J2_Cek68*EaVU9QH_R6S#o!{UWhi-V z4pJO%9^Zg_p=fA!xetHBfOD^N*rKm6^VwH=`|i#$iiHfn&+nzlc8E;TpTit0knA_0 zfshx3f1t#DG%$)Qy0^j1MQzF;w_;-qtoN`tP3+lOWH0+yb+@S3 zcy@w_fV%&x|5f!@b=CJ*>37j+NPyqJ&l>Yrx&+}rSi$-EY~s~_194YS1=XbqIqU7p zxp>)~bHm%Md5Yeg*Tr}q%~$m2{G9e`fufibIqlPe#ZWH9X}=aOMsks2G#BONfYwrs z`=u~NRM>Sd##mq^A$sqf*dR*}zKvCc@0-r4lg|P1|Ie z_JZ^LO<6;;N`6r$$f%U%@}k^qNC=fk1tVE4VA@jBaZ%9Pp^MQm zaXo!z24Nx@b4XIu1*K##0ewa)=>|6fq0)=xf>tQaTAqnMW86|OlGF-jm1qIsMX6v7 z)tGb8yQMLBZnk{5HruM@u*6wo+ne%oMDv7R5r`&#xPP;kYcQ{f}TaCtfm-< z7+I??L*+tQ;*vvBg+L@&gZXGlWRV!C2rV!Wo>B794+73f9v5yPRhmN>O>y6jKd>}b zUMwrN8<=7@G?c{%;sD`8S#EXIvTA!@`Xjd>NrPpq&q_bBr`yk@=}qGxkuu5`W(o+O zmd3`${*1;b-l7CUTF}s&6n-*_z|TUSNZ@-OCazS$+Fw@C^t_^NsIck(CY@<}hB4dO z4PolX@PXmd)x5oM@QEwJlPwvqQb64ms=~ZIpEtke?L}pCo$6BEsz>!2UZ-~6?@-OR z>U-pWXxF>`3hPGDu`$n=c&B8&op0`;-IMQVIkMF%D}7IvTlUOye9tVm?wRG(o>^|+ zGs~TOX1ROMEbrSh%YA!hS=uwp{d;D4;QO_#22>GnMo0}miafMo>vvqy4t~Ea+q4S* zV9zWMf4`R1D34{!qu4`xXZnt@JoNu**QN-K?UXmz?#h4jhaIZ6*nuhw*hZxEO_{i{`ie{9GW=H^GSutP1fY1!-mX2>S)ej0KU*DMv(pxz@!|a zFCa}XvlNLrAuM$olg=(W{X8TwkgJ!pMF52*l}HveZOUdmct7*D;S#fv&-73caxs&8j0V>|{8-;HDxBaAQP>d;>-`28L$}vn=m3UM(m~o{+m+`O zGKUCF6qTFE=E}2Juas#RB8_g_1%Fw=1Yw$lbOvE#izFnAUV^k48nQH4xCx8DBz^nS z?3`Xi*>YtrOY#*J(nd%|ZX2>vE@T%_X(6i>Ze*>l9T^*+$dZDAoNSC_VbrrSPhU!k zmbFt(V&_F=7^~)(lBLe;JPEh5#j#Bsw)l{Lfd+jlG{nf4(a)oGQ8GoT5s5b62^X)DG53Gkvm_errvf-oZL;rcc+>XV%1bcCe0{>EpHZi8b-$4%QnCPMhiJTKe>w z`1TI1H?;7mnLb)eA72wEcW9k3(`8@5RmC$;KDThA~*To@I9D3k-0HNiv*j#t?pHF>t>Zy406--`%2AuEMtKeCZ z-<(3Sl#VBz_W|zkq;qph%CzAJTbf=10RV{lB=fn@{cS}VbYgL!L zVXL`)zgdTGs$tvhrk4?Q3fmLMWuFmqcwl>%v@HTBlB)ZW$2qZE_Cqg|j!yGkbwfYB z&{G@EEC-A>hYOs569JcCbTsSdcS~TLc#7bOZ9Ch3RX^DCRXyNs*9fX!(Ay=+c;tI% z1D)j{NU&XP+pijAHmf4omA0{<2(|q?YnulL%OS8jxKpC)b;cCNCp15_i$nk-yb+=0 z@T{;LsfOow0kiWXJGGrLJum$1lprietI_#gKp}3e2IsRowX4x)>%K@E>Cd5@9>ZKZ>C{yteB7p-a`PQwBRAbF zJJf9#al3?B#@*%Q+TlJDon+^yu+J^GEXS%X5NX+t^clxm^NrhK1a_(4ZB&T+vhWKR z$e(TMJCwx>3dRMeX8xi>HQ&4ILZ9s8tfnL!8$l1)4@OJz3dY}9C79VUC*o@8Cd3TMx-rpfLpdPCqt`mLyH`2XWs|V0G#?V$V~kV90N#;sQRsvrYkB>DxwUL!XK6y zxS~M-*f(?_7c+h;0=@-ghcLbbhAr!1-aa|cZZk0Z7BTz8;fkQ$g0rMjF6-Dps&x}U z0QR$pQNNWQVD<^(qwrX=PU=}g!cFos`aw9?h0|}OPDz7=qx7Zzi@ZXDM2CY`0Qzvy zZXcF&O_CX*Np=xp=Pm$qtsb}8p|Q{JWh(%f?G~6V;FujA(kSE=(0vdO@xX7 zrui)l1Rtz#M&X$4Mwo4bG{{52W7)-F@+LWXBY;FIb^y_6MvunXU?G6&q>u+h zJEPM8V0SJx$`t*OLcyI96$``)EA1f40+Qi&;U+|SlSjdotb zzym+L#&4>qU(;u2VeSQ(I~a26Eh$ArJsK)u22n6Ogw7-|Tl)As!)F-9zD{fIy$ci# zZe*_13wFJ;N8d9Yl%}U{+IiJS09-+N2Y80POSvi#I9#z>)%h-lLKaQU`-r+(YdeQIc#00O8E76y!bfcrM-Z5l$46P=I8i~$EZ~Aq>+ZI|0u1AD;sva9KV*~d;d@%X= z;=jIIi=AKbJ`)G;&pt5L#G^0UrTZQA^n{t7sI?zi3BO2o)RW_8a=g(q&`9+(x`)^^ z+12Qh>RrQT*KnhIf1|zoZs|^GJt3qfUJ1ceXhnpyC)HU`4w}iqMq4kF2d&NnjRV8= z1Mipz-r+6Gm>rq*sE|7NN(gYJR)Dp2vDXxP@6E8@b@$i1ht2Nc2S+u0IK5+lq(|Be*2pSNOV4^OLo8tK6Y<=RYIdQc<@sT<4QElS-n)u^} z*ijeXGDS$cPQCUEBZpbG2i@r0U+>JAotf2CrqP|QcW2G+?33%4vuFHC z&*bADy$<_FLIBWLV)y#iTZGhsZ-hv21X`JFzkA{zPTcqWTKtt*m&Tt+1M$oZGC_LY|ZdEF+YdcG0-mZg?EEsfOiMyliPdw1Sz zq}pI&Bw8V#NbIl22hI54{d_$>Y{rNGcRdOk-x7vfe{*X1vgrP;7<@nK`)y+4ebM(j z(Fb(KjT!X4nu$mOrT|n#~EwGTcBywXZ^8bHV`P1T3-# zO8_v#({ONMVCsQ<9TO;iC18eF`1gd_wFQ5$CJ}}ZJ`?`n4*A6OPG9u!rx#weob*kt zFSrDM>$>}gE?>vJ*@Sc0N>Q;w)R2W zc>C-tXdGefWBb~6*K9#2W5oho4YLiC@1JzvR{xd^ha(J#@cpxAtB3_0c-wPkS2zIY@)Pvn-u>0PL XT5#Y~|7*YOc6F>K2mdHAf_wfy{jAG= 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 0000000..3283361 --- /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 0000000..5efd0a3 --- /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 0000000..9e89e27 --- /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 0000000..1a1dc6b --- /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 0000000..7e5271c --- /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 0000000..54247a7 --- /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 0000000..e64cb3d --- /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 0000000..042dac8 --- /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 0000000..6206631 --- /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 0000000..f55e9e4 --- /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 0000000..27c8fa3 --- /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 0000000..e944bb9 --- /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 0000000..32fb19b --- /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 0000000..03ed925 --- /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 0000000..3f10701 --- /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 0000000..f198fc3 --- /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 0000000..ed578aa --- /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 0000000..c25273d --- /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 0000000..9a89a83 --- /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..ea29626d2f9a8d8809b68c02f9c199fbf83b9736 GIT binary patch literal 938 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 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..4d4f881d58dbf04e128f012ef034fd005ec7eaa4 GIT binary patch literal 2245 zcmaJ?--{Dh6uvW)nM|@~6YC=CR=o&iO?4AmUsfuDrC2EKDz#F`L#LD6o6YF_^4=TW zgf2+g2iq4Pebv6Svj0GR@(<`s+AY`)3PSOrZ?S7B2!)y1ZMoIas z=X2SUiU*%}IQNsiD_l9(P;}UYw^kNdw%Vi3)_D+a5l$K!BMqHt4TI;H&P{IZhc9iN z8SA-?k#QprUu@9j)^m*lGkK9&d|gnm$AU{9DoI_M z#z!aPs}+kBp3gd-q%7i+hLNHn=Zv~xkHXQ|6)wU;U6~!16riL{4sHZ*DZfX%VGMY2 zR!dzamf)%@!j?8lVEn=wZ2>VL^B%dYE#Ji&4rIx88{YUXQz-x@>is(~3gH zSC!+&Ui~T$uhxC9S&w_F6NM*g@4Q==p5lvmHIz!$V=t~d9-I(R@%m(rvYzH$i+f3> z+4X$pV9_sg;drcn}SdWb^FBCrS|(F4vgnz0Ainz9MWIZ0?Z z?JC-pz*J8iPuVKC-}Ay13LM4DCR|5i+lSy+y1>@}8X==8I_|%Hfh#07kX+HIJ;is{ z73h^k*FqmM>F-O40&xir4RVzW;62U}R<#lX+$Uu}g7M;DQcmouPLjjV0-IhSzygu0 z>Y@U##7x7K2pFYeH>&pI1Q|m$HAMQy(z_>dsJ+&BANZ0@Sgw;{kyPexu70!npuF%) zd0}8*98@oE!dhPVt-J?6++6#1ZD21A4lQlkOE=aYRu13JeQ)2fAJCC$H9<0Q>cqG5g;GNAL!0 zBfxDJDU{OWs-?ts(%*&SBt^#wBG!fSI>|1_xzcrgtT62Ij>DoB2zD%@mr|D)5YR!S!%OX+BCM|rc!GF@1DV-CVT8zhTZEEb+n()^YI5?9d z(`HDR)saIE9fQBw44A#shU0d~@O#lpDN57GJ-1I~)j2JW!Ie1N g@(DTfh@ARI&uRKo0?V`616paY@A%&Y-YE?K0eOg0u>b%7 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 0000000..6fb0d7b --- /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 0000000..ab8d53b --- /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 0000000..15ff42b --- /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 0000000..eb16e25 --- /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 0000000..5007a62 --- /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 0000000..7a17b7b --- /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..06bb746926b1a4c8a706960abc66b565c2d365e8 GIT binary patch literal 229 zcmXw!K@I^i6oy*_k<8joY%RHZljR tEZ~=;Sqds(0sTTb#MoBv_H=JVk;+-t^ssPm9^QG>DW%UErH!oN;|HUqK=uFt literal 0 HcmV?d00001 diff --git a/venv/lib/python3.12/site-packages/pip/_internal/index/__pycache__/collector.cpython-312.pyc b/venv/lib/python3.12/site-packages/pip/_internal/index/__pycache__/collector.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..e05c2d3894dd54aa17a4d2e867bd8dd77bd1e40b GIT binary patch literal 21883 zcmd6Pd2k%pnP2xz&rHt&4DOpmlOO>M2n=|N6h%^^0A3Oa(;_9W#+FCJ=>{?29B}u5 z6lMV#QkWR9>?S5l+A@{(mgz0mMw|7OY%0MBPyudHS#CwC>?WzoP=Hr9 z^T+1*z3!d^8cE*T{E;T{-s^rxzxVpPzwgaoR#bR6T)(`S9{o>`aNK{T8|!kLg|)4A zj=RpuT!@o-*%s$RJj-n%JIjTTz;Z{(!E$HF$#Pf7#d0wuvfLf=u-waXd)$|(2vzVj zrVy`8_(OhHcEqa^)uHM{O{gYO8>&szh3XRZq54Eas3Fl9YD_eRni9>S=0r=VCD9sc zWqq9Sw#25;CRTREHz(Rd?W`=urNoxdmc-W3R(9`>cOSSeayerWi z>SkqMJdo%K^{{e9d`F@;)XU11@xDYb6l7(8yg#usw3C&q;=2;NL%UI~mTTgB5_>~? z6Z=B@5)XtP;5nsQr9G&{n)ZkG^IX!V90={Vaf)kHwYIsCD+gcWjl0l8N`rDpIW%l* z#)HsdxlTDG*DFoRA-W$Hrh%O&5BeR8Gp>asW^2lumOkJy(U-j6t~2DK^Ruj1tI?{1|)I zi)VdGMSkSR-JE<-4l12;ztW1mdf3=2c_((MM&3nZ(;r)(DDS@N2%ScchuH4yQO;ln zk712_@qCDl!uCRGk^^j3PI(_@`ziM32k_?oN@M=bXW7#Oc=}*|j-Q^e1rB9C?m2n>%;~ccRZ~>lIiHHe#}zH$)ho_FefC&*;N-D^$4?EN(8YmB zJRZ3aS9D=87ESBoskEXR_ori8TCY4ao~GL~k+HE@@}lk;iX;^I{P-Aph@Tou$5P2i zTo=zNUl>=CQAKwcRgNch5JfWo3iDRmoQqlX|X;wm; zh9M<=C8c7K$s`tuL97~q){Yk5b4o;wj+~38#uVIo&c?>hDVk=yu1bx>G$lNoQo~w0 zk{+km`eRy{dc-cHA{JL}@_L=B$dPC|92rlKgoo8sB0R3f(bRr9s{Jh?RKTv+3`CN0 zOpc@#?KoPTja*c856$5m+il%&Amro@vNFkr|?O1I|kF8s*)a8lTi~r>9cSS z{1MWveGAETE{)W_F7%I0q(@T8J;7bO`?XkF=^KkgFX3xy{bRAQ{%{OEQ~+^*EGa9` z^_w^a>>8WUtHW%*VSq*0c(J+zFW!$o?HH12Zr#JxHeBCvZO8kZ&CxRBT=iDI{NU_^ zFFmy4-IDcgS?GM*8@LhuLC3A(Ki-iI9(i-yTfyV2was5XlXIYb&dK?z)-VtkrNp|N zW?`)tg)ae86b=lO3)y5|vCB66*=1qaIl~R}vg4{RB+PKn@gc`KF5uKF!$Ya`(X*$3 zKxrkJ)_rVClId`IVocF}COU>?MT@E(7=9>fvH|u^0V#vfM^X4DUkszO_DSxmfW%3D z(q<7cp6!QJGC0)p<)#>enU#W40dmJWy2ehjYeM1o2|Q{uygC%QWv zj>aRJ77lAP835X}+C%O4BFQwCt}bW|Iex5Z|aHWeF%=_EnR!eQML4jZ%BO|iiA|on4Aruo4%!A2*h4)cu)K_{> zch($U-k(v~d&cza7 zK5Qs}ImnQ)Zx&S|`magPmcq%iCKY1i04pRy2I8#AR2oBGj>KcKRo6##28FusE1sh6 zdNO$_nYxk$jdT;0=^sfa;+YO`#&|3mAzsygIVpo~jKzW)n`Q9wt{v3q{wFmW)l$i! zfJ=87+o0+8i{Ou)*g>_65&|sUWg@TcOemmea=@-0rbH$g~L~@fe@P$zWnz>3z7=Icu$gA9{ zAQ~;`IXH?T6-4vY2~VjZ?abPbkrY$6avZoE(oAv|QhW|$P1&aGQ^J&E$~g(ze3@50 z={!HSIP{Bzer~*O!!^mtw%6?zf=s#6UaP^R%X$aTr7Oxkoe+RdzhXFWPD#oD;giRX z4oW6`5E7ZZx>te_BN-q6BQeT=)!zoA=)>f338FwAg)T>8Op0V;L+NZt5@2KhBXE-8 ztAUeHVeoNr>;KxFcT`ZzrZ&?}rtB^^&ibzv+58N>l8R-MqrVKs6wL3~vp+N6nS2`pom zfogTdsAkbG^=Y&t9MGOZ0;!>j>)Z4F(>G7A^d8Oj9(}W8srPtR2uvTJIX*WyzkQ); z)m5=r-?I+y6dfZ`Oxg4dHap?Gl!PEyQc^52z7JkmxY%1goe5F+d`Xx zXT`uylViX>1B?T(TX@H%=_$Jk;5q)Tu*Le$U0ig62c8%r%*m?q8 z%2ouxdDJQN25R^Vt*sJJ!#-MV-4*hSoGkpyyl^W!WaoEmue+?#rflh2t1UznbG4XZ zec7iUKX0+zyul|Mtg#AtxfRH6*<;Pi(gGnY*&w2MBTwTa9gRX^13OEa{7fQVW`T=D zVy|@K*m(ne4Nam1eNAq6p7cZzehsRcW+;xTqDTPvw06)C({}}>Q%nLU(Orr|wAUnU zTpNo;W2td1J|V?pmlT?ZsUr1CS`kGVj;R{BWr`s%pd3gvOXm&EVJ3NRs&V1x1n-$n1$& zQjzo21(PdBU}9;DMp+ZIBnXT1o7CI&q`sxYk= z+ntm^B1l=4hC%)yvuMV6dxFv@3OR`gcAd#NR}|?YlR^qRmj{GiYp;lkGu8IPi%gMr zbp_jJyd0t_(XfpFgpy9vevd)bk+y3YTdxF`dX(yVehZQ1A?XW;cLsN5s`HYL@nq+& zj5`r|t`DOg-U){7BuE}hXDS9F0FFKqnA8+>Y4uThQ~hzp&Nfc z#og}-o-dt#;q+ql*5z#nZr3htJG?9$A+r3?>_e-f_ijVW_1Lx8`!=DvX3g$wtju+D zn*;ZDG*o+X4$jxO#x?t#(}U}KIY&LC+u#9?#<}#e&}NRjDz>w?Es0xJMc>Q5S>KA- zM0(8T8_i4No^_YtaOQka7^fdM#2nh;5_N&dIwSb=D3H3Ko|K`VUFOumkGD0HlXPCg z7<7>ZLgwi!O+u+S#PW|<7f7K{y+sN`o*19wnB;PJ(86Dm%YgtRk;_DbCLpOqQ;bT) zl7xm#s3y|`OfIH|pamK9WGuawiR-#6Izmi74SRy_P+(4r>n>O=G(f5DI%5{x1OuRr zk%W2>%K*sG4(fbDjUq1vm=*>w)^rRTktv(2F|_^x^&nuI=Kk7MId^2?GuhhSJHG0d z&&-}#@omZawk-KNX86^%j)kFY+nyPICYXf|T2o85g8A4|P4|rJm)@E?wGDGuzJ6%Y z*S_lY8yp;C<}ZsUuaUA`kd$SYY=^B8MgRqNbj1NnsRQ@0p)0Ooo9skcgegbV>ljj! z{f^96gqsjuOts&Ze+$P^nE?*z82}u1kffP=*J&c6G(#7^`3xRos@Ah0*-zEfn@D*^q0dxK_an0TD23!~5- zbm2lO6<3L1>UJ0h)#p%BAESh}$*}fZq7o(l7JnM)3s<={o6XUj6M4s{`T65Hj`D@{ z8q0G|-qA7Nv5uP#V-)I3R40FtW=hxERwPBJ4w@_56}uu31qPxEKyJr`0|qS5St5C4 zk=Be&oj?nQ+$ETRhXy9lH@eQ57;7vjg-0bYh7S;h9E1;0TNoYaXgvIn)SM;?bQHa8 zAwvP@#?2(bnlW^Bno1jX?sKotoKTcB9kP`hO~x)9UcPEcswn2Us5Juw7)PRm7^$uUTHiTCnbe! z3B_2%hI^K1`?KKOFt$-K$lg{$|E0r+rQ?yfraWtirsS4#L3Y$)83pz#;upl4z%C%> zbzp-_ND#pp>2qtutC=Y}&vk6vEVxj)&ukGLE4PS`O&8+OkrI+B=;GZ^B zch?mag0Z4zdPx5Q%wvKwY}TM3hGQX_4jzI@082U&G~2GwAOtQjJiq6!z4qwb^DB)# z*~Xrwx*Z_9i(;<<#l-zoLeTPSd=@p|1Q3_E@T%2Vv8^oMGWX;hm$nE9m^tl^wF6de z?Sx%T&{T;2sQ(NJq#!mo+70zfNDMh>+T0Vrxz4b)H@koPy|MbdL!<6Mf<3zH^{;rh zzUAHe%i5OZ*8W?qbciXTBuug zbP|2)TbA|`f$IBl-H+uTwGe^oTeEY{E>^kjM2|0pUkJ}VvE*nXv;XG#B-#5n|Df&% z@*6F`q9QeKW_39a=WAUQT0Raoh%6COteuC@^f_45VW z&S>5yg7=yi-s!Q*h1`NF<~zunC=2zn?PA{c4@V{#9qF5%9$KlW<^sjysK?Pcib9tnRHEwsNekIdhFvC?4!GAAEghsnsiUP zCdJnsmetAJx6S!|>!5x6Bl{IT;LLo^1G9<5I6at6!2kgs!3e%&%1wqHY9gk@Whn+r z6Xezr*m{&WT*FDa*Cb*@k|9BvW)Nm;&>f`IYeN~wczU?+09p8n+>^gu7cWHMt4AqN zZ8!isu^i^_fQk=?2>F5|vIgbOR9ptAp2R+o1#;R`BPKKJm1NzaDX_J`*Jx>Ox-hIL zvhI`>D3*$PjXJxG>1(==jbg4M;4ui{acUyK?;k;5%$+z#@{;ak%vV*f(;P@fGsbe7 zV-b$fUK*D{alEVxV~LvjT{L(Pf7;(8`5PjI(B&IiR$%3=?_8 zFS|~FD!!bV&CG9mwfB|YC4bk90L|z6$!jO)KeKRQsV?w7C%7AD2Jh51UO#f}$ilW8 z!uQ3S;!^FdnL%hwGn1=TO{+BxFFlrXqaDZ&95ofK^MkLReC6a)#rEmrX!P>b?9^NS zt_9ch$yL}m9)IESIpMnRns245BU{z6aB``tZ&?W5^;EvxJ=;A!u%K&>T^A zK_Rxu9>~e=2@wV+;<}lAPbgy$dl+(_FwE^<>v1C{;Kwo{~>2 zk^m87h)Te95I_}4GI4e5 z-WlO-v7HGFB_bpN4g)(g&2&q3SF>n z!|d79W|}-XX-Eg}SQz}?$?u+A^7k!@eQc69`SYNt`%z!;;OZDrPDK%B;kYn?xGH9b zQ+?FtcPXK*QvVetghPgK)I%jgVV3ap(x-8EmHVaeaIT8m)_t#{*0Jwybwkd9904_r zEjbsJM6R}Ve$TbOoSW`ETxE66OC=w-X-kg!z-{fRT=P?@hj#?$Ye}XH8as?Po*l;E?iDWt-!6#sQtvg9iPRbCI5Hku(8{7HU z@nZFlkigJKAB!eLgwPO%{38HBDElm~4;z=+yy0VPs7E+8r=7esW z&%E-?;-=lJ5OxkqU#oCIiWB7~Q(^;7s&}z8R$LN{;&++E9=Og?G?SBV5uqY0rmC z!tgz${s27~!Ll~O*aLE8=?;VzA^f#uE7Uj8A=9{F`PK#_ES%Fi(E{skl@L|v-ZcC8 z%;4O1NNRJJUwVGEvF&R<1P{75f!0;kv6Vo`DJ8V(_h?RJI5AL#smfRmXAs*zp%TqP zeTb4nNQy(*h`cZwgYbAx({T6etK2>4v|`TVa2%W;$Z^OP27g6auF~n~TiBE1klje% zI(EC`_H)0m|7dFQ;OXq%Gui$jRkIuGusE4+(EwPVRBzG&-r%kAUu~+pQK%iu~2B3kv@;{RTA<* zd}xyDk0|+5Bqs4OVZRYpZ3g^BPDpYYt3O852WgYrQGgKO;Y8o`7J z(Y^E5w%g9P%{VG%yeXl>F7#x?=AWbR+w*?}OVFON3&f*XkS#ndMiBF<=?MgdFKa9y zE2}v!IF)^f`RcGcrP4E~N(|#M_nX1nzd^S|y3v-!v@s!@dX?^EEdp{cDWx_!_0Q03 zfOhd13b5V)FM4ituk;+u_8eUDKQw*vj<<1DtTMc*`NI6>tk}I;-3--)$i!-E-@4c7 za}u~Z4f=o~*+qGNo2P-x0I;%@yc`uTj>MGhBmk6becmWdG+u2g7^BODjL8D=fMRe> zdyFZTkG?DynNr{?pTkEtg4YnhhJTarA~J3=lg`^`%2{Ma>#cVd@}hY(6rNh8vX+$( z*-O;Zh_5MQS&{QCH3v}EnW>WWBqPqi=DnP#)w*3Hdf$vREAC?B>#2tOn5J z_}ATetCTC$PlG_ENlvl) zKQJYJLVq6!oH$BMZNr79q%mx`UITQ~MemZiDe-x6!pyJm>7Y@^ahQ1n-n`4Yr*{<3 z@I(J+WH3V#+<~P7}9d7v5`PDT4}k$(-Cpdvn0*QOIAfEMQWZ)e`q) z*C_Fn4Htd8(jAcflj66z-^)i`m)*g_m`64Yh+B+_^K8W{kgJM!b%MLXJ!gNKgXOMz z=sw?}5{#<^9GO!CMrag;cR_+DMny_JvI|NyG7c30aZqv!z9V942*)2wsc9ArHaVi49X|xpGj#){29peh@uaa?%L0 z3oOWoc#ZDI?iZi;(p~4VBwCQikgOi3UL+vso}$Az@GBsGC(I_V{tn&P5unG!Fpc;F zsUOB=C?Pd0s)s?g<!#bDy5)=XW8zcdp?rSL1gcef7jECtf}C%9+BORGNr+@9ITW(IKN2m)e!Hoj81HCwrLVb2ZUQsurGJIx3|V~h0% zZx1YskK}~Sjwg9C%?#XXT=qk6T|dadp1b$<;L4$M*+b`+{pT0O^S@qykn`2O4^iG@ zE(s2;id}boRli~@I)H$)^?uIR@;)aPHL+D3!YZ3NUqhM723A?mre=3M!mn1Jz~L&f@*5p< z(XV%BMI5yE6{Dl+mZEl(8!PStmR_&!P|RoZ(rC?3VPqPA| z^rz0=WBctt-S0#BXLjH5I{VM+SXuHN-(~;VE>=F=dm?E6d9VR(ej)fzHrapCw3W(- zc%)IlUj8B}o-XF_E?B>xXuy>RAs36RXIMRon+UV(o9cQYl28@HDifo)!)O61< zfZp&#AohrPw8?;qF!_y|BZMncOC+&K_lLubwXjG$9Li#fuA!TeP@%qMC0`{JA_V=X z9DEM*O$$BQ=DuuIa7hT3+{2Y%bf=yr>$e2DwK>!j)-Usxm5nU_vIDj=3UGsU4L*S? zW`A=jqAV(I)N;cjc>yf3(0 zQj3~8yvvVg^@z8r)+@-rWbSNA&HM>7oIPR0lEy&8nJw8oK1gJonp++*GeQGKH%8|# zB3M`k|20kxX-1eYG#lz>#T1(ij5*hm@L`b!p1qQI7ds*cOFBC^Y@7z7IA?NOm@_CG z3YLs|)0{_yRQGA@3@y$y;t;Lcfk&n4Gzk?1j%yMUQm0{_L&>;4A_7odMKz1RwM=o0 zX4BIW9gbNfG7Tl0nYYA!o1lm|1XG4L1&ot>jhhQbH&@CCzt*dXb;FILg_9{mA&i>B zE1PCsVZ)hwwuDjkxHP$lvyA1e0~s`f8@`4oaUfT}9{{ zyO>NtAR@`FuP>SEV+2YvK6HK>G!?j)lI*-gS{+ARlqo9}9SAq^t?+*ME@*IS%0^X~ z8RtIVTjE3^z#+r(+HNFPti>~kSD4}pAzy`K)n)`jH9YAYdD2-_r`m$P@Ne6KJDH%O z(TDbwfORU5egTi}&eMFo3MUuUh-pG0CZPT`b{!GD#4@s%-p;@M`+(!HX zt@=Bt1_5Z|8aJ;rbY&a57VEoj>|fb2kj4M{ff>)Lw`RrL`j)pfyKUbcUk$V0RCTUa z)m|5`iP)XnqsvXFma0yzJM0ye@C3EA%{&Hv-mu9y$oN)$-;Lcfp7$EJ8gc%sja%q{ zecMX?_H6xjh;mJy86V`Vmaf&h*45_i7^lTELnBpfwt|yN00^@-2qwwCA88&kaSToJ zSHTa*$S2$OE2u5n&iRF-h zo)P(-D3n+ZKO(rUaO?{d!j?IbM@@FfgW?a#rfsNvU~_a}m+;O!Zg2R63z%srj5a2J z8*IZ2eEu6+ei8EMmCOp8Kemx++pra6qs`a;d)f}NP{9z0&$V@-`_|wOPrq?`*-t{B zu^&DtT@>oe4uI=*&^pZ@dNAVrNfRz{=#Z(1?bM5y7NSl0PmVX8u_5H28^+JwToq@3 zYv;^tJ}m3QJffUI(BdNqt|ACzS2=!`pN);p#*(zGF3A6Z?-SB_4pq*``0)lri|eUZ z3gKJjg0sNK^5~7^+nI} z2k#4q8_!|oJpQH}S3re_N{9~$AdGvBpzuw5o_|3*F6CddwppPZc$5=!WZ3;??Lc|c zPFfUoXJgT0_Tx7l>i@zU^-4mRFgrva!Ozm@9xytfRG3T&%#Qy*(Q4?XU6qhCRM)HU zn=G0Vg%}(LbG{f$VywTSvFspKY*dvxF~=f{IG3d9X(J?6y^D&>&Qcn%LFg^RPTwZF za1>pC&G_m2oM*2mSHo4;tygmu&0rm?+aFwQ?=bZCL)rF2@V>2fbgym-K%WH@;gH<3 zqtkEJh;aUs{@wil4N=ADH@kKBL%X%_lXk0pwWDj}Zte5@M*TZX zDr4)BGF^Fvr&|k<$Y>}bOl^XfpX5n)hV?#w@ILQ>0K=Fe$rgbc-D@dUXry~Tr6QJ3 zk?9wUnA)K?k!LM0<7i=v;c2?l@W2{_k&vVNV%o7J1)j^t0jw@MWe7H+E~>NCV6QeKVlX_w*rX3)y8p*lYeO9j(w3fwyXjMos} zh!d=uMw-gA&pu1?t?4S?0L__A9}DdNnZ6adjqiiyA-bh|rEL$6oc+p#@TRtv#_num z_e$f@Y~#^4dzTtNwO$K2UgJEQJRj6?-s;)Tm%4NHoV#Vc0Y?^BHto%B+Kb-oi#N4h z|KhbTqQgGwu(`BD>v|LCgCw>&>)rgFE3ZzyGPUgOgZZna*`l)>*fwGeENG&efO!w?fY>mvbKKi)7PK6_SD?TufcPVMl;9Y2ClEfD(V{N z#=m}Wt`{NK?H#Kf{R_cce9q2S@5$Ni^_7t2svGXP?DY*Z$H3()YDof|uY0xmmF9(g zOU;30U(b8~_B)NOi*3QB#(q}lTWSnKj;n%c%I^03=KV&zhy`o?yCd5M4+#POc%WgU zG30ynnHwn~QJ872fJFLv8bha6i4+*IOYfnC*jAMk>hy$4G}&;#Gbkp3#PGdOQ0aeA zvY8SFNG^Q5jfNExx0%fSHTt}Nfjju%1qXcaaJaYMt!~XZkYghnx8___5-FO=O{FT% zSq;asvOABjv74N)*WtO_(42E1$NSoMfR?wlvbT)PId6@PrYqa35v8f}PzAnnyQPnHqhW5}vl`YgGDsN`8ujS*Y;?4?$+c zW`=FO5(*7HG8IwXOa2S9fl4BrE<&v|I?%V%oj804>{rQYtrDwK2_03D67~&AR#Lr` zki?@h^H?R7D4JdO;wPknVVu>GQ>seJxL#NE#F~btR#R1bxvF5{M0vqJt~ar!)=yIv zw;@SiZ!WFIuNNtCEeLXQ$q0|$QntRt=)-ioO{MKj(^Jq?^%>;rt>xQ{r(;kAN&eC| zjKXSy6go`@8#Q*od*gzPHi;O1go?y4y}I-zF!5VI3ugSZoq;Tn{5V61*g_?e&U8A| zdzu{-H;|V|yy0H(o3=USB>QP0js0|&?mlLn;5YmfC#d}?N}i@9LP?C0OO!lM$yX`) zE+q_kzeOeH&-h&`{TU^TlrUUo!2KBA_EOS=w_XNu>M_c>$_a*2R0vX`+&2OdsO;W8^>>XmkazA z_sDYBbq-msvX*~@ zUuep4l;4ooSiauN^X{1m1X1$toapB_%|~+_vKx=F?DpO@y31`lgyB(xjB1eGKCnhv z?s*>Xx#4GTzJ2n|b3Z!6-uyv>oA0>CAz5#-@xHmHbq-n1Q_Z(7^yD~Xw_4UH!-0ES zYtGip*UsVS4YC_ex3=Bf{5};yzRbE04m9(@dw3RHN2zWuw2pFJ?g+P||DMZ*^}qp? zvs2-&uX?UyZelKo!`wLsJpoDc*3KQ6Kb5WR%zCe$WtcC4mM(<^r@# zgmkN&-VNpUj;VAfqGI=&PBPQ#u~Vboo!O|XGd0~a*_5}EodQHTfDyTdy>YfC*{UhX z)WmJq)b4)&Irm;X2(`LXJ+oDNC0?9+-uImU{O5n2|NccqgHgmfW&L^q*hzxoM1`!!4$*spQI$bL-|Cj1&A<{8U`WyU&Tov}^W zX6zI88OMZU#yR1fshFskshp_PQGLdUYsNj{W?@sLYNmRknuW~~&y07%%fgmO%}nh? zEel%_uAA_&ur1=Bsh_ByX_#o3X`E=BX_{za@%BjbOv^;ej5r~(XGf%Urfs5)g`JW1 znU0AL7OseN&TO05#=@16u9@zMZWeY$0y8}mJuK{wY@g|!=w;!mNZ(BVL_Z5xM|RBY zoY=|2p2)z=;KU#cdn3DMh9-tsxF)iDX3xYP7Osu#o!K|BkA>?Z`)7tHhFRDbIWTi@ z;vftABZp=VPaM_>l0`OSZ0aLNW}cXMLML1jLJfbQn>eZ$q(SM}dpbTd6UU`WsUppsosdQ@>M6|c6QeBd1mbHYhjfDF8og+y--(kpA+#sdBy9^dtGO;3C?(V)oeGK4 zsf*T7>$gl3V|wAF5Ni9D5Neln)89pglIuMKkC=FpbWNNIZIkR$8>_bq zeb~c7-O>nJP~y=};9JItr&#G8l-{nD9%pgAi0jkho@R0Vh})sXon>)55jUX4eJM1E zR(7$LPFysHhS0_{1#u2(g!+P%-AFmNpbzX#v_3OC9}h>Rm?%q;U|b4`@mcZg!r8H2 zF&qs^uSl`KqqiClShE%9UpPB5dHmGK@h8W|PiAeS@@ztio|EEP>sVZpgBK!F)_5iy z!}HT~@$hUk7|9wa*>rw>4r!)mqlgUXvi8`VG!?!WmgE?o4CjNF@KZGvjLt^GQ^80$ zAx%buGZG@5lgENF={aQNB~5cdIVJ^+*@k0MEUv^KjmT0kv@jNp#ePGM@^@F0+d5G?UTzWMq~G+Ie9< z90^TErFdj^3ePoDm!+wfCS_iEY;sO*-+S)avuB@v=KRQse7)yTz;=FNPC7XsltTf7 zTnFIDdT2JZp?F4$%}3(dinGC~mx7n1QEFZOfsi%Q2xgrx^VysXM=#E1Yr~hKv$9m$ zde$sU@p(Bqr7Sc8LBWhadft2msNjZR6XFU=5QIfxT3LRSQN0#*@9WgXv1C{@#4d*P z(`ak7>*N$o?v0uM=Jn7A#kUR}3!*S9AeuFo1}H+j5{_RMgCYS#SB%xu zrT})Vj~8qcu~6rwemhGY#_|i!sFg9W85WO`ZWaR_>b#1Ke<*l4sQ#3E{CN&|lbGdAJ-Fu_pP;&Wbz>Yir9JXw9-W5yKaM z(db0G;spc5yAjaIJ($Tabp44TLL+!Tw)kThx={EcLmP2*pu0O`Vsti+ffyD$E-@>Dh2JYnTbnWevd3Su^kvuvgXsIJqzz!v+zOF3ew&9aP$_VC!@0RuM4C z0VJ?dk+)Npig0W)4_B-j+9qPO!fD3EFD~r3JUb)pn47=6BQ`Z3Lhfi>dL=#?oD1&& zoW8sx627p5A9T)cS8+ zzJB@b*dOh>#sy?&iYE0qn09f zV>&izO62`?JE-0+AP@`U_AMdf_OBRk*sj~Ys(SjK6Kw`;Pyn|E-3ku{KlFymJ1=3)f%x&R4FEmy~MhUX8!AaC70U-%J@B zE#3MR~;_A5h1$r3W*&n#Ib3!}s> zk}YJF>>(Ryb32Q%hYS}hLk>{>&X5zlg&iD*OR^|@g)vkCYT3PD2)H<9I6^o*2+A;V zf}wfPJ99ugY;z;*De-i|yo3~D3_S)#Y-928)O;i;i^`O8OrP-f%`J3)WnggE*S^|+ zjB3339;s&Ic z4o@19g+*Zqeu%8vhNx`kg)cWOo(JhL9|H|Rw0IPK42w!o_33i)(Se zxTrF0yo~Z7vN1!WG<)&OAXk*u`^9sYXXhg!@q#1<#h4V=-hw*A2$`-6;b>4^=n_%1 zD>geXPf09%VHQ+QI4XwYTY6tKVZ0+eO5M)co&#zII}Z^j7#O0lqD76D0GUQVgd^ej zLO%u+Z-M_P8|r26CA|`y0ln0V8jC7oyBF0jMT#rw6@xMHiWG^kU$oB&hDVTBG$0DS z*DFf>m--86Ff~DxW-dsf5C$3p!zn=VqQZz3^{Jay(IpTra_|!4c0?dXF?cB$29JlZ zcIK;ulZx5}Rm!@ve=r~hWl5ZqVXpyA8m8yif!+%(ZvmBG zo(c^|^Q2HwPn1y+A2AY)J_V>0jA^W2JRw~Sf`{YeIZZ8H0L9T@BvvqHnV2tn@ z>zydF?Ta?ua5NmBoJ`cxUaTSOel`9TDs}`n&|^b_vn}ZeWIB72&bE!Fz_Rh4wLa6* zN574ku0!vrQ`TEolYUx=t#cS2)mq6FZtsx6?`_#DnFV$8wl4W|jXrP{kta$VK zd`UI*vLM$jnnE_#&g0(MuDo+`?>>MGqe-m~tu(9Q{O^0p7QAGRcdD_A=IL!}IRC5W z#QPFOS8~0y7o*V@az1J_LKWXL6paUQpCuO`57a;uMaeb2qa*^4DxJS%L5~NvrY~C5 zKF9WkDyNB2D!EW@cS#f;)q2&^OV*HU(fXDUa+kcro~>n-cQ8-y+nTnd4^`pqei_)J z(QFM>KWa38S=fR^sWyHpAC_ff$(??6P;ZdEFdI9*(Hhp|+j*wTIFZ-hX5m0nuYdHqFh3l)#tcGf6 zeZ^0zrHKeF3#F&j9Qj}5Je_}1L+{tBLjEPkq9fM6s0V!2VU5z>RB{2A6t5lHs7fwA z@^RX@*fo7l4ds7BKJ;6!whPH!9?zf8=Tbw948ubPD5^1#_tg}YDgyx_$3^{={srNj zph@)n!9NC)u`9bM_I}WvkdrZ@lgYXiQVrx}Fi*HJqEew-m?&Hk*HJaYTzX4lIxeK^ zhG-7-M6Vc<;t)m!dWql!S=7Vhdx%s8Sx3CE)(@(vNT`P*T=WKtOC^6HWxPnz{lcF0 z5-m<-8Po!?*w^vk-G*w5I;hcc zT``TyCEY{x(g70sl{N*X3W@rn7=&nSOJ%&jtn0)$GPxac&59&12wz;tlZWF8=Rs&o z6nX36ghwGriGks@42uanyAG99|JLE<(fi)U8&6+ALPzUH9^-Om*#z?(5yJAKz#c-+AihQ*S+e?WyHcD^nkNYVZ5Rv~O3+ zx9j#-lXb_E?qeBO^}YK3l&k*}Z)4iKBjw$ZsU5t%>vm_-yDw)l_^NY)0b*yX;Pyd? zw{&wUhr-M2&OJttFpP9}GsO8UoE%=zk{OV%Asx({Yt{?+sEym0e{ zlxy3qUAMRW^F#S8Ur*MZNV-p;2j88&>*~zu%~iGc8(Y^pzTfw5-+JTDm63-|!P~j^ z?Dr?$omltmynP})bSgD;>aOQhre*IPV|w3MYTsCL@97U(lTBwu9QVbiMV|N@b?5@y0i{dv$wqW}&t7`?hy&w>r~3 zCsREq*L%j+#nUTe8}&oCU%35bPS8D}JEOyo|0!M0Ak;KGv{bHb@81 zo^rRR-90IH&#k@d?p@2Kj~wnyZPV)Pn(6zFcO8FNk*w`sKAG`1zteEDVeLzAH7}oL zvy*PxnQGdZZaR=^I&jx@fWbk3%G;mu4&(vgpw$zUwBZ1m$q`B)q#Lp0as%ZwUYMPY$Ru@;pQoFTZZ^6xx%mQxh=k|T0VYs? zk{;P2HYS;wMT&8-vO7+o|xHqY}$VbLT* z9elB=MUQLQOtnf8=q!(+($ zEn(4kLgU%g+!~*0d(3Rw3fj_o2!(;J9PbR7On&aQ@m@3~07Z+o_mp|p35(WqLckvU zbAXhcw$RaVgaqI)Ps%eL5J+E!rdZ^FNs?94oh#yd2&};faMnW%ic#qbt0w|uAhHt3 z1Gd7c5Y-c8= zFkv-nB4!K1Y-j~pi|jQi>Pk?KvI@ZkNFvkDLsZX5bFCDNbwDSR*^&%VxYjJIsC>(K z#b=nI2vuD&eh@p;`%b~gi>4^bRTHdh;6Nf0>^g|r2O9`Flx3xvr>wk~qAtY~X7UPC z)j;pUhm&>bau9sZ1qrXNu&U^EH&ah2?2S5rO#1{bVuoH2AQ6r%i1Tw~*`>}(m{=># z01GT4wg|2RqP~Qr7)-N5Y_0>GQA?aY$*f_Nxxfpdey(om#LH=_L6z<3l!sy35u1Wx z74-_mwBe1(SQP?nLayRRp2RKTdsNm$OF_zSE}@=ipE9Duc$eQ?N*M4nrN|Xgl_1de zMl|y#F$GTwI#LP>UxRLRNmpQFr7LG+^`27C@9A#nfE62z!h-O}hATQbfvUh7vF(#6 zZz#w0{W}>!9;260?J4qlR?(kpZF;Y1IH6iXg#hqCe}`8w}E2un3+9uD_wd3U4P z7%6Z6qww>q!ri*D+qSn2t7Gqs-yBc-wx{aGKHsF5dab2ZmpFTz4BRj`j~I1Lv4nI5 zv5--WGG@J04090*UxJYvv#kj@@*GCi07F7DZ3EX&ubH)?3fAwe3#=X0$Mqx7+?#`Q za}q2O&75iCT$Gbn4BM1>nDyD^Z=e!B&5VKbD&3fzl_#UKlRR_Qfk~ZIQnC&f;1#g( zRXV~)6YaVbfS8<-Vli0c#c2NqhE*=kr_?=S@a5k@=Kq4f*Z{`-s_>v&a8@gpBRRdU zqU#fmKs>)Mkk>yC`I?qQY9 zWX{!s^uPKvBdw+|eA=ZFI-5O+Dz<8{!Kg803F#$c$bdg%$OKzmGwc#f3nm!gdXKC2 zAq9q`iI*6H8i`H?=OAMP!iquAF~jgFAtsKjnT;t4dXeXCGAkid$P9aR3v6J>lE%toFX}-=8YgT; zF*d~57tBCnq@GIr*-?n&m=QIs@`@?2UX1_}FD!^Jo-MQ#?kC&2$qPWXq)F!XP%kPZ z8#8N|iUecKxM4PmO`41)U|`Jb)nVuiC3y*d-in5gZj1!=G0--I zC1|3sl*Hi65Y*EP7f>OJynM^rEH^mZuq8ik1=Zx&q|%e(VdN!eWKR7)>*Epa6R`9@}aYuOW{YX>~t?LRW={KEdrtdb-zLf%nhdu77XxuIpgZdNAoa zxZ&_89jzbL^(LLYNl)*Fr#0C*obn7Oox@4b@CHXY?U{y7LOs5X=3YWQ4Sd5v{n|zF z$6&A*fg%_zYc;RJAh4!XTN6v&Nwu>Y?_NQ8ga~68G z3jWq)>z(Qa&{YNqq-NXNdJlKOEh{5i|tu?XZknLv3f*4yl@dDeotVngRkS!#@ zmec+%ld6!Oa4I!>S z3b`aVtV*l#?8dXFD6g59LRuBlyhUj>h^X{8ZJQ2(f=_?$f40^B>8dwQ`Pfy?(n-r}TGUUgRN{Ld7*dYf@y5_K&sDWSl7FLJwBh|^PN8jP8vJBc)zjx zt?}ijG7fLj(Rkn2#x)x2zJcYj4ga>Ze^1K4XWhSVx$)Sd`ANu1w@KfvwUfih3nAZZjQ>d48&N_3gc^8tB2-FQRYMVI4k35B2m1Y z&}8&)cM0WrF)TywlV4GE6c+R%GqcCNknx2ciNkOfiftw&RTjwt2 zTAvktGnv8QJZ)S;J4_`_@k)h^kq_8775WQdK5GbvUdb8=!IOT9UYuP8G-^W`FjdWD z-zPvNW)b{tz0h@#h|Km(T@y@UovJBpMzxr&Z%4FCHJpXeWZRBguda6<{>-57vVY`n zUG=O^EgxU;TsyT%F+`}ge+~ko%g#<~{ix!o+srtvB2!uoa---Ai6o~v@D<$^vsf~- zElbYQ!OwDsK0|saL3DW~$f6#~AO-dTyT&Q~WrAE%2pJ1hH=1hYcl2+#j8GPl(Jb3rZ8s&?P1zvmvxH1_2@LhZIq!CqVW52gyQeZyV#&>&Q}S9JfwXwHC$ zWou5rPfis2_WqUl?AmYqY5SevzX|^+{Nw%)PTd_o{|8k`@!6!c3HMI|Ph{$PGoHE| z2d^Jw)(qQI{_QYd=&>iQ+hB0wu1(es-Rbx@{Xgoz=Nd~|$3Fjb0Cj)^Q!i^ZE$c&cBET|DtZT{j&9iah zqS#f=x*liX%a&7HC41znmeWGWta1a8mD#2>YkIZr0&c+`Z&70x?IGqgM16Za8>u@N zfd-@4FzB5Ma+{}H)sp#NymMRrNe!trs=rH)kfo@m4mD@~SIwIMLAB&ubSyeSr0L4p z_ye6AFPhH@g(v@E_3MY#FG)|>g>fr0&#+!Ld{2`(zNXWxf33j)nzgHVdUQU@TvHGk zKSy#_sKSYidJ%}`Md+a~fi#JNZG@N&oF;@p2yu+m%}9R=Yn7GND8z^|%hOv0+!x{YA-g-HSbjaC=rFs-T*oki73Y2LdKhE!Wkw8 zv(nAK-sWn1 z*fl^zKBbD$xw^X4NCD;m+~|}WAkgbw!I`!=nLJ+!^2w%p*-U746^z+A2`nj&8A`8A zN#HCoA4COX>~Sa-^fePb!0=ToN)Uxf)pYaP8z@%HMaSxhIxjj(rwkb2p>WhtV^piB zTuWpq!VCd;BQ$(cv|vWTmNScRC?Dtz7~PFd1NIjf#Bd-d*j2VsHnw@T0Od(>QBqbp zA4t{eU9>N>!S31UP18}_@4vJrIO?dr#hq7$olL1q!2Zwhb2AyQ#r00>xq5}+Id!p&g#2o;V^ z@B(00sS?b&*3$TFTpA|JcdA5%3iKVQgPjOPofsC_n}nzE(uhSHBH77mHSpnKf|TOL zj2VKPAKoeL$h;VX!W))7WMNTK1zVU@eGE3w>P+G^0y7<90Ey=5e5L}s=q2%uNxO&as8`cmEHrfLH#P=z{#;(~X-Qz}SGb&5XU}i%7^q zr4LOSAt!}-1gaxeQvP2k)&3kgSs9UKn6cC5A^(tKZQMH$yFcGxj+lyGfy zjiMPn`XYrGsa?VO(PNa^&LoMPm362<3656&OG>Tcn&Sd)mi1qbQ=(x`4)Ye>S~n(@ zw%x!fswD-tudvffp5zBuNdTd)A@<9;+@B&k(Rf_Nf0_;us{+$S#Pi=175W@*ph6D{ zwe{(mK&mFNY`&1L~+*@s>~^oiHM+ChfC>)!6=k(}OM zQN7{yr@aFy??A@awss=jaU|7o1S~JJNv*41G330kj!3)O?z-AC9i2&cYsTe$^BdQ` zk#zOk_tn2+y=h%*zFqStEkA5o_Z?j^!7@2n*PV1fmF#(H9rwEKOndkD559Zw4-Y5Z z;{7Hu**b8$71qq_O}mqOPkx|F?LD1reDb<&!`rgbzkK|DL-T4p-Lfmy0)yc{IrGCa z>n%su8;&KdzD!Ns+wH5NccM3=>-Bx9n!aWG2H8Q>W}HnKXHDAKl%jwO;hZL6`uW3F z!P^YW+luP@wcE&S`qk^NCTq9B8oH|sx0us!7tARBr}m~3EyAC*w2kNt zMHI0S(?bHL&0*X?5$j^Qg(8b1&{(w8O0M_y8Wo5Wagg*H5)0Y_Enrqjt(f0+=s*j@ zEL=s5bNZa1;HZ=x8e($U@I|ezLK7@T3QW-kM@rE=-XE9$HM$2q7#!QYA``%=wgrsY zBc)-HZ9&$efzgPGs1kNKZoyp-p5?y3adqO>`G4{CAAJ3u|KM_E z#syGqVzR)Zu_j?18|w=QFzy3DUwXmol@iOuDU`qDD&$ED>^gC7ZP5VfyHbLr?}<@u z9FKEVd$E1yi)9pMFY-+fYUum`gO4Xxl_^>=w0}FK3}gtKe(Q*(hWuOBDx&aDJn4 z^>n&%D24x?-MI>itQ4yJtF2F#+ zchi=$(32GyD(%^x@@&u9=ox16jX4K}oYaL13Kg_QkK9h4LPKq))4BrfC_SQndu6h+ zJ!R|Iw6KU%y5l;N9a_+wzygQPZn8k`wBBKAE+~#CDqWqd?n>FZH!bvB??Tt}`d2(r zmZpamg!nAb1We&iyIe|Wvl`2*Sa+)EHg|A)F=$Rr5-i3fi)1Bs7FttiIavtaZzSdg zGh_>qHWM1s3A^Ngz1dDy)*(5`SB_%yLt0cTX*^ZtdIDNg=r&ET`++wcE!M?i-H3$- zREw>Ws-`=%-fID_A4Tg-KU$ERYW7H8>L+S~epE}VVfE+Jpe5DPYFS#HR?bt9=3{AQ z)aEUS^@j#RHPExxYpJybsSQZ2LuzADZ+wVp3i%~3Vw=(PdOWv;8l*Z&WaCObXCb6D zBCQqvMMd}*ZG%ryl)>9tLn7kaL#a3L%OJjRTq@Ux7WCOhv1@Jr113LQI@rY=XrFoR>HG&*NHG$fnpXt5wFgTQ0z1Ds+&Fg)FP0ZY0(XuGW-E zAv3vA7IU1>lA@XK79R5EJK5G%sCP1WNoNi!6lTZJca2S0NSp_l@+#6-f|5?&Q& z<^h6Rs$(oZhdSbM^R$xE?Go4-7P&uOb^w7SIlO+7pb>xvi|W^?28~(L%p@3Nh1)nZ z7Gz+`oWII%Q;3jI)}2?HC_sCjqFwCdYXQ_hMCF1% zteR8)8HH#KZ1MQRjdg3!7TJ)hTFhsOk_(|2D7kHdvmxndyWc#x-aNGY^oGCdu7C9X zLx1Y|am}9@{+(%k`{;6|<^xFFK?=_%%?FU`6G(LeMAmk21_V>{Bgb?^1O&L`m_4Tp$pJNC#q~ zVxT;y<~y7Bn7jonl_vjxWV{2`N3&yri3?i;_ao zyLP7XR;4mkQ6vmN5k8LF5J1n#T@FH}SKcycfsd*D_s9aMWM?O+)*{vV<9hl>)KfP~ zp{Kq3mW^p^W6Ik2p*8U9A6oR04XvGtK-uoHWnljkdXn%J4{SdBt+K;PUJ;Vk{{Jc+ zrs2ynU+u3<&dV@C`vV$a0y4#}JXfZ}T-s0B-!JK~m~x3}*Y=cad(z5Jg%m9%BPwgh z-zH7GdgiYj5R?Ppa(fa^XJhZciNQR*r~4;@axSp4_*|fo&yEF$g~(-d)`L@?lc4Kj zE6`8X_zuHvpA3%Uj-ez1hYFB*y-c+zU(T88JO<^$cJGv*90Rs zBg*LDYcP)|G^0Aj7|pn3pgdQUjoc{zE$ZeDHcnCKC%C~MJnceR-6VZ1f_-tq%)NDG zE#PdR@sE{|G}#u_53J%Wc{27=7$m?6%H$Cw)x zPSz2}$^1USwwsY7XDC9exkM-6nF+qcJupowE|=iGyR~?_%VhZrn&NY)_^NQ<-*f9A zGsA`}rF3;?s=6~>y+2jG|4#pU_1LoI6IY{RoDCQK_04H0)$02+W3s$c98HTN{TFVR& zAt^=H5DbOn3kb=t;|6GCfMdnLzz_c=xHz-mh&>Cy^{^CWn&}v^zFhLb7^AF%>yBCf z68>TkDoDx@=uDw3u!CLjH>@68zO-z-U*Gf=&g*5o{!az7EwBtvSDw|OyRH`adAeb} zZe8_$w-QRdw5Q{)r-N)DpS=F$n(;$#=Z3f8#`yK|wV@Ba-MI=Bg%ZPEx9Yw2s;ced zdUPFLMutJJP$YKH#Dpv85To~jjxQPjKoH55Bl_S>cUJ*Y*Tj1$u3R7;3{V#mpyC2h zm93{NuxRKWpTfbvfPOqtbB<6kNuy|7$u}PJkEdY%U1)*(bF<^k6wF`pzF89>N?s_% z`Bfxg(hxmWUb=N|$?zX(=4hX}DrBl^R$g9xIqBZEY|1#?tH!jiCx!ox9teIaJoLql zq<`n_ZFf5EIghZ9XpobFw6iVcY+Kv?p)-)P2~NJ{DzaY<`xG6I*XHLInx*-f#(S1t zc~t#X^bjZkV%dT@BD7I*G1sYH%uKl@3kX=$Y{oGYx&l+tvTmcH;x$4Pq|7)|yT7R| zu`%wFg$9^u$_w=Fz}>1X6O6!Sqp+XCr)szjVKiSsS?>c7f-6VGQKG-VSB@G>D*L?r z6N*;(5(a_81~W}D%L^1i+Fb4&ql#7tQfkS>9!Qc$X)4N1`!U})%8?d{ro&V9fMpSU_Q zRW0eN-c(gD;4=r-Y5twW5V%CMM3t` ztq`lT2_@9djqb@vip~EPd|s(6NlqTb5{<x#wzJRi&}rqhXV<;k z;eXE72dwUEO#22?zQNmve=@Z0JGDFp+aYjf8Fzi!-I{W@t_41H_vS3fjLpGa59173~+Q_axH9F_lOV-h&nr>Q=({5uHqs5U}R`_HY42 z} zF_;1|2Lc&S&GOhMHU77^uff!7_j=8qW&0-;b>IH#16Zk4W*WtG{M2U#q{C{$4TGY_&ngNY6tga`_voPEr-P=W2Q4`2VuAfr4Bu`nqGf60 zVPNaSo$;0!!P2Y5>PP{L!dzuJmjX%CufV71^IDPuJ2FFD<6g?0btva=FJ!<0GDH3V zS;0~ub4qprWh(ExWco+6V0=Ui^aTWh(vk~&c%2%xXbzd)H>*oZ{av!eeQJ(rQWun5 z@kTY`7k!IBjxJi{2(}a)<;14(1eP#PV@!)`+5GQxTRyCYxL*^THnC23s&V<>N7O@d z>XJ(xS$G{gW)uqEi#W-W3r>}+(|sk8cwE$cE~+C0h1vcL2ByO@jLiV_H%%Z<&YV?b&bl= z(oxxyAC*02MuiNT)6N!*${vhL3r1y+{d2h!JvvXjmn_jrkP$#J^DpDItA~*5F@Z}y#*sOzRV4idh!Cp6HHT=;rTyX z!MvbTG}#h!s)J|^CfH;&O4b>UjYKImG>T6UTgXfTBu&Zq-fNSdR%O~KrR)13Z?ZlSsBoynV% z>89aS)9?efm>PN?ny^MT1yeKf)Z@fwLrbz{V7-2D+4YI9^&QtuSK7Bb<=c(yfHIbS z4`rt>cY;D{Xi>y{&ieb#>Xk#cAP(4(_aNx3PCJ@Yj^?+okhAoAj=mr6$arg)M>0+D zVr{C}y<*GMiDXKjt_$3)3nblvWL+SqH&pG0oan}x>u1*d-*0}mIo-NH)w=&fFTC`i z5d19W1rQy768K@@&dB=Uv3t(rKnU)ZwHB@b{`tcS!Pg4S)|Se4rCN9Wm3Js-K$7At z+tNAW)Bmr&{!yFh&#gM#^BymX#7S06Gp0w_d;_;fX$-&;Xp~%e`VCYJu{9+Zs_cNarTj=SGmTQ&fsYB7wN+Cfgx*%XBRneK1TBXr(GZg$5Www7 z)$dq#-FLO7UEL{HHwm9LvGW!q4DuM_@#iW8cVJT}au`xHv6>tzik5x}a{bY=f}-O9 zB%Uq{0vdTtQx_y2o)JOJIumx4L^6>19QTK;kUWf<(cEVgkRYnbk?M}7*pbZt$F6QP zYNp`ZIKT7>2m_;h@*oDG$1rUd2kAyO{HiFs1QNf2q^ze5)NN%<83w*ks%Ak}<;K$F9tMQAy=DHvOTWgAHF0YjDjDcAlx zJ?pNKq;-VLKn&2kWi9h_m*ikbDiVTdc!#*j-?sd=^--eIkPf^Z28S*t_(J~D3qn?+ zeo8LHmcvN~I0sScAfb6V4E4GtWPF{z6;}pNeY3WFd^w%j>(-DdUa58~|AlvEd~MEu zH4g^oaLT!4x@Nt4;F{&?{y1r;*)^?kfocr-d|%YTCJ4#pYxqpn=>;FbCx&q@nyBdf;qqsKaCRRPPk@1x!#KSQ z10b9b9%Y~L0>VEAB=j6eaYP@Dke&U4!hnJyEq3lsl;$XC_ey331kpSQ>Zn8?WYV_q zasE+l5U%i1*^9|4ViakmlB{O)_i&?cb(UiX3v6-m1&TM}qKa8SV2#1nNmGoK#~bQe zf#riA4zFO-5Z7p%y!1)UrMNPJxLk3`0}F_Nah&lU?35us)dY11$c~-pFJ~6WqKSWN z38F{vFY4EnFbF4Tcla^Vi%h26iY{Hv7)$Icra;(E0C<>(KYP;B<{8q`k~e@6VKEFs-X{r-}lyM28RF2ci`61w>_(0qR;$%ulcU;!2QMmsPUTGO#{AI58Y=~J&Jhi zb1rK|<>#N`2-iVIGW~AjQL{5Kew>}hR?p)D>J%vjR~E#e=#5>ZZSzBXK6Hj}QkT(09sQ*z@=;aXrWqww$8Z98nh}%V_3GeMBrKGD@5%V!3w?+LT7|whM7l%r;6uTiGG zZg@$F7Z(pyGxk9~LJN?oBN;yWeT*w?eU*`bi|Yk8`!eAWu8?GlnIu

y#YE*Ww{U z_(Mu1e_q`8D`V>aDLsk$wXwN#s+M;YqqtSLD+O#YnqD zcof$YPjCoxmtufK^DhRh*9dCfMQxu0YO00mnj7`k>u>E|sb8-eST<+GjmJJS9`DgPnx_e1;WyuG6`?Py3jaB8C~ zBeti-ohflAuPfHHReIL2HZ#Ca@?Yr-;z2Us>L_;-u zHoTn~Z(G{ilk)bUetav?{)3H?3vGt}C>&_A6#zz_K zf~zN~7+MDm@!9ESzQcwng9>13J66@IYbRSJ7^$ z&RW5z!Hhk=z>T|z+GGak^l?9Y0bS-NmKmu3CrZoFjje(IOd;Bepb z6k_r>QekkdFVpJh75YpG%mis9c$0f@%i1FHJjAQ;#>#mn2Nk|gH<50Pw`Y9RHhN@B z7LsCErcn*u6dI%3e!6w3w{c+p*lz*sRj z!eM9xt@NEPoQ6ga7D26RP55vbor%V?Q>brCw!zcqUOEqri2Rql*dsrp%!1=OIudQi zG3*DnCY&Xvmhg*)>icsR3gOhXatNC;AgkT~sRJS9Fg3*;7R;3ZRa5)wB4k6Rc1q$A zsE3CJR$ro|0WE2OlB&}tU&`d8viol}z~_T${~a&o+fVuYEMBW($LfhS&rPzcHto== z*`X!(=97E1 zOW#H5yK-i;spYo!_S6skkO`Vva&Cvoe%p`}@N=hPlYVmbm8Rx3->r^!n{xt!w@=*h z{_ylB1#_a=)Uy`Kp=8hPQ|#v_Q|#x15LMTcbGuF8e7ENe^t)>>``xfrDM!Ffh|P64 zP4z4b{SFybQgiU8x&IKIqPNjebo$I3KZIU(TJl4@COLA~r56*qnAprF!E7Tf!*&eW6fbmj~! zuoJRM3TUJG&_s`XebUmzCr;(yC8AlG9cYmvnwWa5S7DRTSdrPR_5m|!hD60rEg3b# z{=Aa?HXg7HH!%_XvW|_ z0J)43bH)#clGkad%y0ymDebtMZc>s_@*KA)Kq3S=vr!@n*mral$(JJaQs11;s2)^` z9NvCVpJqfj`Iorf;9JiPW!0=LI=E%-cP3H_+MCwqCm<(Gn__>x|36f{)Va3hY;lmgQ1wzC_V%Npl*~!TZLAh_Be`gnK zg>n?Xs*slXRrRag z>+W_Ko11E`8JBg-0~v>N#qc^PGVgsy?T4?b41936)YDgRvyP$73km=8YUel5r5?`Dp7MH<}N|qBZ2d0iOeZgM{`E2;h zK|ixDR_E?ftLi*~9&ZbR6~=1!izEG)`oTQT_6_zAu_MR4C&y$v&LS_=;i+c=;s^E4w`;*cibRh;_HY~3xFp%<{fkMkHxawAxR$fh3Zo7K&BS$rClrxU%tK&Zh1?$8oR&^%tM=l&; zz%RE1dd<}!yk+Y${4-sbA)p%#oabLTdV-oHB24b3+fKSIA}(u=FOaRTOz^_Lt;*;> z!qJ?m1S79& zC}VSRwKKCJDH7`k)bMZgFa|N(UN#fdBtRpomjXtfXZ>Y!k`|tQvNqdVHofp%sZ5l6 zw&M}`lylqsh&!YHvu$Ow79Fi+oP;uE+L$P>n)hCpttzewA_JLd^3tJaQ`k@T+j4W6 zvF6F7t_HZ_t7If^Ep40U;ZEBbL!f|*);XR*QNJ^*!1BGA!G{~!iN(?x=N06Ew*8Sk zosUv30_=`_9tG(6f}yXeOK_@5z}885@ZDmv9+~8<8%Yl2e@{2!uCmr+^WjM7JUsb* zOmU2V8>R%~2)W~9ywj7E@;h{6{2b$f7)!)h9okAb;wWZ>zOWv|q|Ha9!!luc{1;;X z8h4-so$e!{>u&_dUkh&bzw)mI+kX(APYchl3(x ze$xJdG%b5@b#MlHI z8w!C5v2WTCdiZsnMYnx9{^r89g@*!ypLw6s>-ruDbkDtLJgL)pVUm!n!AH2k6wu>_ z)4TEi5lrSsfEB7S~?H2i$fojmv4 N|JL`A!fZ?be*vg-EA#*W 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..649b468f10ff53866e559145d535203f1648dcd1 GIT binary patch literal 12601 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 x!9$c+XzeW25# 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 0000000..ec9ebc3 --- /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 0000000..f4626d7 --- /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 0000000..d54bc63 --- /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..ddb2c9e87cc8f855f987e183f3d9367ff9a353d9 GIT binary patch literal 16773 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 Ix|_!T1G-sn5C8xG 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..ff6956ea5713f722391e06ee235dfa70eecd654b GIT binary patch literal 6853 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 literal 0 HcmV?d00001 diff --git a/venv/lib/python3.12/site-packages/pip/_internal/locations/__pycache__/_sysconfig.cpython-312.pyc b/venv/lib/python3.12/site-packages/pip/_internal/locations/__pycache__/_sysconfig.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..74971ff5774add3079625ce25d50be93a77d0410 GIT binary patch literal 8008 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 W`uP1R-hLsD9>p655dWy3gZ_W%9A{$y 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 0000000..0e18c6e --- /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 0000000..97aef1f --- /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 0000000..3f9f896 --- /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 0000000..33c6d24 --- /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 0000000..aa232b6 --- /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..4842c0a0e04c06266306096ec6db95e7a12c594d GIT binary patch literal 5879 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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..26c372f229921d51b94c8260877decb45c5f339e GIT binary patch literal 2872 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 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 0000000..9249124 --- /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 0000000..a779138 --- /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..508f128de2d6c42c537881a3bf7ee5a90a04afaf GIT binary patch literal 355 zcmX|6yG{c!5VUi5IY_t$i55|E1+fAxLP8=X`G9LIC$@41zhwI&(m};1(9`iPd;up# zLQv5mrAx(z*A}z0nwhotxhQ%F>SY$M?xDYLhQI3klGP!Q2gDJ_3Ta$nyx|?y(MgqH zG($Xj#8t}EDqCb__XC5y#O=<74AIL;6QwmU_eW+fy){~xSSD>cKEE9K1iU^4Xt$+y z)<-2LzuoKmI~r9Oku6IubHwIsFGg1Dw8VcKvywI+(2NSTvl z4p{7&-72YM66e;S@mXk_NR8JBGG8LD!Q?xM(+lB2kP7y?LQKvt=P@~8ZGrSu3og(eee9_Skc$Kdkh2ZYLwo6s33c+R-<#rK${hrzBca+33K&KZ=hn+Kp5)|& zCGykwUACP3wpAH%hX1G4qgYqKy0Mm79QikyT_{>{`kLR0bMJ-94Sep!xmz+&fgO0U zW%Eecz1^wLc7HmzA>1>B4nig6m?FKJ>y8a{t2(3u3W!chWSz8QEoYq!Tp4oGBD_%3-5cj_ih0wF6&?byek| zTW$)!S@ztea@bO}!2d?+;_KzeRpRR*x9{*35tTzXELUBukO*nH-aSs)t%reBv=a8} zAy=gkp|4`5tE$zFGXqC2^|Tc8Xadca@%YTtUF(_4~HMZsSd?u z2*4>qu?p$g@3%+-MtVUU7{*BY_n99UMQdSW0?x3W=gjrlMv9$#Vix5X7VMdF99=}a zGfCdXL)B`eBu+7T{1jSA!H&+N!68n)^wI1ei+?D7^uqn?_tl?2*!$pq{o%#^@hkhe zEAlkv6!R1lpVvjT8V^^i^}uO(B#%_9KW%WYJCg55GtTw=j7Q!CV5Ga$AT-Bm$nq3S zN}|)Aq0MV|CBaoU6tw7@Xts@ZDwUbp{mJ1>`Cz7eICJ@6=5pJB>f=e>?SKFM4*j-s zX6EYd_5rwiqU*{5{fP8w}dY~s6MkNbv*0BaOL#+(Rkh{(! zaf_=O|2aZ^jfGuqGH4WQa_I(*hyh477A&m_TSW{&T@GZuG&~F#v)eT{VqzUZiP(~` zc_R|6AGcC3Yz%6Q2Qag^NY((+5^cM<$hhxlON)yeZn*4vqC0S&M%bEQz7P)M*tcE} ze6|FK8604$6$(}Z2O@UveIMCiPJm7PKxuPpfxLs&p2s5Bw*~e+Zl1w!6$G%prp*Nn z$vn*{7NH7+#lZviECa9H$1)rhhpyqY%594C3~*q9@3km6in~5c!?P9Y5XMl7Ncf3c zz_|{C?eU0WGOuTJPdQ)GuFC?_c8qxa8bmO=XQ)0YdkOx~l%p8hGvmpHKz*+sdZLak zh4Wo011X=w*dUiIg80U0FZm_V}A*@&34i~MLP@WOB&L;FGxyElA+ji zP9~{e9bd$Z!6a>>QaY*Los8<2=D$G(-*SO(RTBxl04kE{KI)a1x#($qbX*Dc1+vwJ z<=fY8yz}jZeNuQXkOTspBpytJ(rt1@1gH}8h;b^}LX;T5q9Mn@lfkXKoF=1C-#O2s z;J;WW4%vVgJR?%{s3+FL03@a3^tWOho-~#`*DkT^U<)oV_+|%=NEi)Efd`r+Brrp> zZ4X>Kuf4-9aX)H8*SX)KiJ)JJy$ygYH#{&C25jzY zbBI^n^(iLWUW9v?IUJFtf);0Vm==m=JhXy)6|pLsavmuiB+w}g;Z|J^s$O7ox(j3p zQwa3YB$_Sb=(I61xpQ%6Wmi2a%Gij1Jm|`+H2azF zXQsk?GWj-5)qf`S)mP4&*W*hbE&-q2(yteW=gS3#g6$#Vvc!G_R7jy?t++%SDTiX6+X`8tYM7MM zcUxhrU(wkeKUmY*N|LlOD}4=xwk$YySbmc`M5B?^^UF{#qs#`NtVj5!eX4ojfPkx z?oy&9RTO=Mc=(6hYlx(n>z4(ip%jP9Ob0D0nwI literal 0 HcmV?d00001 diff --git a/venv/lib/python3.12/site-packages/pip/_internal/metadata/importlib/__pycache__/_dists.cpython-312.pyc b/venv/lib/python3.12/site-packages/pip/_internal/metadata/importlib/__pycache__/_dists.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..47917cdd62d8d1d6416405ff60f21291f7936088 GIT binary patch literal 13422 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 XZWAcFeU2G5Fzp$4&z}fpD6jnwHr=u* 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..c847bea3f992a7f317f00df6a4924aad5e804e85 GIT binary patch literal 11177 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 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 0000000..593bff2 --- /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 0000000..26370fa --- /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 0000000..048dc55 --- /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 0000000..bb11e5b --- /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 0000000..7855226 --- /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..8960f878e07df3607cbf1bc4fda5d8d081d084bd GIT binary patch literal 263 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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..9f4667c1eab580854a8675dcd5326494b573b9eb GIT binary patch literal 4224 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 I>#fiK56YpfNdN!< literal 0 HcmV?d00001 diff --git a/venv/lib/python3.12/site-packages/pip/_internal/models/__pycache__/index.cpython-312.pyc b/venv/lib/python3.12/site-packages/pip/_internal/models/__pycache__/index.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..81317c1a7f0d428363383008f04b3e1f230dc9bb GIT binary patch literal 1691 zcmZ`(&u<$=6rTOz^~Q1JmL#ra0$M2*$Z4B}q-qcXgeVe;ghEuHLcWZaopHQov%AcU zquBBxNRdb+5aNKsv2Y!|q#HY8E%Ge(=Y1K_rQ)%>#q|&EQi$WcOswz>c+B#JGR;lVlqZy*ZFGGx)v5RU7 z$?oK<1~H|NW@3@3O&fHWMZw!{MZPn@IyDwac?8?DV9DnYDHeM zo2+@@<052G8im|&V_D_U+f3Fj&i7^`$m4?yU_6M;TJooQMiZ;;~{IDs%W0Bhg-FwR5{ z<1{wGBmQQL}Dyw@I)Y27+!0>_ncuNrO!r%G*&()WcwL{>25GdxGAGQl@b`@**1=7L)~! zZ*PQz`rP&;0q3I@lVG-|M`<}fxSqs@V-SzF(F1d0FWWUs_s#O@WN}yj%zRLs+4sNn zPm0&N#cKz*kBcvy6qmZiC5VlmmY+Q-U+ZNL*873fNTAHc#_I$ zMQ4{F$S#A3voNd%Jgj6O6_riNNC^a&DVD{G(lH65UH&g-qf?%i3D1B4+zQiQboM$Y zh1qUl_THP{Eq}9oK#mKGN9H2C0w*eCl1_oMK{1YV7{hp)@KkY}$N1x>{gOLw+c zdU`Ii^!4o?0`;StsGrC`((09z%*}hVJp}4t_Mucs=gFtqm+L}A{AC;H7kTp`TesUq z`Dep{Tau6UkPAv=06LO{Y8M9?f^q?;25C=A`^FP;GjSdO2Aa<&k1U;-yhp6BwboW* z^F2tGyYErjoSf5R^OY3N*VuDlN+|dOh@Pe>%CBhhq4AV*^G_tj95Sblrk+1~_5J(V ZyW9HN_?1(A=4j!azcn?leqtuy{1^D$ldb>& 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..2c4d88dbfc1d03056a91f51e12f3f20049daadc0 GIT binary patch literal 2269 zcmZ`)O>7fK6rTO@e~e9jAWrJYKnPs|UMQseG_4weTIeCFNQID5wc2_oiJkSXnOQ>} zg$h+1a;VhyP>~3#pk4~%P^p)uH;$EhiHVTus8x|#4!xNKwJN8+*&hfd9ckaZzj-rn zzBg}wPA20B#xGM&Sxg}G2N!}N`^@_Lz+6KHG6WM)X`1z3@j`W%$#H^AddPoj|UkIbjZIu7Q&}QiO3xu}9l1jv_Ld zVsnxJYKZbcx!lufb=t0AwOX52X|ZN#McZ=l$Bw2~OX@|qN7XESq*m+Bv~3;AAAC)v zB?s@X>cts-3RAUOs;aP;gNdb^YQ;9NNmYMuH!nzpCzh|)SyThhlA~#}{XPO4GS3G_ zUR#utE9k-QWApO;=+1SJ5R(C`3oJ~qQzO<3R}u!ZdnK0OT}hcQXd5*C9u(u8a2&af|8rmY)*@T8ra zv`OwACB%|1s9CH;H3LwDSIgPDZp~nW#dxV>>Hr(9U`ID}M`!70N)3vU=v0Z59@vvb z92;U39kPu}vRSfb$ac;qYZMcW)~Z#r#6wMC2OO!xl0i^+9SeK$SeQatVuLr6qDcvV zO-v$~QjUEtmm?{z>E8H|G=J~eJ)70{4cI!X!{M&#hLVjcD8R5 zSbfO%f}NfK0!VJ}`?Y`Q;pp4V(X)-wvwurs@0JILkA5LH(@G<)+#0-}R@b=lNhf+m zUF|>cIFn4rTPPWe|GO3jJ>~u5tKK)F<4Ol_ik4o%n#SUq2K}>Ua=t^;F4T0>vk-of zgd;-uyJd-@sZ$D7J#8C=$6^w72;p#fnet?ABNtRJJKj_XCo%Zw1dyw!B?_VAx6ZA+ zeyXwm^g03o>L|RmCH957R$e{cLNG5ocTfD(b@$YdpR93lT?!mpN4JFH3*8IFn}-&r z7YCjo5WW5QF5^mqg`Ik}WKDUe;)iszU|9ez56D@DP4eDf1ibPUoy@==+Qo=T;Nybl zdk4RlJoE(q1y9nu5;wO4d;?y@ZoW^Wqux!vMMgl!>zWP#X-R@0{EmhiXy_4o^AYO* Q4UPU2R)zQ)0^+X!4}U)&9smFU 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..c66d276cd76f2c4cbed8e658de66678d0108880f GIT binary patch literal 25999 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 ac|6DAwcus1MUqVLJ7^L%{**p5T>if**KHdB 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..21354ab1e2f4d878e720d694bd5ef82f56bfdaa2 GIT binary patch literal 1166 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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..96b2e48ecce8eb2cec75d61438654d132234b1b3 GIT binary patch literal 1848 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 V`O%-r$$v#E9CzePf+gGSe*mz=*WdsE literal 0 HcmV?d00001 diff --git a/venv/lib/python3.12/site-packages/pip/_internal/models/__pycache__/wheel.cpython-312.pyc b/venv/lib/python3.12/site-packages/pip/_internal/models/__pycache__/wheel.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..8ac5e85065dbe226f9053895e8130fc5a8faae2b GIT binary patch literal 5777 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 ZbQVbGN2Kc`GWbc|36AT(L$GCn{tZS7w}=1$ 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 0000000..9184a90 --- /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 0000000..0af884b --- /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 0000000..ccd1127 --- /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 0000000..b94c325 --- /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 0000000..b9c6330 --- /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 0000000..73041b8 --- /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 0000000..f51190a --- /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 0000000..fe61e81 --- /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 0000000..977bc4c --- /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 0000000..67ea5da --- /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 0000000..a5dc12b --- /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 0000000..b51bde9 --- /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..9fe04aea5b8ff6dc48edefb48221147e797ba30a GIT binary patch literal 251 zcmXv}F-`+95VS)CQKbCg+6d)Vgf>b;&jTn}nY&ePiDO&#I&gf1H}Do-04*Otq)UZQ zN~YPFk#!pa~3na(l4+1fiGC zyW9F^35kUk!8BX5p#*^gAeWEmjD=G*V6j*b>(C!3tDSGNrFFb4b;F7@jQqXOTK|o- I9>;N!|H;lu0RR91 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..55027b600bf711ac2fa0bd0fc02457033a747e95 GIT binary patch literal 21993 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 IHpFuN0qpSCYybcN 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..6c19666c11d5d4abd47d74ce3f44e30d4f1ca3b9 GIT binary patch literal 8550 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 Pt7rFfU5^M5rWOASEhL#G literal 0 HcmV?d00001 diff --git a/venv/lib/python3.12/site-packages/pip/_internal/network/__pycache__/lazy_wheel.cpython-312.pyc b/venv/lib/python3.12/site-packages/pip/_internal/network/__pycache__/lazy_wheel.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..bfaf7b6923b3954c8bb8db1061fa3c2c2a2af819 GIT binary patch literal 11660 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 TSjFRxX&c}32)-Y05W)WeiB6?8 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..cfe7555390bb3e20e5014962a0d7d644b28b704b GIT binary patch literal 18771 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 G!u`Kx_t^9R literal 0 HcmV?d00001 diff --git a/venv/lib/python3.12/site-packages/pip/_internal/network/auth.py b/venv/lib/python3.12/site-packages/pip/_internal/network/auth.py new file mode 100644 index 0000000..94a82fa --- /dev/null +++ b/venv/lib/python3.12/site-packages/pip/_internal/network/auth.py @@ -0,0 +1,561 @@ +"""Network Authentication Helpers + +Contains interface (MultiDomainBasicAuth) and associated glue code for +providing credentials in the context of network requests. +""" +import logging +import os +import shutil +import subprocess +import sysconfig +import typing +import urllib.parse +from abc import ABC, abstractmethod +from functools import lru_cache +from os.path import commonprefix +from pathlib import Path +from typing import Any, Dict, List, NamedTuple, Optional, Tuple + +from pip._vendor.requests.auth import AuthBase, HTTPBasicAuth +from pip._vendor.requests.models import Request, Response +from pip._vendor.requests.utils import get_netrc_auth + +from pip._internal.utils.logging import getLogger +from pip._internal.utils.misc import ( + ask, + ask_input, + ask_password, + remove_auth_from_url, + split_auth_netloc_from_url, +) +from pip._internal.vcs.versioncontrol import AuthInfo + +logger = getLogger(__name__) + +KEYRING_DISABLED = False + + +class Credentials(NamedTuple): + url: str + username: str + password: str + + +class KeyRingBaseProvider(ABC): + """Keyring base provider interface""" + + has_keyring: bool + + @abstractmethod + def get_auth_info(self, url: str, username: Optional[str]) -> Optional[AuthInfo]: + ... + + @abstractmethod + def save_auth_info(self, url: str, username: str, password: str) -> None: + ... + + +class KeyRingNullProvider(KeyRingBaseProvider): + """Keyring null provider""" + + has_keyring = False + + def get_auth_info(self, url: str, username: Optional[str]) -> Optional[AuthInfo]: + return None + + def save_auth_info(self, url: str, username: str, password: str) -> None: + return None + + +class KeyRingPythonProvider(KeyRingBaseProvider): + """Keyring interface which uses locally imported `keyring`""" + + has_keyring = True + + def __init__(self) -> None: + import keyring + + self.keyring = keyring + + def get_auth_info(self, url: str, username: Optional[str]) -> Optional[AuthInfo]: + # Support keyring's get_credential interface which supports getting + # credentials without a username. This is only available for + # keyring>=15.2.0. + if hasattr(self.keyring, "get_credential"): + logger.debug("Getting credentials from keyring for %s", url) + cred = self.keyring.get_credential(url, username) + if cred is not None: + return cred.username, cred.password + return None + + if username is not None: + logger.debug("Getting password from keyring for %s", url) + password = self.keyring.get_password(url, username) + if password: + return username, password + return None + + def save_auth_info(self, url: str, username: str, password: str) -> None: + self.keyring.set_password(url, username, password) + + +class KeyRingCliProvider(KeyRingBaseProvider): + """Provider which uses `keyring` cli + + Instead of calling the keyring package installed alongside pip + we call keyring on the command line which will enable pip to + use which ever installation of keyring is available first in + PATH. + """ + + has_keyring = True + + def __init__(self, cmd: str) -> None: + self.keyring = cmd + + def get_auth_info(self, url: str, username: Optional[str]) -> Optional[AuthInfo]: + # This is the default implementation of keyring.get_credential + # https://github.com/jaraco/keyring/blob/97689324abcf01bd1793d49063e7ca01e03d7d07/keyring/backend.py#L134-L139 + if username is not None: + password = self._get_password(url, username) + if password is not None: + return username, password + return None + + def save_auth_info(self, url: str, username: str, password: str) -> None: + return self._set_password(url, username, password) + + def _get_password(self, service_name: str, username: str) -> Optional[str]: + """Mirror the implementation of keyring.get_password using cli""" + if self.keyring is None: + return None + + cmd = [self.keyring, "get", service_name, username] + env = os.environ.copy() + env["PYTHONIOENCODING"] = "utf-8" + res = subprocess.run( + cmd, + stdin=subprocess.DEVNULL, + stdout=subprocess.PIPE, + env=env, + ) + if res.returncode: + return None + return res.stdout.decode("utf-8").strip(os.linesep) + + def _set_password(self, service_name: str, username: str, password: str) -> None: + """Mirror the implementation of keyring.set_password using cli""" + if self.keyring is None: + return None + env = os.environ.copy() + env["PYTHONIOENCODING"] = "utf-8" + subprocess.run( + [self.keyring, "set", service_name, username], + input=f"{password}{os.linesep}".encode("utf-8"), + env=env, + check=True, + ) + return None + + +@lru_cache(maxsize=None) +def get_keyring_provider(provider: str) -> KeyRingBaseProvider: + logger.verbose("Keyring provider requested: %s", provider) + + # keyring has previously failed and been disabled + if KEYRING_DISABLED: + provider = "disabled" + if provider in ["import", "auto"]: + try: + impl = KeyRingPythonProvider() + logger.verbose("Keyring provider set: import") + return impl + except ImportError: + pass + except Exception as exc: + # In the event of an unexpected exception + # we should warn the user + msg = "Installed copy of keyring fails with exception %s" + if provider == "auto": + msg = msg + ", trying to find a keyring executable as a fallback" + logger.warning(msg, exc, exc_info=logger.isEnabledFor(logging.DEBUG)) + if provider in ["subprocess", "auto"]: + cli = shutil.which("keyring") + if cli and cli.startswith(sysconfig.get_path("scripts")): + # all code within this function is stolen from shutil.which implementation + @typing.no_type_check + def PATH_as_shutil_which_determines_it() -> str: + path = os.environ.get("PATH", None) + if path is None: + try: + path = os.confstr("CS_PATH") + except (AttributeError, ValueError): + # os.confstr() or CS_PATH is not available + path = os.defpath + # bpo-35755: Don't use os.defpath if the PATH environment variable is + # set to an empty string + + return path + + scripts = Path(sysconfig.get_path("scripts")) + + paths = [] + for path in PATH_as_shutil_which_determines_it().split(os.pathsep): + p = Path(path) + try: + if not p.samefile(scripts): + paths.append(path) + except FileNotFoundError: + pass + + path = os.pathsep.join(paths) + + cli = shutil.which("keyring", path=path) + + if cli: + logger.verbose("Keyring provider set: subprocess with executable %s", cli) + return KeyRingCliProvider(cli) + + logger.verbose("Keyring provider set: disabled") + return KeyRingNullProvider() + + +class MultiDomainBasicAuth(AuthBase): + def __init__( + self, + prompting: bool = True, + index_urls: Optional[List[str]] = None, + keyring_provider: str = "auto", + ) -> None: + self.prompting = prompting + self.index_urls = index_urls + self.keyring_provider = keyring_provider # type: ignore[assignment] + self.passwords: Dict[str, AuthInfo] = {} + # When the user is prompted to enter credentials and keyring is + # available, we will offer to save them. If the user accepts, + # this value is set to the credentials they entered. After the + # request authenticates, the caller should call + # ``save_credentials`` to save these. + self._credentials_to_save: Optional[Credentials] = None + + @property + def keyring_provider(self) -> KeyRingBaseProvider: + return get_keyring_provider(self._keyring_provider) + + @keyring_provider.setter + def keyring_provider(self, provider: str) -> None: + # The free function get_keyring_provider has been decorated with + # functools.cache. If an exception occurs in get_keyring_auth that + # cache will be cleared and keyring disabled, take that into account + # if you want to remove this indirection. + self._keyring_provider = provider + + @property + def use_keyring(self) -> bool: + # We won't use keyring when --no-input is passed unless + # a specific provider is requested because it might require + # user interaction + return self.prompting or self._keyring_provider not in ["auto", "disabled"] + + def _get_keyring_auth( + self, + url: Optional[str], + username: Optional[str], + ) -> Optional[AuthInfo]: + """Return the tuple auth for a given url from keyring.""" + # Do nothing if no url was provided + if not url: + return None + + try: + return self.keyring_provider.get_auth_info(url, username) + except Exception as exc: + logger.warning( + "Keyring is skipped due to an exception: %s", + str(exc), + ) + global KEYRING_DISABLED + KEYRING_DISABLED = True + get_keyring_provider.cache_clear() + return None + + def _get_index_url(self, url: str) -> Optional[str]: + """Return the original index URL matching the requested URL. + + Cached or dynamically generated credentials may work against + the original index URL rather than just the netloc. + + The provided url should have had its username and password + removed already. If the original index url had credentials then + they will be included in the return value. + + Returns None if no matching index was found, or if --no-index + was specified by the user. + """ + if not url or not self.index_urls: + return None + + url = remove_auth_from_url(url).rstrip("/") + "/" + parsed_url = urllib.parse.urlsplit(url) + + candidates = [] + + for index in self.index_urls: + index = index.rstrip("/") + "/" + parsed_index = urllib.parse.urlsplit(remove_auth_from_url(index)) + if parsed_url == parsed_index: + return index + + if parsed_url.netloc != parsed_index.netloc: + continue + + candidate = urllib.parse.urlsplit(index) + candidates.append(candidate) + + if not candidates: + return None + + candidates.sort( + reverse=True, + key=lambda candidate: commonprefix( + [ + parsed_url.path, + candidate.path, + ] + ).rfind("/"), + ) + + return urllib.parse.urlunsplit(candidates[0]) + + def _get_new_credentials( + self, + original_url: str, + *, + allow_netrc: bool = True, + allow_keyring: bool = False, + ) -> AuthInfo: + """Find and return credentials for the specified URL.""" + # Split the credentials and netloc from the url. + url, netloc, url_user_password = split_auth_netloc_from_url( + original_url, + ) + + # Start with the credentials embedded in the url + username, password = url_user_password + if username is not None and password is not None: + logger.debug("Found credentials in url for %s", netloc) + return url_user_password + + # Find a matching index url for this request + index_url = self._get_index_url(url) + if index_url: + # Split the credentials from the url. + index_info = split_auth_netloc_from_url(index_url) + if index_info: + index_url, _, index_url_user_password = index_info + logger.debug("Found index url %s", index_url) + + # If an index URL was found, try its embedded credentials + if index_url and index_url_user_password[0] is not None: + username, password = index_url_user_password + if username is not None and password is not None: + logger.debug("Found credentials in index url for %s", netloc) + return index_url_user_password + + # Get creds from netrc if we still don't have them + if allow_netrc: + netrc_auth = get_netrc_auth(original_url) + if netrc_auth: + logger.debug("Found credentials in netrc for %s", netloc) + return netrc_auth + + # If we don't have a password and keyring is available, use it. + if allow_keyring: + # The index url is more specific than the netloc, so try it first + # fmt: off + kr_auth = ( + self._get_keyring_auth(index_url, username) or + self._get_keyring_auth(netloc, username) + ) + # fmt: on + if kr_auth: + logger.debug("Found credentials in keyring for %s", netloc) + return kr_auth + + return username, password + + def _get_url_and_credentials( + self, original_url: str + ) -> Tuple[str, Optional[str], Optional[str]]: + """Return the credentials to use for the provided URL. + + If allowed, netrc and keyring may be used to obtain the + correct credentials. + + Returns (url_without_credentials, username, password). Note + that even if the original URL contains credentials, this + function may return a different username and password. + """ + url, netloc, _ = split_auth_netloc_from_url(original_url) + + # Try to get credentials from original url + username, password = self._get_new_credentials(original_url) + + # If credentials not found, use any stored credentials for this netloc. + # Do this if either the username or the password is missing. + # This accounts for the situation in which the user has specified + # the username in the index url, but the password comes from keyring. + if (username is None or password is None) and netloc in self.passwords: + un, pw = self.passwords[netloc] + # It is possible that the cached credentials are for a different username, + # in which case the cache should be ignored. + if username is None or username == un: + username, password = un, pw + + if username is not None or password is not None: + # Convert the username and password if they're None, so that + # this netloc will show up as "cached" in the conditional above. + # Further, HTTPBasicAuth doesn't accept None, so it makes sense to + # cache the value that is going to be used. + username = username or "" + password = password or "" + + # Store any acquired credentials. + self.passwords[netloc] = (username, password) + + assert ( + # Credentials were found + (username is not None and password is not None) + # Credentials were not found + or (username is None and password is None) + ), f"Could not load credentials from url: {original_url}" + + return url, username, password + + def __call__(self, req: Request) -> Request: + # Get credentials for this request + url, username, password = self._get_url_and_credentials(req.url) + + # Set the url of the request to the url without any credentials + req.url = url + + if username is not None and password is not None: + # Send the basic auth with this request + req = HTTPBasicAuth(username, password)(req) + + # Attach a hook to handle 401 responses + req.register_hook("response", self.handle_401) + + return req + + # Factored out to allow for easy patching in tests + def _prompt_for_password( + self, netloc: str + ) -> Tuple[Optional[str], Optional[str], bool]: + username = ask_input(f"User for {netloc}: ") if self.prompting else None + if not username: + return None, None, False + if self.use_keyring: + auth = self._get_keyring_auth(netloc, username) + if auth and auth[0] is not None and auth[1] is not None: + return auth[0], auth[1], False + password = ask_password("Password: ") + return username, password, True + + # Factored out to allow for easy patching in tests + def _should_save_password_to_keyring(self) -> bool: + if ( + not self.prompting + or not self.use_keyring + or not self.keyring_provider.has_keyring + ): + return False + return ask("Save credentials to keyring [y/N]: ", ["y", "n"]) == "y" + + def handle_401(self, resp: Response, **kwargs: Any) -> Response: + # We only care about 401 responses, anything else we want to just + # pass through the actual response + if resp.status_code != 401: + return resp + + username, password = None, None + + # Query the keyring for credentials: + if self.use_keyring: + username, password = self._get_new_credentials( + resp.url, + allow_netrc=False, + allow_keyring=True, + ) + + # We are not able to prompt the user so simply return the response + if not self.prompting and not username and not password: + return resp + + parsed = urllib.parse.urlparse(resp.url) + + # Prompt the user for a new username and password + save = False + if not username and not password: + username, password, save = self._prompt_for_password(parsed.netloc) + + # Store the new username and password to use for future requests + self._credentials_to_save = None + if username is not None and password is not None: + self.passwords[parsed.netloc] = (username, password) + + # Prompt to save the password to keyring + if save and self._should_save_password_to_keyring(): + self._credentials_to_save = Credentials( + url=parsed.netloc, + username=username, + password=password, + ) + + # Consume content and release the original connection to allow our new + # request to reuse the same one. + # The result of the assignment isn't used, it's just needed to consume + # the content. + _ = resp.content + resp.raw.release_conn() + + # Add our new username and password to the request + req = HTTPBasicAuth(username or "", password or "")(resp.request) + req.register_hook("response", self.warn_on_401) + + # On successful request, save the credentials that were used to + # keyring. (Note that if the user responded "no" above, this member + # is not set and nothing will be saved.) + if self._credentials_to_save: + req.register_hook("response", self.save_credentials) + + # Send our new request + new_resp = resp.connection.send(req, **kwargs) + new_resp.history.append(resp) + + return new_resp + + def warn_on_401(self, resp: Response, **kwargs: Any) -> None: + """Response callback to warn about incorrect credentials.""" + if resp.status_code == 401: + logger.warning( + "401 Error, Credentials not correct for %s", + resp.request.url, + ) + + def save_credentials(self, resp: Response, **kwargs: Any) -> None: + """Response callback to save credentials on success.""" + assert ( + self.keyring_provider.has_keyring + ), "should never reach here without keyring" + + creds = self._credentials_to_save + self._credentials_to_save = None + if creds and resp.status_code < 400: + try: + logger.info("Saving credentials to keyring") + self.keyring_provider.save_auth_info( + creds.url, creds.username, creds.password + ) + except Exception: + logger.exception("Failed to save credentials") diff --git a/venv/lib/python3.12/site-packages/pip/_internal/network/cache.py b/venv/lib/python3.12/site-packages/pip/_internal/network/cache.py new file mode 100644 index 0000000..4d0fb54 --- /dev/null +++ b/venv/lib/python3.12/site-packages/pip/_internal/network/cache.py @@ -0,0 +1,106 @@ +"""HTTP cache implementation. +""" + +import os +from contextlib import contextmanager +from datetime import datetime +from typing import BinaryIO, Generator, Optional, Union + +from pip._vendor.cachecontrol.cache import SeparateBodyBaseCache +from pip._vendor.cachecontrol.caches import SeparateBodyFileCache +from pip._vendor.requests.models import Response + +from pip._internal.utils.filesystem import adjacent_tmp_file, replace +from pip._internal.utils.misc import ensure_dir + + +def is_from_cache(response: Response) -> bool: + return getattr(response, "from_cache", False) + + +@contextmanager +def suppressed_cache_errors() -> Generator[None, None, None]: + """If we can't access the cache then we can just skip caching and process + requests as if caching wasn't enabled. + """ + try: + yield + except OSError: + pass + + +class SafeFileCache(SeparateBodyBaseCache): + """ + A file based cache which is safe to use even when the target directory may + not be accessible or writable. + + There is a race condition when two processes try to write and/or read the + same entry at the same time, since each entry consists of two separate + files (https://github.com/psf/cachecontrol/issues/324). We therefore have + additional logic that makes sure that both files to be present before + returning an entry; this fixes the read side of the race condition. + + For the write side, we assume that the server will only ever return the + same data for the same URL, which ought to be the case for files pip is + downloading. PyPI does not have a mechanism to swap out a wheel for + another wheel, for example. If this assumption is not true, the + CacheControl issue will need to be fixed. + """ + + def __init__(self, directory: str) -> None: + assert directory is not None, "Cache directory must not be None." + super().__init__() + self.directory = directory + + def _get_cache_path(self, name: str) -> str: + # From cachecontrol.caches.file_cache.FileCache._fn, brought into our + # class for backwards-compatibility and to avoid using a non-public + # method. + hashed = SeparateBodyFileCache.encode(name) + parts = list(hashed[:5]) + [hashed] + return os.path.join(self.directory, *parts) + + def get(self, key: str) -> Optional[bytes]: + # The cache entry is only valid if both metadata and body exist. + metadata_path = self._get_cache_path(key) + body_path = metadata_path + ".body" + if not (os.path.exists(metadata_path) and os.path.exists(body_path)): + return None + with suppressed_cache_errors(): + with open(metadata_path, "rb") as f: + return f.read() + + def _write(self, path: str, data: bytes) -> None: + with suppressed_cache_errors(): + ensure_dir(os.path.dirname(path)) + + with adjacent_tmp_file(path) as f: + f.write(data) + + replace(f.name, path) + + def set( + self, key: str, value: bytes, expires: Union[int, datetime, None] = None + ) -> None: + path = self._get_cache_path(key) + self._write(path, value) + + def delete(self, key: str) -> None: + path = self._get_cache_path(key) + with suppressed_cache_errors(): + os.remove(path) + with suppressed_cache_errors(): + os.remove(path + ".body") + + def get_body(self, key: str) -> Optional[BinaryIO]: + # The cache entry is only valid if both metadata and body exist. + metadata_path = self._get_cache_path(key) + body_path = metadata_path + ".body" + if not (os.path.exists(metadata_path) and os.path.exists(body_path)): + return None + with suppressed_cache_errors(): + return open(body_path, "rb") + + def set_body(self, key: str, body: bytes) -> None: + path = self._get_cache_path(key) + ".body" + self._write(path, body) diff --git a/venv/lib/python3.12/site-packages/pip/_internal/network/download.py b/venv/lib/python3.12/site-packages/pip/_internal/network/download.py new file mode 100644 index 0000000..d1d4354 --- /dev/null +++ b/venv/lib/python3.12/site-packages/pip/_internal/network/download.py @@ -0,0 +1,186 @@ +"""Download files with progress indicators. +""" +import email.message +import logging +import mimetypes +import os +from typing import Iterable, Optional, Tuple + +from pip._vendor.requests.models import CONTENT_CHUNK_SIZE, Response + +from pip._internal.cli.progress_bars import get_download_progress_renderer +from pip._internal.exceptions import NetworkConnectionError +from pip._internal.models.index import PyPI +from pip._internal.models.link import Link +from pip._internal.network.cache import is_from_cache +from pip._internal.network.session import PipSession +from pip._internal.network.utils import HEADERS, raise_for_status, response_chunks +from pip._internal.utils.misc import format_size, redact_auth_from_url, splitext + +logger = logging.getLogger(__name__) + + +def _get_http_response_size(resp: Response) -> Optional[int]: + try: + return int(resp.headers["content-length"]) + except (ValueError, KeyError, TypeError): + return None + + +def _prepare_download( + resp: Response, + link: Link, + progress_bar: str, +) -> Iterable[bytes]: + total_length = _get_http_response_size(resp) + + if link.netloc == PyPI.file_storage_domain: + url = link.show_url + else: + url = link.url_without_fragment + + logged_url = redact_auth_from_url(url) + + if total_length: + logged_url = f"{logged_url} ({format_size(total_length)})" + + if is_from_cache(resp): + logger.info("Using cached %s", logged_url) + else: + logger.info("Downloading %s", logged_url) + + if logger.getEffectiveLevel() > logging.INFO: + show_progress = False + elif is_from_cache(resp): + show_progress = False + elif not total_length: + show_progress = True + elif total_length > (40 * 1000): + show_progress = True + else: + show_progress = False + + chunks = response_chunks(resp, CONTENT_CHUNK_SIZE) + + if not show_progress: + return chunks + + renderer = get_download_progress_renderer(bar_type=progress_bar, size=total_length) + return renderer(chunks) + + +def sanitize_content_filename(filename: str) -> str: + """ + Sanitize the "filename" value from a Content-Disposition header. + """ + return os.path.basename(filename) + + +def parse_content_disposition(content_disposition: str, default_filename: str) -> str: + """ + Parse the "filename" value from a Content-Disposition header, and + return the default filename if the result is empty. + """ + m = email.message.Message() + m["content-type"] = content_disposition + filename = m.get_param("filename") + if filename: + # We need to sanitize the filename to prevent directory traversal + # in case the filename contains ".." path parts. + filename = sanitize_content_filename(str(filename)) + return filename or default_filename + + +def _get_http_response_filename(resp: Response, link: Link) -> str: + """Get an ideal filename from the given HTTP response, falling back to + the link filename if not provided. + """ + filename = link.filename # fallback + # Have a look at the Content-Disposition header for a better guess + content_disposition = resp.headers.get("content-disposition") + if content_disposition: + filename = parse_content_disposition(content_disposition, filename) + ext: Optional[str] = splitext(filename)[1] + if not ext: + ext = mimetypes.guess_extension(resp.headers.get("content-type", "")) + if ext: + filename += ext + if not ext and link.url != resp.url: + ext = os.path.splitext(resp.url)[1] + if ext: + filename += ext + return filename + + +def _http_get_download(session: PipSession, link: Link) -> Response: + target_url = link.url.split("#", 1)[0] + resp = session.get(target_url, headers=HEADERS, stream=True) + raise_for_status(resp) + return resp + + +class Downloader: + def __init__( + self, + session: PipSession, + progress_bar: str, + ) -> None: + self._session = session + self._progress_bar = progress_bar + + def __call__(self, link: Link, location: str) -> Tuple[str, str]: + """Download the file given by link into location.""" + try: + resp = _http_get_download(self._session, link) + except NetworkConnectionError as e: + assert e.response is not None + logger.critical( + "HTTP error %s while getting %s", e.response.status_code, link + ) + raise + + filename = _get_http_response_filename(resp, link) + filepath = os.path.join(location, filename) + + chunks = _prepare_download(resp, link, self._progress_bar) + with open(filepath, "wb") as content_file: + for chunk in chunks: + content_file.write(chunk) + content_type = resp.headers.get("Content-Type", "") + return filepath, content_type + + +class BatchDownloader: + def __init__( + self, + session: PipSession, + progress_bar: str, + ) -> None: + self._session = session + self._progress_bar = progress_bar + + def __call__( + self, links: Iterable[Link], location: str + ) -> Iterable[Tuple[Link, Tuple[str, str]]]: + """Download the files given by links into location.""" + for link in links: + try: + resp = _http_get_download(self._session, link) + except NetworkConnectionError as e: + assert e.response is not None + logger.critical( + "HTTP error %s while getting %s", + e.response.status_code, + link, + ) + raise + + filename = _get_http_response_filename(resp, link) + filepath = os.path.join(location, filename) + + chunks = _prepare_download(resp, link, self._progress_bar) + with open(filepath, "wb") as content_file: + for chunk in chunks: + content_file.write(chunk) + content_type = resp.headers.get("Content-Type", "") + yield link, (filepath, content_type) diff --git a/venv/lib/python3.12/site-packages/pip/_internal/network/lazy_wheel.py b/venv/lib/python3.12/site-packages/pip/_internal/network/lazy_wheel.py new file mode 100644 index 0000000..82ec50d --- /dev/null +++ b/venv/lib/python3.12/site-packages/pip/_internal/network/lazy_wheel.py @@ -0,0 +1,210 @@ +"""Lazy ZIP over HTTP""" + +__all__ = ["HTTPRangeRequestUnsupported", "dist_from_wheel_url"] + +from bisect import bisect_left, bisect_right +from contextlib import contextmanager +from tempfile import NamedTemporaryFile +from typing import Any, Dict, Generator, List, Optional, Tuple +from zipfile import BadZipFile, ZipFile + +from pip._vendor.packaging.utils import canonicalize_name +from pip._vendor.requests.models import CONTENT_CHUNK_SIZE, Response + +from pip._internal.metadata import BaseDistribution, MemoryWheel, get_wheel_distribution +from pip._internal.network.session import PipSession +from pip._internal.network.utils import HEADERS, raise_for_status, response_chunks + + +class HTTPRangeRequestUnsupported(Exception): + pass + + +def dist_from_wheel_url(name: str, url: str, session: PipSession) -> BaseDistribution: + """Return a distribution object from the given wheel URL. + + This uses HTTP range requests to only fetch the portion of the wheel + containing metadata, just enough for the object to be constructed. + If such requests are not supported, HTTPRangeRequestUnsupported + is raised. + """ + with LazyZipOverHTTP(url, session) as zf: + # For read-only ZIP files, ZipFile only needs methods read, + # seek, seekable and tell, not the whole IO protocol. + wheel = MemoryWheel(zf.name, zf) # type: ignore + # After context manager exit, wheel.name + # is an invalid file by intention. + return get_wheel_distribution(wheel, canonicalize_name(name)) + + +class LazyZipOverHTTP: + """File-like object mapped to a ZIP file over HTTP. + + This uses HTTP range requests to lazily fetch the file's content, + which is supposed to be fed to ZipFile. If such requests are not + supported by the server, raise HTTPRangeRequestUnsupported + during initialization. + """ + + def __init__( + self, url: str, session: PipSession, chunk_size: int = CONTENT_CHUNK_SIZE + ) -> None: + head = session.head(url, headers=HEADERS) + raise_for_status(head) + assert head.status_code == 200 + self._session, self._url, self._chunk_size = session, url, chunk_size + self._length = int(head.headers["Content-Length"]) + self._file = NamedTemporaryFile() + self.truncate(self._length) + self._left: List[int] = [] + self._right: List[int] = [] + if "bytes" not in head.headers.get("Accept-Ranges", "none"): + raise HTTPRangeRequestUnsupported("range request is not supported") + self._check_zip() + + @property + def mode(self) -> str: + """Opening mode, which is always rb.""" + return "rb" + + @property + def name(self) -> str: + """Path to the underlying file.""" + return self._file.name + + def seekable(self) -> bool: + """Return whether random access is supported, which is True.""" + return True + + def close(self) -> None: + """Close the file.""" + self._file.close() + + @property + def closed(self) -> bool: + """Whether the file is closed.""" + return self._file.closed + + def read(self, size: int = -1) -> bytes: + """Read up to size bytes from the object and return them. + + As a convenience, if size is unspecified or -1, + all bytes until EOF are returned. Fewer than + size bytes may be returned if EOF is reached. + """ + download_size = max(size, self._chunk_size) + start, length = self.tell(), self._length + stop = length if size < 0 else min(start + download_size, length) + start = max(0, stop - download_size) + self._download(start, stop - 1) + return self._file.read(size) + + def readable(self) -> bool: + """Return whether the file is readable, which is True.""" + return True + + def seek(self, offset: int, whence: int = 0) -> int: + """Change stream position and return the new absolute position. + + Seek to offset relative position indicated by whence: + * 0: Start of stream (the default). pos should be >= 0; + * 1: Current position - pos may be negative; + * 2: End of stream - pos usually negative. + """ + return self._file.seek(offset, whence) + + def tell(self) -> int: + """Return the current position.""" + return self._file.tell() + + def truncate(self, size: Optional[int] = None) -> int: + """Resize the stream to the given size in bytes. + + If size is unspecified resize to the current position. + The current stream position isn't changed. + + Return the new file size. + """ + return self._file.truncate(size) + + def writable(self) -> bool: + """Return False.""" + return False + + def __enter__(self) -> "LazyZipOverHTTP": + self._file.__enter__() + return self + + def __exit__(self, *exc: Any) -> None: + self._file.__exit__(*exc) + + @contextmanager + def _stay(self) -> Generator[None, None, None]: + """Return a context manager keeping the position. + + At the end of the block, seek back to original position. + """ + pos = self.tell() + try: + yield + finally: + self.seek(pos) + + def _check_zip(self) -> None: + """Check and download until the file is a valid ZIP.""" + end = self._length - 1 + for start in reversed(range(0, end, self._chunk_size)): + self._download(start, end) + with self._stay(): + try: + # For read-only ZIP files, ZipFile only needs + # methods read, seek, seekable and tell. + ZipFile(self) # type: ignore + except BadZipFile: + pass + else: + break + + def _stream_response( + self, start: int, end: int, base_headers: Dict[str, str] = HEADERS + ) -> Response: + """Return HTTP response to a range request from start to end.""" + headers = base_headers.copy() + headers["Range"] = f"bytes={start}-{end}" + # TODO: Get range requests to be correctly cached + headers["Cache-Control"] = "no-cache" + return self._session.get(self._url, headers=headers, stream=True) + + def _merge( + self, start: int, end: int, left: int, right: int + ) -> Generator[Tuple[int, int], None, None]: + """Return a generator of intervals to be fetched. + + Args: + start (int): Start of needed interval + end (int): End of needed interval + left (int): Index of first overlapping downloaded data + right (int): Index after last overlapping downloaded data + """ + lslice, rslice = self._left[left:right], self._right[left:right] + i = start = min([start] + lslice[:1]) + end = max([end] + rslice[-1:]) + for j, k in zip(lslice, rslice): + if j > i: + yield i, j - 1 + i = k + 1 + if i <= end: + yield i, end + self._left[left:right], self._right[left:right] = [start], [end] + + def _download(self, start: int, end: int) -> None: + """Download bytes from start to end inclusively.""" + with self._stay(): + left = bisect_left(self._right, start) + right = bisect_right(self._left, end) + for start, end in self._merge(start, end, left, right): + response = self._stream_response(start, end) + response.raise_for_status() + self.seek(start) + for chunk in response_chunks(response, self._chunk_size): + self._file.write(chunk) diff --git a/venv/lib/python3.12/site-packages/pip/_internal/network/session.py b/venv/lib/python3.12/site-packages/pip/_internal/network/session.py new file mode 100644 index 0000000..f17efc5 --- /dev/null +++ b/venv/lib/python3.12/site-packages/pip/_internal/network/session.py @@ -0,0 +1,520 @@ +"""PipSession and supporting code, containing all pip-specific +network request configuration and behavior. +""" + +import email.utils +import io +import ipaddress +import json +import logging +import mimetypes +import os +import platform +import shutil +import subprocess +import sys +import urllib.parse +import warnings +from typing import ( + TYPE_CHECKING, + Any, + Dict, + Generator, + List, + Mapping, + Optional, + Sequence, + Tuple, + Union, +) + +from pip._vendor import requests, urllib3 +from pip._vendor.cachecontrol import CacheControlAdapter as _BaseCacheControlAdapter +from pip._vendor.requests.adapters import DEFAULT_POOLBLOCK, BaseAdapter +from pip._vendor.requests.adapters import HTTPAdapter as _BaseHTTPAdapter +from pip._vendor.requests.models import PreparedRequest, Response +from pip._vendor.requests.structures import CaseInsensitiveDict +from pip._vendor.urllib3.connectionpool import ConnectionPool +from pip._vendor.urllib3.exceptions import InsecureRequestWarning + +from pip import __version__ +from pip._internal.metadata import get_default_environment +from pip._internal.models.link import Link +from pip._internal.network.auth import MultiDomainBasicAuth +from pip._internal.network.cache import SafeFileCache + +# Import ssl from compat so the initial import occurs in only one place. +from pip._internal.utils.compat import has_tls +from pip._internal.utils.glibc import libc_ver +from pip._internal.utils.misc import build_url_from_netloc, parse_netloc +from pip._internal.utils.urls import url_to_path + +if TYPE_CHECKING: + from ssl import SSLContext + + from pip._vendor.urllib3.poolmanager import PoolManager + + +logger = logging.getLogger(__name__) + +SecureOrigin = Tuple[str, str, Optional[Union[int, str]]] + + +# Ignore warning raised when using --trusted-host. +warnings.filterwarnings("ignore", category=InsecureRequestWarning) + + +SECURE_ORIGINS: List[SecureOrigin] = [ + # protocol, hostname, port + # Taken from Chrome's list of secure origins (See: http://bit.ly/1qrySKC) + ("https", "*", "*"), + ("*", "localhost", "*"), + ("*", "127.0.0.0/8", "*"), + ("*", "::1/128", "*"), + ("file", "*", None), + # ssh is always secure. + ("ssh", "*", "*"), +] + + +# These are environment variables present when running under various +# CI systems. For each variable, some CI systems that use the variable +# are indicated. The collection was chosen so that for each of a number +# of popular systems, at least one of the environment variables is used. +# This list is used to provide some indication of and lower bound for +# CI traffic to PyPI. Thus, it is okay if the list is not comprehensive. +# For more background, see: https://github.com/pypa/pip/issues/5499 +CI_ENVIRONMENT_VARIABLES = ( + # Azure Pipelines + "BUILD_BUILDID", + # Jenkins + "BUILD_ID", + # AppVeyor, CircleCI, Codeship, Gitlab CI, Shippable, Travis CI + "CI", + # Explicit environment variable. + "PIP_IS_CI", +) + + +def looks_like_ci() -> bool: + """ + Return whether it looks like pip is running under CI. + """ + # We don't use the method of checking for a tty (e.g. using isatty()) + # because some CI systems mimic a tty (e.g. Travis CI). Thus that + # method doesn't provide definitive information in either direction. + return any(name in os.environ for name in CI_ENVIRONMENT_VARIABLES) + + +def user_agent() -> str: + """ + Return a string representing the user agent. + """ + data: Dict[str, Any] = { + "installer": {"name": "pip", "version": __version__}, + "python": platform.python_version(), + "implementation": { + "name": platform.python_implementation(), + }, + } + + if data["implementation"]["name"] == "CPython": + data["implementation"]["version"] = platform.python_version() + elif data["implementation"]["name"] == "PyPy": + pypy_version_info = sys.pypy_version_info # type: ignore + if pypy_version_info.releaselevel == "final": + pypy_version_info = pypy_version_info[:3] + data["implementation"]["version"] = ".".join( + [str(x) for x in pypy_version_info] + ) + elif data["implementation"]["name"] == "Jython": + # Complete Guess + data["implementation"]["version"] = platform.python_version() + elif data["implementation"]["name"] == "IronPython": + # Complete Guess + data["implementation"]["version"] = platform.python_version() + + if sys.platform.startswith("linux"): + from pip._vendor import distro + + linux_distribution = distro.name(), distro.version(), distro.codename() + distro_infos: Dict[str, Any] = dict( + filter( + lambda x: x[1], + zip(["name", "version", "id"], linux_distribution), + ) + ) + libc = dict( + filter( + lambda x: x[1], + zip(["lib", "version"], libc_ver()), + ) + ) + if libc: + distro_infos["libc"] = libc + if distro_infos: + data["distro"] = distro_infos + + if sys.platform.startswith("darwin") and platform.mac_ver()[0]: + data["distro"] = {"name": "macOS", "version": platform.mac_ver()[0]} + + if platform.system(): + data.setdefault("system", {})["name"] = platform.system() + + if platform.release(): + data.setdefault("system", {})["release"] = platform.release() + + if platform.machine(): + data["cpu"] = platform.machine() + + if has_tls(): + import _ssl as ssl + + data["openssl_version"] = ssl.OPENSSL_VERSION + + setuptools_dist = get_default_environment().get_distribution("setuptools") + if setuptools_dist is not None: + data["setuptools_version"] = str(setuptools_dist.version) + + if shutil.which("rustc") is not None: + # If for any reason `rustc --version` fails, silently ignore it + try: + rustc_output = subprocess.check_output( + ["rustc", "--version"], stderr=subprocess.STDOUT, timeout=0.5 + ) + except Exception: + pass + else: + if rustc_output.startswith(b"rustc "): + # The format of `rustc --version` is: + # `b'rustc 1.52.1 (9bc8c42bb 2021-05-09)\n'` + # We extract just the middle (1.52.1) part + data["rustc_version"] = rustc_output.split(b" ")[1].decode() + + # Use None rather than False so as not to give the impression that + # pip knows it is not being run under CI. Rather, it is a null or + # inconclusive result. Also, we include some value rather than no + # value to make it easier to know that the check has been run. + data["ci"] = True if looks_like_ci() else None + + user_data = os.environ.get("PIP_USER_AGENT_USER_DATA") + if user_data is not None: + data["user_data"] = user_data + + return "{data[installer][name]}/{data[installer][version]} {json}".format( + data=data, + json=json.dumps(data, separators=(",", ":"), sort_keys=True), + ) + + +class LocalFSAdapter(BaseAdapter): + def send( + self, + request: PreparedRequest, + stream: bool = False, + timeout: Optional[Union[float, Tuple[float, float]]] = None, + verify: Union[bool, str] = True, + cert: Optional[Union[str, Tuple[str, str]]] = None, + proxies: Optional[Mapping[str, str]] = None, + ) -> Response: + pathname = url_to_path(request.url) + + resp = Response() + resp.status_code = 200 + resp.url = request.url + + try: + stats = os.stat(pathname) + except OSError as exc: + # format the exception raised as a io.BytesIO object, + # to return a better error message: + resp.status_code = 404 + resp.reason = type(exc).__name__ + resp.raw = io.BytesIO(f"{resp.reason}: {exc}".encode("utf8")) + else: + modified = email.utils.formatdate(stats.st_mtime, usegmt=True) + content_type = mimetypes.guess_type(pathname)[0] or "text/plain" + resp.headers = CaseInsensitiveDict( + { + "Content-Type": content_type, + "Content-Length": stats.st_size, + "Last-Modified": modified, + } + ) + + resp.raw = open(pathname, "rb") + resp.close = resp.raw.close + + return resp + + def close(self) -> None: + pass + + +class _SSLContextAdapterMixin: + """Mixin to add the ``ssl_context`` constructor argument to HTTP adapters. + + The additional argument is forwarded directly to the pool manager. This allows us + to dynamically decide what SSL store to use at runtime, which is used to implement + the optional ``truststore`` backend. + """ + + def __init__( + self, + *, + ssl_context: Optional["SSLContext"] = None, + **kwargs: Any, + ) -> None: + self._ssl_context = ssl_context + super().__init__(**kwargs) + + def init_poolmanager( + self, + connections: int, + maxsize: int, + block: bool = DEFAULT_POOLBLOCK, + **pool_kwargs: Any, + ) -> "PoolManager": + if self._ssl_context is not None: + pool_kwargs.setdefault("ssl_context", self._ssl_context) + return super().init_poolmanager( # type: ignore[misc] + connections=connections, + maxsize=maxsize, + block=block, + **pool_kwargs, + ) + + +class HTTPAdapter(_SSLContextAdapterMixin, _BaseHTTPAdapter): + pass + + +class CacheControlAdapter(_SSLContextAdapterMixin, _BaseCacheControlAdapter): + pass + + +class InsecureHTTPAdapter(HTTPAdapter): + def cert_verify( + self, + conn: ConnectionPool, + url: str, + verify: Union[bool, str], + cert: Optional[Union[str, Tuple[str, str]]], + ) -> None: + super().cert_verify(conn=conn, url=url, verify=False, cert=cert) + + +class InsecureCacheControlAdapter(CacheControlAdapter): + def cert_verify( + self, + conn: ConnectionPool, + url: str, + verify: Union[bool, str], + cert: Optional[Union[str, Tuple[str, str]]], + ) -> None: + super().cert_verify(conn=conn, url=url, verify=False, cert=cert) + + +class PipSession(requests.Session): + timeout: Optional[int] = None + + def __init__( + self, + *args: Any, + retries: int = 0, + cache: Optional[str] = None, + trusted_hosts: Sequence[str] = (), + index_urls: Optional[List[str]] = None, + ssl_context: Optional["SSLContext"] = None, + **kwargs: Any, + ) -> None: + """ + :param trusted_hosts: Domains not to emit warnings for when not using + HTTPS. + """ + super().__init__(*args, **kwargs) + + # Namespace the attribute with "pip_" just in case to prevent + # possible conflicts with the base class. + self.pip_trusted_origins: List[Tuple[str, Optional[int]]] = [] + + # Attach our User Agent to the request + self.headers["User-Agent"] = user_agent() + + # Attach our Authentication handler to the session + self.auth = MultiDomainBasicAuth(index_urls=index_urls) + + # Create our urllib3.Retry instance which will allow us to customize + # how we handle retries. + retries = urllib3.Retry( + # Set the total number of retries that a particular request can + # have. + total=retries, + # A 503 error from PyPI typically means that the Fastly -> Origin + # connection got interrupted in some way. A 503 error in general + # is typically considered a transient error so we'll go ahead and + # retry it. + # A 500 may indicate transient error in Amazon S3 + # A 502 may be a transient error from a CDN like CloudFlare or CloudFront + # A 520 or 527 - may indicate transient error in CloudFlare + status_forcelist=[500, 502, 503, 520, 527], + # Add a small amount of back off between failed requests in + # order to prevent hammering the service. + backoff_factor=0.25, + ) # type: ignore + + # Our Insecure HTTPAdapter disables HTTPS validation. It does not + # support caching so we'll use it for all http:// URLs. + # If caching is disabled, we will also use it for + # https:// hosts that we've marked as ignoring + # TLS errors for (trusted-hosts). + insecure_adapter = InsecureHTTPAdapter(max_retries=retries) + + # We want to _only_ cache responses on securely fetched origins or when + # the host is specified as trusted. We do this because + # we can't validate the response of an insecurely/untrusted fetched + # origin, and we don't want someone to be able to poison the cache and + # require manual eviction from the cache to fix it. + if cache: + secure_adapter = CacheControlAdapter( + cache=SafeFileCache(cache), + max_retries=retries, + ssl_context=ssl_context, + ) + self._trusted_host_adapter = InsecureCacheControlAdapter( + cache=SafeFileCache(cache), + max_retries=retries, + ) + else: + secure_adapter = HTTPAdapter(max_retries=retries, ssl_context=ssl_context) + self._trusted_host_adapter = insecure_adapter + + self.mount("https://", secure_adapter) + self.mount("http://", insecure_adapter) + + # Enable file:// urls + self.mount("file://", LocalFSAdapter()) + + for host in trusted_hosts: + self.add_trusted_host(host, suppress_logging=True) + + def update_index_urls(self, new_index_urls: List[str]) -> None: + """ + :param new_index_urls: New index urls to update the authentication + handler with. + """ + self.auth.index_urls = new_index_urls + + def add_trusted_host( + self, host: str, source: Optional[str] = None, suppress_logging: bool = False + ) -> None: + """ + :param host: It is okay to provide a host that has previously been + added. + :param source: An optional source string, for logging where the host + string came from. + """ + if not suppress_logging: + msg = f"adding trusted host: {host!r}" + if source is not None: + msg += f" (from {source})" + logger.info(msg) + + parsed_host, parsed_port = parse_netloc(host) + if parsed_host is None: + raise ValueError(f"Trusted host URL must include a host part: {host!r}") + if (parsed_host, parsed_port) not in self.pip_trusted_origins: + self.pip_trusted_origins.append((parsed_host, parsed_port)) + + self.mount( + build_url_from_netloc(host, scheme="http") + "/", self._trusted_host_adapter + ) + self.mount(build_url_from_netloc(host) + "/", self._trusted_host_adapter) + if not parsed_port: + self.mount( + build_url_from_netloc(host, scheme="http") + ":", + self._trusted_host_adapter, + ) + # Mount wildcard ports for the same host. + self.mount(build_url_from_netloc(host) + ":", self._trusted_host_adapter) + + def iter_secure_origins(self) -> Generator[SecureOrigin, None, None]: + yield from SECURE_ORIGINS + for host, port in self.pip_trusted_origins: + yield ("*", host, "*" if port is None else port) + + def is_secure_origin(self, location: Link) -> bool: + # Determine if this url used a secure transport mechanism + parsed = urllib.parse.urlparse(str(location)) + origin_protocol, origin_host, origin_port = ( + parsed.scheme, + parsed.hostname, + parsed.port, + ) + + # The protocol to use to see if the protocol matches. + # Don't count the repository type as part of the protocol: in + # cases such as "git+ssh", only use "ssh". (I.e., Only verify against + # the last scheme.) + origin_protocol = origin_protocol.rsplit("+", 1)[-1] + + # Determine if our origin is a secure origin by looking through our + # hardcoded list of secure origins, as well as any additional ones + # configured on this PackageFinder instance. + for secure_origin in self.iter_secure_origins(): + secure_protocol, secure_host, secure_port = secure_origin + if origin_protocol != secure_protocol and secure_protocol != "*": + continue + + try: + addr = ipaddress.ip_address(origin_host or "") + network = ipaddress.ip_network(secure_host) + except ValueError: + # We don't have both a valid address or a valid network, so + # we'll check this origin against hostnames. + if ( + origin_host + and origin_host.lower() != secure_host.lower() + and secure_host != "*" + ): + continue + else: + # We have a valid address and network, so see if the address + # is contained within the network. + if addr not in network: + continue + + # Check to see if the port matches. + if ( + origin_port != secure_port + and secure_port != "*" + and secure_port is not None + ): + continue + + # If we've gotten here, then this origin matches the current + # secure origin and we should return True + return True + + # If we've gotten to this point, then the origin isn't secure and we + # will not accept it as a valid location to search. We will however + # log a warning that we are ignoring it. + logger.warning( + "The repository located at %s is not a trusted or secure host and " + "is being ignored. If this repository is available via HTTPS we " + "recommend you use HTTPS instead, otherwise you may silence " + "this warning and allow it anyway with '--trusted-host %s'.", + origin_host, + origin_host, + ) + + return False + + def request(self, method: str, url: str, *args: Any, **kwargs: Any) -> Response: + # Allow setting a default timeout on a session + kwargs.setdefault("timeout", self.timeout) + # Allow setting a default proxies on a session + kwargs.setdefault("proxies", self.proxies) + + # Dispatch the actual request + return super().request(method, url, *args, **kwargs) diff --git a/venv/lib/python3.12/site-packages/pip/_internal/network/utils.py b/venv/lib/python3.12/site-packages/pip/_internal/network/utils.py new file mode 100644 index 0000000..134848a --- /dev/null +++ b/venv/lib/python3.12/site-packages/pip/_internal/network/utils.py @@ -0,0 +1,96 @@ +from typing import Dict, Generator + +from pip._vendor.requests.models import CONTENT_CHUNK_SIZE, Response + +from pip._internal.exceptions import NetworkConnectionError + +# The following comments and HTTP headers were originally added by +# Donald Stufft in git commit 22c562429a61bb77172039e480873fb239dd8c03. +# +# We use Accept-Encoding: identity here because requests defaults to +# accepting compressed responses. This breaks in a variety of ways +# depending on how the server is configured. +# - Some servers will notice that the file isn't a compressible file +# and will leave the file alone and with an empty Content-Encoding +# - Some servers will notice that the file is already compressed and +# will leave the file alone, adding a Content-Encoding: gzip header +# - Some servers won't notice anything at all and will take a file +# that's already been compressed and compress it again, and set +# the Content-Encoding: gzip header +# By setting this to request only the identity encoding we're hoping +# to eliminate the third case. Hopefully there does not exist a server +# which when given a file will notice it is already compressed and that +# you're not asking for a compressed file and will then decompress it +# before sending because if that's the case I don't think it'll ever be +# possible to make this work. +HEADERS: Dict[str, str] = {"Accept-Encoding": "identity"} + + +def raise_for_status(resp: Response) -> None: + http_error_msg = "" + if isinstance(resp.reason, bytes): + # We attempt to decode utf-8 first because some servers + # choose to localize their reason strings. If the string + # isn't utf-8, we fall back to iso-8859-1 for all other + # encodings. + try: + reason = resp.reason.decode("utf-8") + except UnicodeDecodeError: + reason = resp.reason.decode("iso-8859-1") + else: + reason = resp.reason + + if 400 <= resp.status_code < 500: + http_error_msg = ( + f"{resp.status_code} Client Error: {reason} for url: {resp.url}" + ) + + elif 500 <= resp.status_code < 600: + http_error_msg = ( + f"{resp.status_code} Server Error: {reason} for url: {resp.url}" + ) + + if http_error_msg: + raise NetworkConnectionError(http_error_msg, response=resp) + + +def response_chunks( + response: Response, chunk_size: int = CONTENT_CHUNK_SIZE +) -> Generator[bytes, None, None]: + """Given a requests Response, provide the data chunks.""" + try: + # Special case for urllib3. + for chunk in response.raw.stream( + chunk_size, + # We use decode_content=False here because we don't + # want urllib3 to mess with the raw bytes we get + # from the server. If we decompress inside of + # urllib3 then we cannot verify the checksum + # because the checksum will be of the compressed + # file. This breakage will only occur if the + # server adds a Content-Encoding header, which + # depends on how the server was configured: + # - Some servers will notice that the file isn't a + # compressible file and will leave the file alone + # and with an empty Content-Encoding + # - Some servers will notice that the file is + # already compressed and will leave the file + # alone and will add a Content-Encoding: gzip + # header + # - Some servers won't notice anything at all and + # will take a file that's already been compressed + # and compress it again and set the + # Content-Encoding: gzip header + # + # By setting this not to decode automatically we + # hope to eliminate problems with the second case. + decode_content=False, + ): + yield chunk + except AttributeError: + # Standard file-like object. + while True: + chunk = response.raw.read(chunk_size) + if not chunk: + break + yield chunk diff --git a/venv/lib/python3.12/site-packages/pip/_internal/network/xmlrpc.py b/venv/lib/python3.12/site-packages/pip/_internal/network/xmlrpc.py new file mode 100644 index 0000000..22ec8d2 --- /dev/null +++ b/venv/lib/python3.12/site-packages/pip/_internal/network/xmlrpc.py @@ -0,0 +1,62 @@ +"""xmlrpclib.Transport implementation +""" + +import logging +import urllib.parse +import xmlrpc.client +from typing import TYPE_CHECKING, Tuple + +from pip._internal.exceptions import NetworkConnectionError +from pip._internal.network.session import PipSession +from pip._internal.network.utils import raise_for_status + +if TYPE_CHECKING: + from xmlrpc.client import _HostType, _Marshallable + + from _typeshed import SizedBuffer + +logger = logging.getLogger(__name__) + + +class PipXmlrpcTransport(xmlrpc.client.Transport): + """Provide a `xmlrpclib.Transport` implementation via a `PipSession` + object. + """ + + def __init__( + self, index_url: str, session: PipSession, use_datetime: bool = False + ) -> None: + super().__init__(use_datetime) + index_parts = urllib.parse.urlparse(index_url) + self._scheme = index_parts.scheme + self._session = session + + def request( + self, + host: "_HostType", + handler: str, + request_body: "SizedBuffer", + verbose: bool = False, + ) -> Tuple["_Marshallable", ...]: + assert isinstance(host, str) + parts = (self._scheme, host, handler, None, None, None) + url = urllib.parse.urlunparse(parts) + try: + headers = {"Content-Type": "text/xml"} + response = self._session.post( + url, + data=request_body, + headers=headers, + stream=True, + ) + raise_for_status(response) + self.verbose = verbose + return self.parse_response(response.raw) + except NetworkConnectionError as exc: + assert exc.response + logger.critical( + "HTTP error %s while getting %s", + exc.response.status_code, + url, + ) + raise diff --git a/venv/lib/python3.12/site-packages/pip/_internal/operations/__init__.py b/venv/lib/python3.12/site-packages/pip/_internal/operations/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/venv/lib/python3.12/site-packages/pip/_internal/operations/__pycache__/__init__.cpython-312.pyc b/venv/lib/python3.12/site-packages/pip/_internal/operations/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..cf3f8cf7c7021792c0fc48afc58ddb6538dc2ba5 GIT binary patch literal 194 zcmZ8a!41MN3`{6U2&secpce2&jKB&}Xd@bE6Dx5mIteo{3ls2W0@Pn$IA2aW`+T~S zUwOU~jQ54EX@AoA$2e!_AqKIQr>6)rzQ&Z9G}OK|fL#r->?&1yN9ImSqlMnM9vXWF z9H{ngUu<^}Etw7K@}@5)0$K!Rxe=Uhz@rJ8talLmC)j$y$cB{L@R K&7_neWAy`}>on~E literal 0 HcmV?d00001 diff --git a/venv/lib/python3.12/site-packages/pip/_internal/operations/__pycache__/check.cpython-312.pyc b/venv/lib/python3.12/site-packages/pip/_internal/operations/__pycache__/check.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..bb84bdef5b48818d08dc62966ad935254cf321a1 GIT binary patch literal 7576 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 literal 0 HcmV?d00001 diff --git a/venv/lib/python3.12/site-packages/pip/_internal/operations/__pycache__/prepare.cpython-312.pyc b/venv/lib/python3.12/site-packages/pip/_internal/operations/__pycache__/prepare.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..b21e655f64c544c34898e1d97f491990dbd28259 GIT binary patch literal 25744 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 literal 0 HcmV?d00001 diff --git a/venv/lib/python3.12/site-packages/pip/_internal/operations/build/__init__.py b/venv/lib/python3.12/site-packages/pip/_internal/operations/build/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/venv/lib/python3.12/site-packages/pip/_internal/operations/build/__pycache__/__init__.cpython-312.pyc b/venv/lib/python3.12/site-packages/pip/_internal/operations/build/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..b47dd9daf7b6709e23eda50701f01c8ffae29bc0 GIT binary patch literal 200 zcmZ8a%MHRX3{5CV2&sc`pcZgNjKB&}+D2`lO{{z>Iteo{3lnf=0@PbiI9HzZ>}S7c z`IYAzMtC>jn))Y|e@si-JlM##{PJXOLDQ5na|5mI6<}<^SFskAH9_5jkf>o$W`ItY zfMaN_ITrf^cpcOZWp$H{@_-saXu5Dlc3@FC8MHMX%BZ^<1bI3LQQ$bQPra>Ur_OFg Pe>u@7@y$5rE+h2=5PUZ> literal 0 HcmV?d00001 diff --git a/venv/lib/python3.12/site-packages/pip/_internal/operations/build/__pycache__/build_tracker.cpython-312.pyc b/venv/lib/python3.12/site-packages/pip/_internal/operations/build/__pycache__/build_tracker.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..9c160d99a31f54df0831d53fc686bc2df972de4a GIT binary patch literal 7820 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 literal 0 HcmV?d00001 diff --git a/venv/lib/python3.12/site-packages/pip/_internal/operations/build/__pycache__/metadata.cpython-312.pyc b/venv/lib/python3.12/site-packages/pip/_internal/operations/build/__pycache__/metadata.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..48a8604c354a164eb1454047761eb5f61efd6fc6 GIT binary patch literal 1877 zcmZ`)&2Jk;6rb4-ukCn~ris!>DP%=Mf|25-w51Yi3m8g@fVPU;Lw#9oJQI7<{nE@j zZXyRN#DPkPiW3|-^orU)fR9sis?*P&Gz%QN#n=FM;B z{pRg`UC$$Eztp3JuT+G77ed;y-N|+XCf^`}s)%4Bxwwj9lwHY_t1=ck#Z^4DswQ*Q z&3IZ>^Rm@!B4^y3m#^lNx#sqHg=zujS*ns8l}VoJq>t+JSyK31srD~PMSc1B$278u z9oa^m`jpv`6ZnQ3)Sa3!A25RlO;)1@ad^a>xu&r4QvMGC_Iwe?Bju*!lCoX9N_}!J z2(G?syDnv5IgnV+`il+=e2@B3QHsYt@OcCd$tIQNT*!hN<@_vT0gFddATvE2@7s<` z2?QHsO&`EnEhlPNJaiJlgQa$zf?2;rz3@GU(OML+r8qYyKv~pZjJ3HAv{)l>OvmMM zhS8|W{F>aoZ!u`_7xMNz7Iz;(-)SNPcjVhrM_Q5F@dWdmFX`>SeqX=@^X+*i* zjj^J(@q&o|OlzyDhgg|I;FWvE1;qA#oJa1%I6Jevq>Jg z5jAK^U2yA#A}Jk8iTCn=7ZA$)>D1v8@KL$y_#{41cY`@#<&x#uJ`jp5AGyeAXtNHM z?(29ZTmrf-0L4mC;JHPh-9QNBf(2HWTjz^8CZ2Jugm%A_4tHaq=gHo3X9*EjSH0G4n^Cmn~lJuX4q_)yw)UEE$}0HEwb#;F&E(xnXWTuhD%W+@Q;;_ zzHV|SqSM`@b2D^8({f-1^KI7*!fpxSW^y1i#Z(HH;=yi(**`fu3_t`g`A^VYM?3xK z(8OBt&3l&~jLcrY@M!3z&7rCFp{eU1J<1(?f^upF?_|-z>9y(Ejls$nnTPuDrarl@ zPu^PG&`VE{lB?h?N!Ba);rQg{_{{qF%)P?K_~ow)yQ;A5_9Y=kP@(_k$r~qcp1N`B z+rlk(qwm<7a_sLN4Go)rA`Hua9Vz|LdN49`@ABG#*?+cVq1)TllK9Ckd!0~Q38p>% z7Qp}Rh4PgABQB4rKM%fhTDhxdLB4xBS02??GkSSQTOCrxd{hRP)iJd^ky|x1@L8Qw z%dct0fmpLF64We<4MVti46e3hK?X>`;QG4kvl>ukITPh7K9qQ*mtX3YJ*Eij=+jnu ztwzJ7e*cGGFFx%9_1)#Aeadz?eE4}z5tLj(sSe|1_&g-Z{2pz?-iVDsx0gKykFM#` zGi(w>Q4#q$=-@grej;J4Y-bS8KSpOBqvN}hjHSP_2+!c(&>LHs5q$jN!1$Id##i6& Tj31s)#z$&)M+H558G`)_c47q7 literal 0 HcmV?d00001 diff --git a/venv/lib/python3.12/site-packages/pip/_internal/operations/build/__pycache__/metadata_editable.cpython-312.pyc b/venv/lib/python3.12/site-packages/pip/_internal/operations/build/__pycache__/metadata_editable.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..47a0b2b29ef2907c7fb013ed17d52dc267411795 GIT binary patch literal 1911 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 literal 0 HcmV?d00001 diff --git a/venv/lib/python3.12/site-packages/pip/_internal/operations/build/__pycache__/wheel_legacy.cpython-312.pyc b/venv/lib/python3.12/site-packages/pip/_internal/operations/build/__pycache__/wheel_legacy.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..af8d8878db11043f6300f68287e27869073f035b GIT binary patch literal 3926 zcmb_fU2Gf25#HnRj(5jjiKPANV;JG(nO-^}Qb(Wru;eO9vOzX~JtcgnO{yh*(H5{SDGKcsg8(Oh-5rKsuTqXf4ut>#>KN&rQcQ zQ4i{geqgnbp3o#cF)M2F2f^tsO=*vWVI%_2URlAPIUCWUFr%Bv#6T_%Poh1$t4(#o zcS&!}ifKuhm0aX9sW0eurZNFHI9Vo^D_yHuWwTl^GMpPRYkDJE)pQ&N9s1xEQXH8rwSoxw^sT8UjlXD}l zaj_O>)~#CIazzYF;A%18TZ;8O^z?c0C+O}Xt7%1qY}B&oQb6PEz&*IJkN73t=19oq zHNFu=2sr*avfBFQ1*Y@0?qQR&#Mb9|sYP|(H!dNBsor2mug%SaSM6_J_1!n&xH@H4^~T}7Uw=|3x_a!`O&!meKv||r=FEln8i_rEN=C%=^sY!(*0I}F z(yhz0vwG1g-_$4do4VnKnwxTkOP42p^j%lds~TA-TXUHpmSHZYpzGYUrjw!@wDemR z3BrI1?bVIkoLSLxwfbC+6zdxJNR!g@PUcA2(vQ^& z#T$i^PI9$!EtfCD3=Hm?17F1j>bfL1Q!g7@&UZ^gFBOW5+1jF;-s6Z^Cw0TZJ+PSw zJmf>@meG!aQinI}?c}NDNhhjqys;5`FtZsxv3%)o;eJPoY$iswq>+`Nmq3xk^3|O< zQW8((!7X`kTORs#={J@8l|Rd4Oz`}cbRGmFOwf~2;=q&m$X0x0!+IP)>O=s1_z17JeVXxu!N+tci}qb>=yV6`>dyd8YlgbZ_DVHY&$1@CFL&~kVVEe5PMBsu`q zcm|&{TJY=l0g}!2{(n2M=-sk5A8S#a_k34}Zc#R8BTb-TxwV_?2q1d#hb$_WR)wRi8+uuTAVXY0x<+eFtIY@>ibIy zrsmGbu1HJ_YrCQk5rzp&&EF%IQ(Ix0>~`Uv zuaFXkP?dO?3d2M0K?gwWM$zQj>0kX|`SNGsgcE=J zN$l!Y?CKvbZO7hO;T5N_MV%ouRx-?)f{`~_CM9mvKWd8=sFP^LcA5cgG}JN# zf3O$9kTC3^Ej;2L(x3@#Nz?*1f+WX7k_%aFJlmlb`c9)I$!ba?G#~Qk?d~*%l!^1#Ib&*j`Vz+8CMd-mS%_JE&h$EPBbT*@`XL$QEt+k@Bz^QI^7XxERo6 z`s=KI9StFim1lI~A%stI$d=|IY42@X`-B|Yb-q>sw@X};I+27!@1nhHF3Jn&7XL0< z;D*o%M7V_jmEz#HDEr?t;l_s(G>b4S)vGk;05+ScN3Am;QS=}5z4>4h*3F_Pt0>gz z{fI%@;i4HTW>r!z(%NXYZWw-~u(IkkP=^=FL_ezfuRvo;Bdm@x7lqW9Y4l&}Oz8xradnt9_WAi$Z3(NpiaJ;}Nmt~H z3z{2h7J{yzV{GEa8&?VtT{QpXuP;7KrZU1e#)eE7Q|HIjFZ?JYX!=aOgsH2#^5t7a zogoLpQMp1(I((RRZ5!clQEA050cd6FM(FPIkV*;E z4meAPMZZ>J`)tWlFcX?G=>4^tAH2GEM=bx^@i~zEHaz4RbP%)pQ1?kkN;|#7PS23j zw|_?#y2a)1dok3Ld60S_KDe=&9ABP%DyP>Bs24ocD-3Kb(9jiGjclfme?0tHI_Cuy zx$kNEkdqj2_K!QM15V$Ypr|Lda%HCnbtUgAca-(h+lj#y;c5D~)7|T&2b`|7(?8_w z8{7$tJ<5s#D<%eB=0N?w=^9_{q)?*&OT^24P9%AIYISP;?BmGL(@6L2$<@it{O5)$0lH_CzGgFG7?W?cmi5 literal 0 HcmV?d00001 diff --git a/venv/lib/python3.12/site-packages/pip/_internal/operations/build/build_tracker.py b/venv/lib/python3.12/site-packages/pip/_internal/operations/build/build_tracker.py new file mode 100644 index 0000000..3791932 --- /dev/null +++ b/venv/lib/python3.12/site-packages/pip/_internal/operations/build/build_tracker.py @@ -0,0 +1,139 @@ +import contextlib +import hashlib +import logging +import os +from types import TracebackType +from typing import Dict, Generator, Optional, Set, Type, Union + +from pip._internal.models.link import Link +from pip._internal.req.req_install import InstallRequirement +from pip._internal.utils.temp_dir import TempDirectory + +logger = logging.getLogger(__name__) + + +@contextlib.contextmanager +def update_env_context_manager(**changes: str) -> Generator[None, None, None]: + target = os.environ + + # Save values from the target and change them. + non_existent_marker = object() + saved_values: Dict[str, Union[object, str]] = {} + for name, new_value in changes.items(): + try: + saved_values[name] = target[name] + except KeyError: + saved_values[name] = non_existent_marker + target[name] = new_value + + try: + yield + finally: + # Restore original values in the target. + for name, original_value in saved_values.items(): + if original_value is non_existent_marker: + del target[name] + else: + assert isinstance(original_value, str) # for mypy + target[name] = original_value + + +@contextlib.contextmanager +def get_build_tracker() -> Generator["BuildTracker", None, None]: + root = os.environ.get("PIP_BUILD_TRACKER") + with contextlib.ExitStack() as ctx: + if root is None: + root = ctx.enter_context(TempDirectory(kind="build-tracker")).path + ctx.enter_context(update_env_context_manager(PIP_BUILD_TRACKER=root)) + logger.debug("Initialized build tracking at %s", root) + + with BuildTracker(root) as tracker: + yield tracker + + +class TrackerId(str): + """Uniquely identifying string provided to the build tracker.""" + + +class BuildTracker: + """Ensure that an sdist cannot request itself as a setup requirement. + + When an sdist is prepared, it identifies its setup requirements in the + context of ``BuildTracker.track()``. If a requirement shows up recursively, this + raises an exception. + + This stops fork bombs embedded in malicious packages.""" + + def __init__(self, root: str) -> None: + self._root = root + self._entries: Dict[TrackerId, InstallRequirement] = {} + logger.debug("Created build tracker: %s", self._root) + + def __enter__(self) -> "BuildTracker": + logger.debug("Entered build tracker: %s", self._root) + return self + + def __exit__( + self, + exc_type: Optional[Type[BaseException]], + exc_val: Optional[BaseException], + exc_tb: Optional[TracebackType], + ) -> None: + self.cleanup() + + def _entry_path(self, key: TrackerId) -> str: + hashed = hashlib.sha224(key.encode()).hexdigest() + return os.path.join(self._root, hashed) + + def add(self, req: InstallRequirement, key: TrackerId) -> None: + """Add an InstallRequirement to build tracking.""" + + # Get the file to write information about this requirement. + entry_path = self._entry_path(key) + + # Try reading from the file. If it exists and can be read from, a build + # is already in progress, so a LookupError is raised. + try: + with open(entry_path) as fp: + contents = fp.read() + except FileNotFoundError: + pass + else: + message = "{} is already being built: {}".format(req.link, contents) + raise LookupError(message) + + # If we're here, req should really not be building already. + assert key not in self._entries + + # Start tracking this requirement. + with open(entry_path, "w", encoding="utf-8") as fp: + fp.write(str(req)) + self._entries[key] = req + + logger.debug("Added %s to build tracker %r", req, self._root) + + def remove(self, req: InstallRequirement, key: TrackerId) -> None: + """Remove an InstallRequirement from build tracking.""" + + # Delete the created file and the corresponding entry. + os.unlink(self._entry_path(key)) + del self._entries[key] + + logger.debug("Removed %s from build tracker %r", req, self._root) + + def cleanup(self) -> None: + for key, req in list(self._entries.items()): + self.remove(req, key) + + logger.debug("Removed build tracker: %r", self._root) + + @contextlib.contextmanager + def track(self, req: InstallRequirement, key: str) -> Generator[None, None, None]: + """Ensure that `key` cannot install itself as a setup requirement. + + :raises LookupError: If `key` was already provided in a parent invocation of + the context introduced by this method.""" + tracker_id = TrackerId(key) + self.add(req, tracker_id) + yield + self.remove(req, tracker_id) diff --git a/venv/lib/python3.12/site-packages/pip/_internal/operations/build/metadata.py b/venv/lib/python3.12/site-packages/pip/_internal/operations/build/metadata.py new file mode 100644 index 0000000..c66ac35 --- /dev/null +++ b/venv/lib/python3.12/site-packages/pip/_internal/operations/build/metadata.py @@ -0,0 +1,39 @@ +"""Metadata generation logic for source distributions. +""" + +import os + +from pip._vendor.pyproject_hooks import BuildBackendHookCaller + +from pip._internal.build_env import BuildEnvironment +from pip._internal.exceptions import ( + InstallationSubprocessError, + MetadataGenerationFailed, +) +from pip._internal.utils.subprocess import runner_with_spinner_message +from pip._internal.utils.temp_dir import TempDirectory + + +def generate_metadata( + build_env: BuildEnvironment, backend: BuildBackendHookCaller, details: str +) -> str: + """Generate metadata using mechanisms described in PEP 517. + + Returns the generated metadata directory. + """ + metadata_tmpdir = TempDirectory(kind="modern-metadata", globally_managed=True) + + metadata_dir = metadata_tmpdir.path + + with build_env: + # Note that BuildBackendHookCaller implements a fallback for + # prepare_metadata_for_build_wheel, so we don't have to + # consider the possibility that this hook doesn't exist. + runner = runner_with_spinner_message("Preparing metadata (pyproject.toml)") + with backend.subprocess_runner(runner): + try: + distinfo_dir = backend.prepare_metadata_for_build_wheel(metadata_dir) + except InstallationSubprocessError as error: + raise MetadataGenerationFailed(package_details=details) from error + + return os.path.join(metadata_dir, distinfo_dir) diff --git a/venv/lib/python3.12/site-packages/pip/_internal/operations/build/metadata_editable.py b/venv/lib/python3.12/site-packages/pip/_internal/operations/build/metadata_editable.py new file mode 100644 index 0000000..27c69f0 --- /dev/null +++ b/venv/lib/python3.12/site-packages/pip/_internal/operations/build/metadata_editable.py @@ -0,0 +1,41 @@ +"""Metadata generation logic for source distributions. +""" + +import os + +from pip._vendor.pyproject_hooks import BuildBackendHookCaller + +from pip._internal.build_env import BuildEnvironment +from pip._internal.exceptions import ( + InstallationSubprocessError, + MetadataGenerationFailed, +) +from pip._internal.utils.subprocess import runner_with_spinner_message +from pip._internal.utils.temp_dir import TempDirectory + + +def generate_editable_metadata( + build_env: BuildEnvironment, backend: BuildBackendHookCaller, details: str +) -> str: + """Generate metadata using mechanisms described in PEP 660. + + Returns the generated metadata directory. + """ + metadata_tmpdir = TempDirectory(kind="modern-metadata", globally_managed=True) + + metadata_dir = metadata_tmpdir.path + + with build_env: + # Note that BuildBackendHookCaller implements a fallback for + # prepare_metadata_for_build_wheel/editable, so we don't have to + # consider the possibility that this hook doesn't exist. + runner = runner_with_spinner_message( + "Preparing editable metadata (pyproject.toml)" + ) + with backend.subprocess_runner(runner): + try: + distinfo_dir = backend.prepare_metadata_for_build_editable(metadata_dir) + except InstallationSubprocessError as error: + raise MetadataGenerationFailed(package_details=details) from error + + return os.path.join(metadata_dir, distinfo_dir) diff --git a/venv/lib/python3.12/site-packages/pip/_internal/operations/build/metadata_legacy.py b/venv/lib/python3.12/site-packages/pip/_internal/operations/build/metadata_legacy.py new file mode 100644 index 0000000..e60988d --- /dev/null +++ b/venv/lib/python3.12/site-packages/pip/_internal/operations/build/metadata_legacy.py @@ -0,0 +1,74 @@ +"""Metadata generation logic for legacy source distributions. +""" + +import logging +import os + +from pip._internal.build_env import BuildEnvironment +from pip._internal.cli.spinners import open_spinner +from pip._internal.exceptions import ( + InstallationError, + InstallationSubprocessError, + MetadataGenerationFailed, +) +from pip._internal.utils.setuptools_build import make_setuptools_egg_info_args +from pip._internal.utils.subprocess import call_subprocess +from pip._internal.utils.temp_dir import TempDirectory + +logger = logging.getLogger(__name__) + + +def _find_egg_info(directory: str) -> str: + """Find an .egg-info subdirectory in `directory`.""" + filenames = [f for f in os.listdir(directory) if f.endswith(".egg-info")] + + if not filenames: + raise InstallationError(f"No .egg-info directory found in {directory}") + + if len(filenames) > 1: + raise InstallationError( + "More than one .egg-info directory found in {}".format(directory) + ) + + return os.path.join(directory, filenames[0]) + + +def generate_metadata( + build_env: BuildEnvironment, + setup_py_path: str, + source_dir: str, + isolated: bool, + details: str, +) -> str: + """Generate metadata using setup.py-based defacto mechanisms. + + Returns the generated metadata directory. + """ + logger.debug( + "Running setup.py (path:%s) egg_info for package %s", + setup_py_path, + details, + ) + + egg_info_dir = TempDirectory(kind="pip-egg-info", globally_managed=True).path + + args = make_setuptools_egg_info_args( + setup_py_path, + egg_info_dir=egg_info_dir, + no_user_config=isolated, + ) + + with build_env: + with open_spinner("Preparing metadata (setup.py)") as spinner: + try: + call_subprocess( + args, + cwd=source_dir, + command_desc="python setup.py egg_info", + spinner=spinner, + ) + except InstallationSubprocessError as error: + raise MetadataGenerationFailed(package_details=details) from error + + # Return the .egg-info directory. + return _find_egg_info(egg_info_dir) diff --git a/venv/lib/python3.12/site-packages/pip/_internal/operations/build/wheel.py b/venv/lib/python3.12/site-packages/pip/_internal/operations/build/wheel.py new file mode 100644 index 0000000..064811a --- /dev/null +++ b/venv/lib/python3.12/site-packages/pip/_internal/operations/build/wheel.py @@ -0,0 +1,37 @@ +import logging +import os +from typing import Optional + +from pip._vendor.pyproject_hooks import BuildBackendHookCaller + +from pip._internal.utils.subprocess import runner_with_spinner_message + +logger = logging.getLogger(__name__) + + +def build_wheel_pep517( + name: str, + backend: BuildBackendHookCaller, + metadata_directory: str, + tempd: str, +) -> Optional[str]: + """Build one InstallRequirement using the PEP 517 build process. + + Returns path to wheel if successfully built. Otherwise, returns None. + """ + assert metadata_directory is not None + try: + logger.debug("Destination directory: %s", tempd) + + runner = runner_with_spinner_message( + f"Building wheel for {name} (pyproject.toml)" + ) + with backend.subprocess_runner(runner): + wheel_name = backend.build_wheel( + tempd, + metadata_directory=metadata_directory, + ) + except Exception: + logger.error("Failed building wheel for %s", name) + return None + return os.path.join(tempd, wheel_name) diff --git a/venv/lib/python3.12/site-packages/pip/_internal/operations/build/wheel_editable.py b/venv/lib/python3.12/site-packages/pip/_internal/operations/build/wheel_editable.py new file mode 100644 index 0000000..719d69d --- /dev/null +++ b/venv/lib/python3.12/site-packages/pip/_internal/operations/build/wheel_editable.py @@ -0,0 +1,46 @@ +import logging +import os +from typing import Optional + +from pip._vendor.pyproject_hooks import BuildBackendHookCaller, HookMissing + +from pip._internal.utils.subprocess import runner_with_spinner_message + +logger = logging.getLogger(__name__) + + +def build_wheel_editable( + name: str, + backend: BuildBackendHookCaller, + metadata_directory: str, + tempd: str, +) -> Optional[str]: + """Build one InstallRequirement using the PEP 660 build process. + + Returns path to wheel if successfully built. Otherwise, returns None. + """ + assert metadata_directory is not None + try: + logger.debug("Destination directory: %s", tempd) + + runner = runner_with_spinner_message( + f"Building editable for {name} (pyproject.toml)" + ) + with backend.subprocess_runner(runner): + try: + wheel_name = backend.build_editable( + tempd, + metadata_directory=metadata_directory, + ) + except HookMissing as e: + logger.error( + "Cannot build editable %s because the build " + "backend does not have the %s hook", + name, + e, + ) + return None + except Exception: + logger.error("Failed building editable for %s", name) + return None + return os.path.join(tempd, wheel_name) diff --git a/venv/lib/python3.12/site-packages/pip/_internal/operations/build/wheel_legacy.py b/venv/lib/python3.12/site-packages/pip/_internal/operations/build/wheel_legacy.py new file mode 100644 index 0000000..c5f0492 --- /dev/null +++ b/venv/lib/python3.12/site-packages/pip/_internal/operations/build/wheel_legacy.py @@ -0,0 +1,102 @@ +import logging +import os.path +from typing import List, Optional + +from pip._internal.cli.spinners import open_spinner +from pip._internal.utils.setuptools_build import make_setuptools_bdist_wheel_args +from pip._internal.utils.subprocess import call_subprocess, format_command_args + +logger = logging.getLogger(__name__) + + +def format_command_result( + command_args: List[str], + command_output: str, +) -> str: + """Format command information for logging.""" + command_desc = format_command_args(command_args) + text = f"Command arguments: {command_desc}\n" + + if not command_output: + text += "Command output: None" + elif logger.getEffectiveLevel() > logging.DEBUG: + text += "Command output: [use --verbose to show]" + else: + if not command_output.endswith("\n"): + command_output += "\n" + text += f"Command output:\n{command_output}" + + return text + + +def get_legacy_build_wheel_path( + names: List[str], + temp_dir: str, + name: str, + command_args: List[str], + command_output: str, +) -> Optional[str]: + """Return the path to the wheel in the temporary build directory.""" + # Sort for determinism. + names = sorted(names) + if not names: + msg = ("Legacy build of wheel for {!r} created no files.\n").format(name) + msg += format_command_result(command_args, command_output) + logger.warning(msg) + return None + + if len(names) > 1: + msg = ( + "Legacy build of wheel for {!r} created more than one file.\n" + "Filenames (choosing first): {}\n" + ).format(name, names) + msg += format_command_result(command_args, command_output) + logger.warning(msg) + + return os.path.join(temp_dir, names[0]) + + +def build_wheel_legacy( + name: str, + setup_py_path: str, + source_dir: str, + global_options: List[str], + build_options: List[str], + tempd: str, +) -> Optional[str]: + """Build one unpacked package using the "legacy" build process. + + Returns path to wheel if successfully built. Otherwise, returns None. + """ + wheel_args = make_setuptools_bdist_wheel_args( + setup_py_path, + global_options=global_options, + build_options=build_options, + destination_dir=tempd, + ) + + spin_message = f"Building wheel for {name} (setup.py)" + with open_spinner(spin_message) as spinner: + logger.debug("Destination directory: %s", tempd) + + try: + output = call_subprocess( + wheel_args, + command_desc="python setup.py bdist_wheel", + cwd=source_dir, + spinner=spinner, + ) + except Exception: + spinner.finish("error") + logger.error("Failed building wheel for %s", name) + return None + + names = os.listdir(tempd) + wheel_path = get_legacy_build_wheel_path( + names=names, + temp_dir=tempd, + name=name, + command_args=wheel_args, + command_output=output, + ) + return wheel_path diff --git a/venv/lib/python3.12/site-packages/pip/_internal/operations/check.py b/venv/lib/python3.12/site-packages/pip/_internal/operations/check.py new file mode 100644 index 0000000..90c6a58 --- /dev/null +++ b/venv/lib/python3.12/site-packages/pip/_internal/operations/check.py @@ -0,0 +1,187 @@ +"""Validation of dependencies of packages +""" + +import logging +from typing import Callable, Dict, List, NamedTuple, Optional, Set, Tuple + +from pip._vendor.packaging.requirements import Requirement +from pip._vendor.packaging.specifiers import LegacySpecifier +from pip._vendor.packaging.utils import NormalizedName, canonicalize_name +from pip._vendor.packaging.version import LegacyVersion + +from pip._internal.distributions import make_distribution_for_install_requirement +from pip._internal.metadata import get_default_environment +from pip._internal.metadata.base import DistributionVersion +from pip._internal.req.req_install import InstallRequirement +from pip._internal.utils.deprecation import deprecated + +logger = logging.getLogger(__name__) + + +class PackageDetails(NamedTuple): + version: DistributionVersion + dependencies: List[Requirement] + + +# Shorthands +PackageSet = Dict[NormalizedName, PackageDetails] +Missing = Tuple[NormalizedName, Requirement] +Conflicting = Tuple[NormalizedName, DistributionVersion, Requirement] + +MissingDict = Dict[NormalizedName, List[Missing]] +ConflictingDict = Dict[NormalizedName, List[Conflicting]] +CheckResult = Tuple[MissingDict, ConflictingDict] +ConflictDetails = Tuple[PackageSet, CheckResult] + + +def create_package_set_from_installed() -> Tuple[PackageSet, bool]: + """Converts a list of distributions into a PackageSet.""" + package_set = {} + problems = False + env = get_default_environment() + for dist in env.iter_installed_distributions(local_only=False, skip=()): + name = dist.canonical_name + try: + dependencies = list(dist.iter_dependencies()) + package_set[name] = PackageDetails(dist.version, dependencies) + except (OSError, ValueError) as e: + # Don't crash on unreadable or broken metadata. + logger.warning("Error parsing requirements for %s: %s", name, e) + problems = True + return package_set, problems + + +def check_package_set( + package_set: PackageSet, should_ignore: Optional[Callable[[str], bool]] = None +) -> CheckResult: + """Check if a package set is consistent + + If should_ignore is passed, it should be a callable that takes a + package name and returns a boolean. + """ + + warn_legacy_versions_and_specifiers(package_set) + + missing = {} + conflicting = {} + + for package_name, package_detail in package_set.items(): + # Info about dependencies of package_name + missing_deps: Set[Missing] = set() + conflicting_deps: Set[Conflicting] = set() + + if should_ignore and should_ignore(package_name): + continue + + for req in package_detail.dependencies: + name = canonicalize_name(req.name) + + # Check if it's missing + if name not in package_set: + missed = True + if req.marker is not None: + missed = req.marker.evaluate({"extra": ""}) + if missed: + missing_deps.add((name, req)) + continue + + # Check if there's a conflict + version = package_set[name].version + if not req.specifier.contains(version, prereleases=True): + conflicting_deps.add((name, version, req)) + + if missing_deps: + missing[package_name] = sorted(missing_deps, key=str) + if conflicting_deps: + conflicting[package_name] = sorted(conflicting_deps, key=str) + + return missing, conflicting + + +def check_install_conflicts(to_install: List[InstallRequirement]) -> ConflictDetails: + """For checking if the dependency graph would be consistent after \ + installing given requirements + """ + # Start from the current state + package_set, _ = create_package_set_from_installed() + # Install packages + would_be_installed = _simulate_installation_of(to_install, package_set) + + # Only warn about directly-dependent packages; create a whitelist of them + whitelist = _create_whitelist(would_be_installed, package_set) + + return ( + package_set, + check_package_set( + package_set, should_ignore=lambda name: name not in whitelist + ), + ) + + +def _simulate_installation_of( + to_install: List[InstallRequirement], package_set: PackageSet +) -> Set[NormalizedName]: + """Computes the version of packages after installing to_install.""" + # Keep track of packages that were installed + installed = set() + + # Modify it as installing requirement_set would (assuming no errors) + for inst_req in to_install: + abstract_dist = make_distribution_for_install_requirement(inst_req) + dist = abstract_dist.get_metadata_distribution() + name = dist.canonical_name + package_set[name] = PackageDetails(dist.version, list(dist.iter_dependencies())) + + installed.add(name) + + return installed + + +def _create_whitelist( + would_be_installed: Set[NormalizedName], package_set: PackageSet +) -> Set[NormalizedName]: + packages_affected = set(would_be_installed) + + for package_name in package_set: + if package_name in packages_affected: + continue + + for req in package_set[package_name].dependencies: + if canonicalize_name(req.name) in packages_affected: + packages_affected.add(package_name) + break + + return packages_affected + + +def warn_legacy_versions_and_specifiers(package_set: PackageSet) -> None: + for project_name, package_details in package_set.items(): + if isinstance(package_details.version, LegacyVersion): + deprecated( + reason=( + f"{project_name} {package_details.version} " + f"has a non-standard version number." + ), + replacement=( + f"to upgrade to a newer version of {project_name} " + f"or contact the author to suggest that they " + f"release a version with a conforming version number" + ), + issue=12063, + gone_in="24.1", + ) + for dep in package_details.dependencies: + if any(isinstance(spec, LegacySpecifier) for spec in dep.specifier): + deprecated( + reason=( + f"{project_name} {package_details.version} " + f"has a non-standard dependency specifier {dep}." + ), + replacement=( + f"to upgrade to a newer version of {project_name} " + f"or contact the author to suggest that they " + f"release a version with a conforming dependency specifiers" + ), + issue=12063, + gone_in="24.1", + ) diff --git a/venv/lib/python3.12/site-packages/pip/_internal/operations/freeze.py b/venv/lib/python3.12/site-packages/pip/_internal/operations/freeze.py new file mode 100644 index 0000000..3544568 --- /dev/null +++ b/venv/lib/python3.12/site-packages/pip/_internal/operations/freeze.py @@ -0,0 +1,255 @@ +import collections +import logging +import os +from typing import Container, Dict, Generator, Iterable, List, NamedTuple, Optional, Set + +from pip._vendor.packaging.utils import canonicalize_name +from pip._vendor.packaging.version import Version + +from pip._internal.exceptions import BadCommand, InstallationError +from pip._internal.metadata import BaseDistribution, get_environment +from pip._internal.req.constructors import ( + install_req_from_editable, + install_req_from_line, +) +from pip._internal.req.req_file import COMMENT_RE +from pip._internal.utils.direct_url_helpers import direct_url_as_pep440_direct_reference + +logger = logging.getLogger(__name__) + + +class _EditableInfo(NamedTuple): + requirement: str + comments: List[str] + + +def freeze( + requirement: Optional[List[str]] = None, + local_only: bool = False, + user_only: bool = False, + paths: Optional[List[str]] = None, + isolated: bool = False, + exclude_editable: bool = False, + skip: Container[str] = (), +) -> Generator[str, None, None]: + installations: Dict[str, FrozenRequirement] = {} + + dists = get_environment(paths).iter_installed_distributions( + local_only=local_only, + skip=(), + user_only=user_only, + ) + for dist in dists: + req = FrozenRequirement.from_dist(dist) + if exclude_editable and req.editable: + continue + installations[req.canonical_name] = req + + if requirement: + # the options that don't get turned into an InstallRequirement + # should only be emitted once, even if the same option is in multiple + # requirements files, so we need to keep track of what has been emitted + # so that we don't emit it again if it's seen again + emitted_options: Set[str] = set() + # keep track of which files a requirement is in so that we can + # give an accurate warning if a requirement appears multiple times. + req_files: Dict[str, List[str]] = collections.defaultdict(list) + for req_file_path in requirement: + with open(req_file_path) as req_file: + for line in req_file: + if ( + not line.strip() + or line.strip().startswith("#") + or line.startswith( + ( + "-r", + "--requirement", + "-f", + "--find-links", + "-i", + "--index-url", + "--pre", + "--trusted-host", + "--process-dependency-links", + "--extra-index-url", + "--use-feature", + ) + ) + ): + line = line.rstrip() + if line not in emitted_options: + emitted_options.add(line) + yield line + continue + + if line.startswith("-e") or line.startswith("--editable"): + if line.startswith("-e"): + line = line[2:].strip() + else: + line = line[len("--editable") :].strip().lstrip("=") + line_req = install_req_from_editable( + line, + isolated=isolated, + ) + else: + line_req = install_req_from_line( + COMMENT_RE.sub("", line).strip(), + isolated=isolated, + ) + + if not line_req.name: + logger.info( + "Skipping line in requirement file [%s] because " + "it's not clear what it would install: %s", + req_file_path, + line.strip(), + ) + logger.info( + " (add #egg=PackageName to the URL to avoid" + " this warning)" + ) + else: + line_req_canonical_name = canonicalize_name(line_req.name) + if line_req_canonical_name not in installations: + # either it's not installed, or it is installed + # but has been processed already + if not req_files[line_req.name]: + logger.warning( + "Requirement file [%s] contains %s, but " + "package %r is not installed", + req_file_path, + COMMENT_RE.sub("", line).strip(), + line_req.name, + ) + else: + req_files[line_req.name].append(req_file_path) + else: + yield str(installations[line_req_canonical_name]).rstrip() + del installations[line_req_canonical_name] + req_files[line_req.name].append(req_file_path) + + # Warn about requirements that were included multiple times (in a + # single requirements file or in different requirements files). + for name, files in req_files.items(): + if len(files) > 1: + logger.warning( + "Requirement %s included multiple times [%s]", + name, + ", ".join(sorted(set(files))), + ) + + yield ("## The following requirements were added by pip freeze:") + for installation in sorted(installations.values(), key=lambda x: x.name.lower()): + if installation.canonical_name not in skip: + yield str(installation).rstrip() + + +def _format_as_name_version(dist: BaseDistribution) -> str: + dist_version = dist.version + if isinstance(dist_version, Version): + return f"{dist.raw_name}=={dist_version}" + return f"{dist.raw_name}==={dist_version}" + + +def _get_editable_info(dist: BaseDistribution) -> _EditableInfo: + """ + Compute and return values (req, comments) for use in + FrozenRequirement.from_dist(). + """ + editable_project_location = dist.editable_project_location + assert editable_project_location + location = os.path.normcase(os.path.abspath(editable_project_location)) + + from pip._internal.vcs import RemoteNotFoundError, RemoteNotValidError, vcs + + vcs_backend = vcs.get_backend_for_dir(location) + + if vcs_backend is None: + display = _format_as_name_version(dist) + logger.debug( + 'No VCS found for editable requirement "%s" in: %r', + display, + location, + ) + return _EditableInfo( + requirement=location, + comments=[f"# Editable install with no version control ({display})"], + ) + + vcs_name = type(vcs_backend).__name__ + + try: + req = vcs_backend.get_src_requirement(location, dist.raw_name) + except RemoteNotFoundError: + display = _format_as_name_version(dist) + return _EditableInfo( + requirement=location, + comments=[f"# Editable {vcs_name} install with no remote ({display})"], + ) + except RemoteNotValidError as ex: + display = _format_as_name_version(dist) + return _EditableInfo( + requirement=location, + comments=[ + f"# Editable {vcs_name} install ({display}) with either a deleted " + f"local remote or invalid URI:", + f"# '{ex.url}'", + ], + ) + except BadCommand: + logger.warning( + "cannot determine version of editable source in %s " + "(%s command not found in path)", + location, + vcs_backend.name, + ) + return _EditableInfo(requirement=location, comments=[]) + except InstallationError as exc: + logger.warning("Error when trying to get requirement for VCS system %s", exc) + else: + return _EditableInfo(requirement=req, comments=[]) + + logger.warning("Could not determine repository location of %s", location) + + return _EditableInfo( + requirement=location, + comments=["## !! Could not determine repository location"], + ) + + +class FrozenRequirement: + def __init__( + self, + name: str, + req: str, + editable: bool, + comments: Iterable[str] = (), + ) -> None: + self.name = name + self.canonical_name = canonicalize_name(name) + self.req = req + self.editable = editable + self.comments = comments + + @classmethod + def from_dist(cls, dist: BaseDistribution) -> "FrozenRequirement": + editable = dist.editable + if editable: + req, comments = _get_editable_info(dist) + else: + comments = [] + direct_url = dist.direct_url + if direct_url: + # if PEP 610 metadata is present, use it + req = direct_url_as_pep440_direct_reference(direct_url, dist.raw_name) + else: + # name==version requirement + req = _format_as_name_version(dist) + + return cls(dist.raw_name, req, editable, comments=comments) + + def __str__(self) -> str: + req = self.req + if self.editable: + req = f"-e {req}" + return "\n".join(list(self.comments) + [str(req)]) + "\n" diff --git a/venv/lib/python3.12/site-packages/pip/_internal/operations/install/__init__.py b/venv/lib/python3.12/site-packages/pip/_internal/operations/install/__init__.py new file mode 100644 index 0000000..24d6a5d --- /dev/null +++ b/venv/lib/python3.12/site-packages/pip/_internal/operations/install/__init__.py @@ -0,0 +1,2 @@ +"""For modules related to installing packages. +""" diff --git a/venv/lib/python3.12/site-packages/pip/_internal/operations/install/__pycache__/__init__.cpython-312.pyc b/venv/lib/python3.12/site-packages/pip/_internal/operations/install/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..fb41bdbeed9304ea16d3712f0731845ab4bf41e3 GIT binary patch literal 263 zcmXv}F-`+95VS)CQKbCAZ6vr=NE@Y0$pdIs=4{<<;@FnG7v=Z}Z{RJw09rnPNS6wq zNT%5tt#)STV>X+Lg3pGx%QC+QafQ5))1;6$VZ^iO<$UydzX?h0gXx^jDp{x58pT18 z&#avz->9hToo;NdrcZPEb%$s|jrcB3gXNi^4SNf*Ya!R2!8&-hM@Ah94%Q#Q(F??$ z+u)bg;t?{jeYjdeqzFjmB6;l~M4L2I@EI=ofMrXJSjGN4S^Yn{PPZj_Xq1P-KQ~g! L-;tE#G%oTFSj$c_ literal 0 HcmV?d00001 diff --git a/venv/lib/python3.12/site-packages/pip/_internal/operations/install/__pycache__/editable_legacy.cpython-312.pyc b/venv/lib/python3.12/site-packages/pip/_internal/operations/install/__pycache__/editable_legacy.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..350321b361906fc772e46715717d416e7e0297ec GIT binary patch literal 1814 zcmZuxO>Epm6dwPsz5huzS(=vCrHx<_*;Ri)6+)mOIG{E~BBw5gsbfzzPQA97v6F7J zNJT<|3J&GeUOA%lfRNzcGZzq*SVlxtDjc}EN>HVocw=u8h&roz{@$C}d2inP-uzgp z6cLQydhwd9A@o=%`=c=iJ3j!pi(J%2uH?$T)Ro|?_;O$ADt)!9O2V%CT3_$#8P@zl z-{=|{)_t>I>=rXz@Js!2w=5wU5ov99-_hZhRJWvD>(*R@sHA=jRM#ZR7!?mtiA=a< zQgp8=f)EGC?SDES`x3nop`?c zZm{mrFzAyY23ye!TtL_ld!U`@+cyZ#PL9LSXLx)zwrP*Sdd-1oFiV!lvG8io50`Bp zhnYXd^@x%c?<)Lz4-qLgH$7WpE-?23YuObNz3qr=idp3rqs|=0%>ekpJa7Yus zLr+Kbfp!L+LrmI`C3FqWlF*lvHLpo|7Xt}+mZ+`e*&Irr4M1t&|;K(6g`k@Qd zSPWTgLB$eLV+M%8X2#~@RT?I})uII>4z0s7w=>h`sSlDM@Pb~x@*iqhD{wWV<#$k!v3 zt6l((M7pWSJ{4tc6*Hele9($muL@BUqAtV)2(AjIG7*uuWj^+zj-X>FN>)3}Nn8wZ z$K+;=?a1q_1K&Enx7^92zR*5*z9ZN=Kh7`fL|)Xv9{htsLv_N4(5xR>XWX5g{dUEE z*1nK9ULUXF{WW?VLJ|S90f<{@_axFvpI!ds@=x`1-(GyEUi!22;>egDHRndnQ={7S zs4_8{IkQ_Sl=WNh>`tO$*CW zV9X1mI=~99$AbvIR4|;XAb1l}(>_Q|`=EcRXexgE|Eo#t`K&!YEGsZS`>Y*@w8Ytg z86o(|XKp=sh%&Blvq$19IhPEK#cP8xZHibF76ZSQ;Z4g5@eSGmE283A-!tBTwn=>Q zCT)Q#-gNdgh*Xgz>4_{!>SI*>1I_(~E^edq+h}ncz5d9Y{k-|BIs3CYd+*XO=Gj|% zs#{X^QRBqDrLPuK4RETX%JiM3+ly&IXa*`x-MMgkJ~f3_M2+Xtl0aots-_izs;JRS kYXa3#Z7Q7*XcE<}bV{HGvd*N_0?i=3xZ4CoUxFzA1**sHlK=n! literal 0 HcmV?d00001 diff --git a/venv/lib/python3.12/site-packages/pip/_internal/operations/install/__pycache__/wheel.cpython-312.pyc b/venv/lib/python3.12/site-packages/pip/_internal/operations/install/__pycache__/wheel.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..ff197fc941f3f8f01aa17706763268f43465398a GIT binary patch literal 33856 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 b(n1O;4Wv*?`{-3^9)+lN_p=dVM;HGelPU-? literal 0 HcmV?d00001 diff --git a/venv/lib/python3.12/site-packages/pip/_internal/operations/install/editable_legacy.py b/venv/lib/python3.12/site-packages/pip/_internal/operations/install/editable_legacy.py new file mode 100644 index 0000000..bebe24e --- /dev/null +++ b/venv/lib/python3.12/site-packages/pip/_internal/operations/install/editable_legacy.py @@ -0,0 +1,46 @@ +"""Legacy editable installation process, i.e. `setup.py develop`. +""" +import logging +from typing import Optional, Sequence + +from pip._internal.build_env import BuildEnvironment +from pip._internal.utils.logging import indent_log +from pip._internal.utils.setuptools_build import make_setuptools_develop_args +from pip._internal.utils.subprocess import call_subprocess + +logger = logging.getLogger(__name__) + + +def install_editable( + *, + global_options: Sequence[str], + prefix: Optional[str], + home: Optional[str], + use_user_site: bool, + name: str, + setup_py_path: str, + isolated: bool, + build_env: BuildEnvironment, + unpacked_source_directory: str, +) -> None: + """Install a package in editable mode. Most arguments are pass-through + to setuptools. + """ + logger.info("Running setup.py develop for %s", name) + + args = make_setuptools_develop_args( + setup_py_path, + global_options=global_options, + no_user_config=isolated, + prefix=prefix, + home=home, + use_user_site=use_user_site, + ) + + with indent_log(): + with build_env: + call_subprocess( + args, + command_desc="python setup.py develop", + cwd=unpacked_source_directory, + ) diff --git a/venv/lib/python3.12/site-packages/pip/_internal/operations/install/wheel.py b/venv/lib/python3.12/site-packages/pip/_internal/operations/install/wheel.py new file mode 100644 index 0000000..f67180c --- /dev/null +++ b/venv/lib/python3.12/site-packages/pip/_internal/operations/install/wheel.py @@ -0,0 +1,734 @@ +"""Support for installing and building the "wheel" binary package format. +""" + +import collections +import compileall +import contextlib +import csv +import importlib +import logging +import os.path +import re +import shutil +import sys +import warnings +from base64 import urlsafe_b64encode +from email.message import Message +from itertools import chain, filterfalse, starmap +from typing import ( + IO, + TYPE_CHECKING, + Any, + BinaryIO, + Callable, + Dict, + Generator, + Iterable, + Iterator, + List, + NewType, + Optional, + Sequence, + Set, + Tuple, + Union, + cast, +) +from zipfile import ZipFile, ZipInfo + +from pip._vendor.distlib.scripts import ScriptMaker +from pip._vendor.distlib.util import get_export_entry +from pip._vendor.packaging.utils import canonicalize_name + +from pip._internal.exceptions import InstallationError +from pip._internal.locations import get_major_minor_version +from pip._internal.metadata import ( + BaseDistribution, + FilesystemWheel, + get_wheel_distribution, +) +from pip._internal.models.direct_url import DIRECT_URL_METADATA_NAME, DirectUrl +from pip._internal.models.scheme import SCHEME_KEYS, Scheme +from pip._internal.utils.filesystem import adjacent_tmp_file, replace +from pip._internal.utils.misc import captured_stdout, ensure_dir, hash_file, partition +from pip._internal.utils.unpacking import ( + current_umask, + is_within_directory, + set_extracted_file_to_default_mode_plus_executable, + zip_item_is_executable, +) +from pip._internal.utils.wheel import parse_wheel + +if TYPE_CHECKING: + from typing import Protocol + + class File(Protocol): + src_record_path: "RecordPath" + dest_path: str + changed: bool + + def save(self) -> None: + pass + + +logger = logging.getLogger(__name__) + +RecordPath = NewType("RecordPath", str) +InstalledCSVRow = Tuple[RecordPath, str, Union[int, str]] + + +def rehash(path: str, blocksize: int = 1 << 20) -> Tuple[str, str]: + """Return (encoded_digest, length) for path using hashlib.sha256()""" + h, length = hash_file(path, blocksize) + digest = "sha256=" + urlsafe_b64encode(h.digest()).decode("latin1").rstrip("=") + return (digest, str(length)) + + +def csv_io_kwargs(mode: str) -> Dict[str, Any]: + """Return keyword arguments to properly open a CSV file + in the given mode. + """ + return {"mode": mode, "newline": "", "encoding": "utf-8"} + + +def fix_script(path: str) -> bool: + """Replace #!python with #!/path/to/python + Return True if file was changed. + """ + # XXX RECORD hashes will need to be updated + assert os.path.isfile(path) + + with open(path, "rb") as script: + firstline = script.readline() + if not firstline.startswith(b"#!python"): + return False + exename = sys.executable.encode(sys.getfilesystemencoding()) + firstline = b"#!" + exename + os.linesep.encode("ascii") + rest = script.read() + with open(path, "wb") as script: + script.write(firstline) + script.write(rest) + return True + + +def wheel_root_is_purelib(metadata: Message) -> bool: + return metadata.get("Root-Is-Purelib", "").lower() == "true" + + +def get_entrypoints(dist: BaseDistribution) -> Tuple[Dict[str, str], Dict[str, str]]: + console_scripts = {} + gui_scripts = {} + for entry_point in dist.iter_entry_points(): + if entry_point.group == "console_scripts": + console_scripts[entry_point.name] = entry_point.value + elif entry_point.group == "gui_scripts": + gui_scripts[entry_point.name] = entry_point.value + return console_scripts, gui_scripts + + +def message_about_scripts_not_on_PATH(scripts: Sequence[str]) -> Optional[str]: + """Determine if any scripts are not on PATH and format a warning. + Returns a warning message if one or more scripts are not on PATH, + otherwise None. + """ + if not scripts: + return None + + # Group scripts by the path they were installed in + grouped_by_dir: Dict[str, Set[str]] = collections.defaultdict(set) + for destfile in scripts: + parent_dir = os.path.dirname(destfile) + script_name = os.path.basename(destfile) + grouped_by_dir[parent_dir].add(script_name) + + # We don't want to warn for directories that are on PATH. + not_warn_dirs = [ + os.path.normcase(os.path.normpath(i)).rstrip(os.sep) + for i in os.environ.get("PATH", "").split(os.pathsep) + ] + # If an executable sits with sys.executable, we don't warn for it. + # This covers the case of venv invocations without activating the venv. + not_warn_dirs.append( + os.path.normcase(os.path.normpath(os.path.dirname(sys.executable))) + ) + warn_for: Dict[str, Set[str]] = { + parent_dir: scripts + for parent_dir, scripts in grouped_by_dir.items() + if os.path.normcase(os.path.normpath(parent_dir)) not in not_warn_dirs + } + if not warn_for: + return None + + # Format a message + msg_lines = [] + for parent_dir, dir_scripts in warn_for.items(): + sorted_scripts: List[str] = sorted(dir_scripts) + if len(sorted_scripts) == 1: + start_text = f"script {sorted_scripts[0]} is" + else: + start_text = "scripts {} are".format( + ", ".join(sorted_scripts[:-1]) + " and " + sorted_scripts[-1] + ) + + msg_lines.append( + f"The {start_text} installed in '{parent_dir}' which is not on PATH." + ) + + last_line_fmt = ( + "Consider adding {} to PATH or, if you prefer " + "to suppress this warning, use --no-warn-script-location." + ) + if len(msg_lines) == 1: + msg_lines.append(last_line_fmt.format("this directory")) + else: + msg_lines.append(last_line_fmt.format("these directories")) + + # Add a note if any directory starts with ~ + warn_for_tilde = any( + i[0] == "~" for i in os.environ.get("PATH", "").split(os.pathsep) if i + ) + if warn_for_tilde: + tilde_warning_msg = ( + "NOTE: The current PATH contains path(s) starting with `~`, " + "which may not be expanded by all applications." + ) + msg_lines.append(tilde_warning_msg) + + # Returns the formatted multiline message + return "\n".join(msg_lines) + + +def _normalized_outrows( + outrows: Iterable[InstalledCSVRow], +) -> List[Tuple[str, str, str]]: + """Normalize the given rows of a RECORD file. + + Items in each row are converted into str. Rows are then sorted to make + the value more predictable for tests. + + Each row is a 3-tuple (path, hash, size) and corresponds to a record of + a RECORD file (see PEP 376 and PEP 427 for details). For the rows + passed to this function, the size can be an integer as an int or string, + or the empty string. + """ + # Normally, there should only be one row per path, in which case the + # second and third elements don't come into play when sorting. + # However, in cases in the wild where a path might happen to occur twice, + # we don't want the sort operation to trigger an error (but still want + # determinism). Since the third element can be an int or string, we + # coerce each element to a string to avoid a TypeError in this case. + # For additional background, see-- + # https://github.com/pypa/pip/issues/5868 + return sorted( + (record_path, hash_, str(size)) for record_path, hash_, size in outrows + ) + + +def _record_to_fs_path(record_path: RecordPath, lib_dir: str) -> str: + return os.path.join(lib_dir, record_path) + + +def _fs_to_record_path(path: str, lib_dir: str) -> RecordPath: + # On Windows, do not handle relative paths if they belong to different + # logical disks + if os.path.splitdrive(path)[0].lower() == os.path.splitdrive(lib_dir)[0].lower(): + path = os.path.relpath(path, lib_dir) + + path = path.replace(os.path.sep, "/") + return cast("RecordPath", path) + + +def get_csv_rows_for_installed( + old_csv_rows: List[List[str]], + installed: Dict[RecordPath, RecordPath], + changed: Set[RecordPath], + generated: List[str], + lib_dir: str, +) -> List[InstalledCSVRow]: + """ + :param installed: A map from archive RECORD path to installation RECORD + path. + """ + installed_rows: List[InstalledCSVRow] = [] + for row in old_csv_rows: + if len(row) > 3: + logger.warning("RECORD line has more than three elements: %s", row) + old_record_path = cast("RecordPath", row[0]) + new_record_path = installed.pop(old_record_path, old_record_path) + if new_record_path in changed: + digest, length = rehash(_record_to_fs_path(new_record_path, lib_dir)) + else: + digest = row[1] if len(row) > 1 else "" + length = row[2] if len(row) > 2 else "" + installed_rows.append((new_record_path, digest, length)) + for f in generated: + path = _fs_to_record_path(f, lib_dir) + digest, length = rehash(f) + installed_rows.append((path, digest, length)) + return installed_rows + [ + (installed_record_path, "", "") for installed_record_path in installed.values() + ] + + +def get_console_script_specs(console: Dict[str, str]) -> List[str]: + """ + Given the mapping from entrypoint name to callable, return the relevant + console script specs. + """ + # Don't mutate caller's version + console = console.copy() + + scripts_to_generate = [] + + # Special case pip and setuptools to generate versioned wrappers + # + # The issue is that some projects (specifically, pip and setuptools) use + # code in setup.py to create "versioned" entry points - pip2.7 on Python + # 2.7, pip3.3 on Python 3.3, etc. But these entry points are baked into + # the wheel metadata at build time, and so if the wheel is installed with + # a *different* version of Python the entry points will be wrong. The + # correct fix for this is to enhance the metadata to be able to describe + # such versioned entry points, but that won't happen till Metadata 2.0 is + # available. + # In the meantime, projects using versioned entry points will either have + # incorrect versioned entry points, or they will not be able to distribute + # "universal" wheels (i.e., they will need a wheel per Python version). + # + # Because setuptools and pip are bundled with _ensurepip and virtualenv, + # we need to use universal wheels. So, as a stopgap until Metadata 2.0, we + # override the versioned entry points in the wheel and generate the + # correct ones. This code is purely a short-term measure until Metadata 2.0 + # is available. + # + # To add the level of hack in this section of code, in order to support + # ensurepip this code will look for an ``ENSUREPIP_OPTIONS`` environment + # variable which will control which version scripts get installed. + # + # ENSUREPIP_OPTIONS=altinstall + # - Only pipX.Y and easy_install-X.Y will be generated and installed + # ENSUREPIP_OPTIONS=install + # - pipX.Y, pipX, easy_install-X.Y will be generated and installed. Note + # that this option is technically if ENSUREPIP_OPTIONS is set and is + # not altinstall + # DEFAULT + # - The default behavior is to install pip, pipX, pipX.Y, easy_install + # and easy_install-X.Y. + pip_script = console.pop("pip", None) + if pip_script: + if "ENSUREPIP_OPTIONS" not in os.environ: + scripts_to_generate.append("pip = " + pip_script) + + if os.environ.get("ENSUREPIP_OPTIONS", "") != "altinstall": + scripts_to_generate.append(f"pip{sys.version_info[0]} = {pip_script}") + + scripts_to_generate.append(f"pip{get_major_minor_version()} = {pip_script}") + # Delete any other versioned pip entry points + pip_ep = [k for k in console if re.match(r"pip(\d+(\.\d+)?)?$", k)] + for k in pip_ep: + del console[k] + easy_install_script = console.pop("easy_install", None) + if easy_install_script: + if "ENSUREPIP_OPTIONS" not in os.environ: + scripts_to_generate.append("easy_install = " + easy_install_script) + + scripts_to_generate.append( + f"easy_install-{get_major_minor_version()} = {easy_install_script}" + ) + # Delete any other versioned easy_install entry points + easy_install_ep = [ + k for k in console if re.match(r"easy_install(-\d+\.\d+)?$", k) + ] + for k in easy_install_ep: + del console[k] + + # Generate the console entry points specified in the wheel + scripts_to_generate.extend(starmap("{} = {}".format, console.items())) + + return scripts_to_generate + + +class ZipBackedFile: + def __init__( + self, src_record_path: RecordPath, dest_path: str, zip_file: ZipFile + ) -> None: + self.src_record_path = src_record_path + self.dest_path = dest_path + self._zip_file = zip_file + self.changed = False + + def _getinfo(self) -> ZipInfo: + return self._zip_file.getinfo(self.src_record_path) + + def save(self) -> None: + # directory creation is lazy and after file filtering + # to ensure we don't install empty dirs; empty dirs can't be + # uninstalled. + parent_dir = os.path.dirname(self.dest_path) + ensure_dir(parent_dir) + + # When we open the output file below, any existing file is truncated + # before we start writing the new contents. This is fine in most + # cases, but can cause a segfault if pip has loaded a shared + # object (e.g. from pyopenssl through its vendored urllib3) + # Since the shared object is mmap'd an attempt to call a + # symbol in it will then cause a segfault. Unlinking the file + # allows writing of new contents while allowing the process to + # continue to use the old copy. + if os.path.exists(self.dest_path): + os.unlink(self.dest_path) + + zipinfo = self._getinfo() + + with self._zip_file.open(zipinfo) as f: + with open(self.dest_path, "wb") as dest: + shutil.copyfileobj(f, dest) + + if zip_item_is_executable(zipinfo): + set_extracted_file_to_default_mode_plus_executable(self.dest_path) + + +class ScriptFile: + def __init__(self, file: "File") -> None: + self._file = file + self.src_record_path = self._file.src_record_path + self.dest_path = self._file.dest_path + self.changed = False + + def save(self) -> None: + self._file.save() + self.changed = fix_script(self.dest_path) + + +class MissingCallableSuffix(InstallationError): + def __init__(self, entry_point: str) -> None: + super().__init__( + f"Invalid script entry point: {entry_point} - A callable " + "suffix is required. Cf https://packaging.python.org/" + "specifications/entry-points/#use-for-scripts for more " + "information." + ) + + +def _raise_for_invalid_entrypoint(specification: str) -> None: + entry = get_export_entry(specification) + if entry is not None and entry.suffix is None: + raise MissingCallableSuffix(str(entry)) + + +class PipScriptMaker(ScriptMaker): + def make( + self, specification: str, options: Optional[Dict[str, Any]] = None + ) -> List[str]: + _raise_for_invalid_entrypoint(specification) + return super().make(specification, options) + + +def _install_wheel( + name: str, + wheel_zip: ZipFile, + wheel_path: str, + scheme: Scheme, + pycompile: bool = True, + warn_script_location: bool = True, + direct_url: Optional[DirectUrl] = None, + requested: bool = False, +) -> None: + """Install a wheel. + + :param name: Name of the project to install + :param wheel_zip: open ZipFile for wheel being installed + :param scheme: Distutils scheme dictating the install directories + :param req_description: String used in place of the requirement, for + logging + :param pycompile: Whether to byte-compile installed Python files + :param warn_script_location: Whether to check that scripts are installed + into a directory on PATH + :raises UnsupportedWheel: + * when the directory holds an unpacked wheel with incompatible + Wheel-Version + * when the .dist-info dir does not match the wheel + """ + info_dir, metadata = parse_wheel(wheel_zip, name) + + if wheel_root_is_purelib(metadata): + lib_dir = scheme.purelib + else: + lib_dir = scheme.platlib + + # Record details of the files moved + # installed = files copied from the wheel to the destination + # changed = files changed while installing (scripts #! line typically) + # generated = files newly generated during the install (script wrappers) + installed: Dict[RecordPath, RecordPath] = {} + changed: Set[RecordPath] = set() + generated: List[str] = [] + + def record_installed( + srcfile: RecordPath, destfile: str, modified: bool = False + ) -> None: + """Map archive RECORD paths to installation RECORD paths.""" + newpath = _fs_to_record_path(destfile, lib_dir) + installed[srcfile] = newpath + if modified: + changed.add(newpath) + + def is_dir_path(path: RecordPath) -> bool: + return path.endswith("/") + + def assert_no_path_traversal(dest_dir_path: str, target_path: str) -> None: + if not is_within_directory(dest_dir_path, target_path): + message = ( + "The wheel {!r} has a file {!r} trying to install" + " outside the target directory {!r}" + ) + raise InstallationError( + message.format(wheel_path, target_path, dest_dir_path) + ) + + def root_scheme_file_maker( + zip_file: ZipFile, dest: str + ) -> Callable[[RecordPath], "File"]: + def make_root_scheme_file(record_path: RecordPath) -> "File": + normed_path = os.path.normpath(record_path) + dest_path = os.path.join(dest, normed_path) + assert_no_path_traversal(dest, dest_path) + return ZipBackedFile(record_path, dest_path, zip_file) + + return make_root_scheme_file + + def data_scheme_file_maker( + zip_file: ZipFile, scheme: Scheme + ) -> Callable[[RecordPath], "File"]: + scheme_paths = {key: getattr(scheme, key) for key in SCHEME_KEYS} + + def make_data_scheme_file(record_path: RecordPath) -> "File": + normed_path = os.path.normpath(record_path) + try: + _, scheme_key, dest_subpath = normed_path.split(os.path.sep, 2) + except ValueError: + message = ( + "Unexpected file in {}: {!r}. .data directory contents" + " should be named like: '/'." + ).format(wheel_path, record_path) + raise InstallationError(message) + + try: + scheme_path = scheme_paths[scheme_key] + except KeyError: + valid_scheme_keys = ", ".join(sorted(scheme_paths)) + message = ( + "Unknown scheme key used in {}: {} (for file {!r}). .data" + " directory contents should be in subdirectories named" + " with a valid scheme key ({})" + ).format(wheel_path, scheme_key, record_path, valid_scheme_keys) + raise InstallationError(message) + + dest_path = os.path.join(scheme_path, dest_subpath) + assert_no_path_traversal(scheme_path, dest_path) + return ZipBackedFile(record_path, dest_path, zip_file) + + return make_data_scheme_file + + def is_data_scheme_path(path: RecordPath) -> bool: + return path.split("/", 1)[0].endswith(".data") + + paths = cast(List[RecordPath], wheel_zip.namelist()) + file_paths = filterfalse(is_dir_path, paths) + root_scheme_paths, data_scheme_paths = partition(is_data_scheme_path, file_paths) + + make_root_scheme_file = root_scheme_file_maker(wheel_zip, lib_dir) + files: Iterator[File] = map(make_root_scheme_file, root_scheme_paths) + + def is_script_scheme_path(path: RecordPath) -> bool: + parts = path.split("/", 2) + return len(parts) > 2 and parts[0].endswith(".data") and parts[1] == "scripts" + + other_scheme_paths, script_scheme_paths = partition( + is_script_scheme_path, data_scheme_paths + ) + + make_data_scheme_file = data_scheme_file_maker(wheel_zip, scheme) + other_scheme_files = map(make_data_scheme_file, other_scheme_paths) + files = chain(files, other_scheme_files) + + # Get the defined entry points + distribution = get_wheel_distribution( + FilesystemWheel(wheel_path), + canonicalize_name(name), + ) + console, gui = get_entrypoints(distribution) + + def is_entrypoint_wrapper(file: "File") -> bool: + # EP, EP.exe and EP-script.py are scripts generated for + # entry point EP by setuptools + path = file.dest_path + name = os.path.basename(path) + if name.lower().endswith(".exe"): + matchname = name[:-4] + elif name.lower().endswith("-script.py"): + matchname = name[:-10] + elif name.lower().endswith(".pya"): + matchname = name[:-4] + else: + matchname = name + # Ignore setuptools-generated scripts + return matchname in console or matchname in gui + + script_scheme_files: Iterator[File] = map( + make_data_scheme_file, script_scheme_paths + ) + script_scheme_files = filterfalse(is_entrypoint_wrapper, script_scheme_files) + script_scheme_files = map(ScriptFile, script_scheme_files) + files = chain(files, script_scheme_files) + + for file in files: + file.save() + record_installed(file.src_record_path, file.dest_path, file.changed) + + def pyc_source_file_paths() -> Generator[str, None, None]: + # We de-duplicate installation paths, since there can be overlap (e.g. + # file in .data maps to same location as file in wheel root). + # Sorting installation paths makes it easier to reproduce and debug + # issues related to permissions on existing files. + for installed_path in sorted(set(installed.values())): + full_installed_path = os.path.join(lib_dir, installed_path) + if not os.path.isfile(full_installed_path): + continue + if not full_installed_path.endswith(".py"): + continue + yield full_installed_path + + def pyc_output_path(path: str) -> str: + """Return the path the pyc file would have been written to.""" + return importlib.util.cache_from_source(path) + + # Compile all of the pyc files for the installed files + if pycompile: + with captured_stdout() as stdout: + with warnings.catch_warnings(): + warnings.filterwarnings("ignore") + for path in pyc_source_file_paths(): + success = compileall.compile_file(path, force=True, quiet=True) + if success: + pyc_path = pyc_output_path(path) + assert os.path.exists(pyc_path) + pyc_record_path = cast( + "RecordPath", pyc_path.replace(os.path.sep, "/") + ) + record_installed(pyc_record_path, pyc_path) + logger.debug(stdout.getvalue()) + + maker = PipScriptMaker(None, scheme.scripts) + + # Ensure old scripts are overwritten. + # See https://github.com/pypa/pip/issues/1800 + maker.clobber = True + + # Ensure we don't generate any variants for scripts because this is almost + # never what somebody wants. + # See https://bitbucket.org/pypa/distlib/issue/35/ + maker.variants = {""} + + # This is required because otherwise distlib creates scripts that are not + # executable. + # See https://bitbucket.org/pypa/distlib/issue/32/ + maker.set_mode = True + + # Generate the console and GUI entry points specified in the wheel + scripts_to_generate = get_console_script_specs(console) + + gui_scripts_to_generate = list(starmap("{} = {}".format, gui.items())) + + generated_console_scripts = maker.make_multiple(scripts_to_generate) + generated.extend(generated_console_scripts) + + generated.extend(maker.make_multiple(gui_scripts_to_generate, {"gui": True})) + + if warn_script_location: + msg = message_about_scripts_not_on_PATH(generated_console_scripts) + if msg is not None: + logger.warning(msg) + + generated_file_mode = 0o666 & ~current_umask() + + @contextlib.contextmanager + def _generate_file(path: str, **kwargs: Any) -> Generator[BinaryIO, None, None]: + with adjacent_tmp_file(path, **kwargs) as f: + yield f + os.chmod(f.name, generated_file_mode) + replace(f.name, path) + + dest_info_dir = os.path.join(lib_dir, info_dir) + + # Record pip as the installer + installer_path = os.path.join(dest_info_dir, "INSTALLER") + with _generate_file(installer_path) as installer_file: + installer_file.write(b"pip\n") + generated.append(installer_path) + + # Record the PEP 610 direct URL reference + if direct_url is not None: + direct_url_path = os.path.join(dest_info_dir, DIRECT_URL_METADATA_NAME) + with _generate_file(direct_url_path) as direct_url_file: + direct_url_file.write(direct_url.to_json().encode("utf-8")) + generated.append(direct_url_path) + + # Record the REQUESTED file + if requested: + requested_path = os.path.join(dest_info_dir, "REQUESTED") + with open(requested_path, "wb"): + pass + generated.append(requested_path) + + record_text = distribution.read_text("RECORD") + record_rows = list(csv.reader(record_text.splitlines())) + + rows = get_csv_rows_for_installed( + record_rows, + installed=installed, + changed=changed, + generated=generated, + lib_dir=lib_dir, + ) + + # Record details of all files installed + record_path = os.path.join(dest_info_dir, "RECORD") + + with _generate_file(record_path, **csv_io_kwargs("w")) as record_file: + # Explicitly cast to typing.IO[str] as a workaround for the mypy error: + # "writer" has incompatible type "BinaryIO"; expected "_Writer" + writer = csv.writer(cast("IO[str]", record_file)) + writer.writerows(_normalized_outrows(rows)) + + +@contextlib.contextmanager +def req_error_context(req_description: str) -> Generator[None, None, None]: + try: + yield + except InstallationError as e: + message = f"For req: {req_description}. {e.args[0]}" + raise InstallationError(message) from e + + +def install_wheel( + name: str, + wheel_path: str, + scheme: Scheme, + req_description: str, + pycompile: bool = True, + warn_script_location: bool = True, + direct_url: Optional[DirectUrl] = None, + requested: bool = False, +) -> None: + with ZipFile(wheel_path, allowZip64=True) as z: + with req_error_context(req_description): + _install_wheel( + name=name, + wheel_zip=z, + wheel_path=wheel_path, + scheme=scheme, + pycompile=pycompile, + warn_script_location=warn_script_location, + direct_url=direct_url, + requested=requested, + ) diff --git a/venv/lib/python3.12/site-packages/pip/_internal/operations/prepare.py b/venv/lib/python3.12/site-packages/pip/_internal/operations/prepare.py new file mode 100644 index 0000000..956717d --- /dev/null +++ b/venv/lib/python3.12/site-packages/pip/_internal/operations/prepare.py @@ -0,0 +1,730 @@ +"""Prepares a distribution for installation +""" + +# The following comment should be removed at some point in the future. +# mypy: strict-optional=False + +import mimetypes +import os +import shutil +from pathlib import Path +from typing import Dict, Iterable, List, Optional + +from pip._vendor.packaging.utils import canonicalize_name + +from pip._internal.distributions import make_distribution_for_install_requirement +from pip._internal.distributions.installed import InstalledDistribution +from pip._internal.exceptions import ( + DirectoryUrlHashUnsupported, + HashMismatch, + HashUnpinned, + InstallationError, + MetadataInconsistent, + NetworkConnectionError, + VcsHashUnsupported, +) +from pip._internal.index.package_finder import PackageFinder +from pip._internal.metadata import BaseDistribution, get_metadata_distribution +from pip._internal.models.direct_url import ArchiveInfo +from pip._internal.models.link import Link +from pip._internal.models.wheel import Wheel +from pip._internal.network.download import BatchDownloader, Downloader +from pip._internal.network.lazy_wheel import ( + HTTPRangeRequestUnsupported, + dist_from_wheel_url, +) +from pip._internal.network.session import PipSession +from pip._internal.operations.build.build_tracker import BuildTracker +from pip._internal.req.req_install import InstallRequirement +from pip._internal.utils._log import getLogger +from pip._internal.utils.direct_url_helpers import ( + direct_url_for_editable, + direct_url_from_link, +) +from pip._internal.utils.hashes import Hashes, MissingHashes +from pip._internal.utils.logging import indent_log +from pip._internal.utils.misc import ( + display_path, + hash_file, + hide_url, + redact_auth_from_requirement, +) +from pip._internal.utils.temp_dir import TempDirectory +from pip._internal.utils.unpacking import unpack_file +from pip._internal.vcs import vcs + +logger = getLogger(__name__) + + +def _get_prepared_distribution( + req: InstallRequirement, + build_tracker: BuildTracker, + finder: PackageFinder, + build_isolation: bool, + check_build_deps: bool, +) -> BaseDistribution: + """Prepare a distribution for installation.""" + abstract_dist = make_distribution_for_install_requirement(req) + tracker_id = abstract_dist.build_tracker_id + if tracker_id is not None: + with build_tracker.track(req, tracker_id): + abstract_dist.prepare_distribution_metadata( + finder, build_isolation, check_build_deps + ) + return abstract_dist.get_metadata_distribution() + + +def unpack_vcs_link(link: Link, location: str, verbosity: int) -> None: + vcs_backend = vcs.get_backend_for_scheme(link.scheme) + assert vcs_backend is not None + vcs_backend.unpack(location, url=hide_url(link.url), verbosity=verbosity) + + +class File: + def __init__(self, path: str, content_type: Optional[str]) -> None: + self.path = path + if content_type is None: + self.content_type = mimetypes.guess_type(path)[0] + else: + self.content_type = content_type + + +def get_http_url( + link: Link, + download: Downloader, + download_dir: Optional[str] = None, + hashes: Optional[Hashes] = None, +) -> File: + temp_dir = TempDirectory(kind="unpack", globally_managed=True) + # If a download dir is specified, is the file already downloaded there? + already_downloaded_path = None + if download_dir: + already_downloaded_path = _check_download_dir(link, download_dir, hashes) + + if already_downloaded_path: + from_path = already_downloaded_path + content_type = None + else: + # let's download to a tmp dir + from_path, content_type = download(link, temp_dir.path) + if hashes: + hashes.check_against_path(from_path) + + return File(from_path, content_type) + + +def get_file_url( + link: Link, download_dir: Optional[str] = None, hashes: Optional[Hashes] = None +) -> File: + """Get file and optionally check its hash.""" + # If a download dir is specified, is the file already there and valid? + already_downloaded_path = None + if download_dir: + already_downloaded_path = _check_download_dir(link, download_dir, hashes) + + if already_downloaded_path: + from_path = already_downloaded_path + else: + from_path = link.file_path + + # If --require-hashes is off, `hashes` is either empty, the + # link's embedded hash, or MissingHashes; it is required to + # match. If --require-hashes is on, we are satisfied by any + # hash in `hashes` matching: a URL-based or an option-based + # one; no internet-sourced hash will be in `hashes`. + if hashes: + hashes.check_against_path(from_path) + return File(from_path, None) + + +def unpack_url( + link: Link, + location: str, + download: Downloader, + verbosity: int, + download_dir: Optional[str] = None, + hashes: Optional[Hashes] = None, +) -> Optional[File]: + """Unpack link into location, downloading if required. + + :param hashes: A Hashes object, one of whose embedded hashes must match, + or HashMismatch will be raised. If the Hashes is empty, no matches are + required, and unhashable types of requirements (like VCS ones, which + would ordinarily raise HashUnsupported) are allowed. + """ + # non-editable vcs urls + if link.is_vcs: + unpack_vcs_link(link, location, verbosity=verbosity) + return None + + assert not link.is_existing_dir() + + # file urls + if link.is_file: + file = get_file_url(link, download_dir, hashes=hashes) + + # http urls + else: + file = get_http_url( + link, + download, + download_dir, + hashes=hashes, + ) + + # unpack the archive to the build dir location. even when only downloading + # archives, they have to be unpacked to parse dependencies, except wheels + if not link.is_wheel: + unpack_file(file.path, location, file.content_type) + + return file + + +def _check_download_dir( + link: Link, + download_dir: str, + hashes: Optional[Hashes], + warn_on_hash_mismatch: bool = True, +) -> Optional[str]: + """Check download_dir for previously downloaded file with correct hash + If a correct file is found return its path else None + """ + download_path = os.path.join(download_dir, link.filename) + + if not os.path.exists(download_path): + return None + + # If already downloaded, does its hash match? + logger.info("File was already downloaded %s", download_path) + if hashes: + try: + hashes.check_against_path(download_path) + except HashMismatch: + if warn_on_hash_mismatch: + logger.warning( + "Previously-downloaded file %s has bad hash. Re-downloading.", + download_path, + ) + os.unlink(download_path) + return None + return download_path + + +class RequirementPreparer: + """Prepares a Requirement""" + + def __init__( + self, + build_dir: str, + download_dir: Optional[str], + src_dir: str, + build_isolation: bool, + check_build_deps: bool, + build_tracker: BuildTracker, + session: PipSession, + progress_bar: str, + finder: PackageFinder, + require_hashes: bool, + use_user_site: bool, + lazy_wheel: bool, + verbosity: int, + legacy_resolver: bool, + ) -> None: + super().__init__() + + self.src_dir = src_dir + self.build_dir = build_dir + self.build_tracker = build_tracker + self._session = session + self._download = Downloader(session, progress_bar) + self._batch_download = BatchDownloader(session, progress_bar) + self.finder = finder + + # Where still-packed archives should be written to. If None, they are + # not saved, and are deleted immediately after unpacking. + self.download_dir = download_dir + + # Is build isolation allowed? + self.build_isolation = build_isolation + + # Should check build dependencies? + self.check_build_deps = check_build_deps + + # Should hash-checking be required? + self.require_hashes = require_hashes + + # Should install in user site-packages? + self.use_user_site = use_user_site + + # Should wheels be downloaded lazily? + self.use_lazy_wheel = lazy_wheel + + # How verbose should underlying tooling be? + self.verbosity = verbosity + + # Are we using the legacy resolver? + self.legacy_resolver = legacy_resolver + + # Memoized downloaded files, as mapping of url: path. + self._downloaded: Dict[str, str] = {} + + # Previous "header" printed for a link-based InstallRequirement + self._previous_requirement_header = ("", "") + + def _log_preparing_link(self, req: InstallRequirement) -> None: + """Provide context for the requirement being prepared.""" + if req.link.is_file and not req.is_wheel_from_cache: + message = "Processing %s" + information = str(display_path(req.link.file_path)) + else: + message = "Collecting %s" + information = redact_auth_from_requirement(req.req) if req.req else str(req) + + # If we used req.req, inject requirement source if available (this + # would already be included if we used req directly) + if req.req and req.comes_from: + if isinstance(req.comes_from, str): + comes_from: Optional[str] = req.comes_from + else: + comes_from = req.comes_from.from_path() + if comes_from: + information += f" (from {comes_from})" + + if (message, information) != self._previous_requirement_header: + self._previous_requirement_header = (message, information) + logger.info(message, information) + + if req.is_wheel_from_cache: + with indent_log(): + logger.info("Using cached %s", req.link.filename) + + def _ensure_link_req_src_dir( + self, req: InstallRequirement, parallel_builds: bool + ) -> None: + """Ensure source_dir of a linked InstallRequirement.""" + # Since source_dir is only set for editable requirements. + if req.link.is_wheel: + # We don't need to unpack wheels, so no need for a source + # directory. + return + assert req.source_dir is None + if req.link.is_existing_dir(): + # build local directories in-tree + req.source_dir = req.link.file_path + return + + # We always delete unpacked sdists after pip runs. + req.ensure_has_source_dir( + self.build_dir, + autodelete=True, + parallel_builds=parallel_builds, + ) + req.ensure_pristine_source_checkout() + + def _get_linked_req_hashes(self, req: InstallRequirement) -> Hashes: + # By the time this is called, the requirement's link should have + # been checked so we can tell what kind of requirements req is + # and raise some more informative errors than otherwise. + # (For example, we can raise VcsHashUnsupported for a VCS URL + # rather than HashMissing.) + if not self.require_hashes: + return req.hashes(trust_internet=True) + + # We could check these first 2 conditions inside unpack_url + # and save repetition of conditions, but then we would + # report less-useful error messages for unhashable + # requirements, complaining that there's no hash provided. + if req.link.is_vcs: + raise VcsHashUnsupported() + if req.link.is_existing_dir(): + raise DirectoryUrlHashUnsupported() + + # Unpinned packages are asking for trouble when a new version + # is uploaded. This isn't a security check, but it saves users + # a surprising hash mismatch in the future. + # file:/// URLs aren't pinnable, so don't complain about them + # not being pinned. + if not req.is_direct and not req.is_pinned: + raise HashUnpinned() + + # If known-good hashes are missing for this requirement, + # shim it with a facade object that will provoke hash + # computation and then raise a HashMissing exception + # showing the user what the hash should be. + return req.hashes(trust_internet=False) or MissingHashes() + + def _fetch_metadata_only( + self, + req: InstallRequirement, + ) -> Optional[BaseDistribution]: + if self.legacy_resolver: + logger.debug( + "Metadata-only fetching is not used in the legacy resolver", + ) + return None + if self.require_hashes: + logger.debug( + "Metadata-only fetching is not used as hash checking is required", + ) + return None + # Try PEP 658 metadata first, then fall back to lazy wheel if unavailable. + return self._fetch_metadata_using_link_data_attr( + req + ) or self._fetch_metadata_using_lazy_wheel(req.link) + + def _fetch_metadata_using_link_data_attr( + self, + req: InstallRequirement, + ) -> Optional[BaseDistribution]: + """Fetch metadata from the data-dist-info-metadata attribute, if possible.""" + # (1) Get the link to the metadata file, if provided by the backend. + metadata_link = req.link.metadata_link() + if metadata_link is None: + return None + assert req.req is not None + logger.verbose( + "Obtaining dependency information for %s from %s", + req.req, + metadata_link, + ) + # (2) Download the contents of the METADATA file, separate from the dist itself. + metadata_file = get_http_url( + metadata_link, + self._download, + hashes=metadata_link.as_hashes(), + ) + with open(metadata_file.path, "rb") as f: + metadata_contents = f.read() + # (3) Generate a dist just from those file contents. + metadata_dist = get_metadata_distribution( + metadata_contents, + req.link.filename, + req.req.name, + ) + # (4) Ensure the Name: field from the METADATA file matches the name from the + # install requirement. + # + # NB: raw_name will fall back to the name from the install requirement if + # the Name: field is not present, but it's noted in the raw_name docstring + # that that should NEVER happen anyway. + if canonicalize_name(metadata_dist.raw_name) != canonicalize_name(req.req.name): + raise MetadataInconsistent( + req, "Name", req.req.name, metadata_dist.raw_name + ) + return metadata_dist + + def _fetch_metadata_using_lazy_wheel( + self, + link: Link, + ) -> Optional[BaseDistribution]: + """Fetch metadata using lazy wheel, if possible.""" + # --use-feature=fast-deps must be provided. + if not self.use_lazy_wheel: + return None + if link.is_file or not link.is_wheel: + logger.debug( + "Lazy wheel is not used as %r does not point to a remote wheel", + link, + ) + return None + + wheel = Wheel(link.filename) + name = canonicalize_name(wheel.name) + logger.info( + "Obtaining dependency information from %s %s", + name, + wheel.version, + ) + url = link.url.split("#", 1)[0] + try: + return dist_from_wheel_url(name, url, self._session) + except HTTPRangeRequestUnsupported: + logger.debug("%s does not support range requests", url) + return None + + def _complete_partial_requirements( + self, + partially_downloaded_reqs: Iterable[InstallRequirement], + parallel_builds: bool = False, + ) -> None: + """Download any requirements which were only fetched by metadata.""" + # Download to a temporary directory. These will be copied over as + # needed for downstream 'download', 'wheel', and 'install' commands. + temp_dir = TempDirectory(kind="unpack", globally_managed=True).path + + # Map each link to the requirement that owns it. This allows us to set + # `req.local_file_path` on the appropriate requirement after passing + # all the links at once into BatchDownloader. + links_to_fully_download: Dict[Link, InstallRequirement] = {} + for req in partially_downloaded_reqs: + assert req.link + links_to_fully_download[req.link] = req + + batch_download = self._batch_download( + links_to_fully_download.keys(), + temp_dir, + ) + for link, (filepath, _) in batch_download: + logger.debug("Downloading link %s to %s", link, filepath) + req = links_to_fully_download[link] + # Record the downloaded file path so wheel reqs can extract a Distribution + # in .get_dist(). + req.local_file_path = filepath + # Record that the file is downloaded so we don't do it again in + # _prepare_linked_requirement(). + self._downloaded[req.link.url] = filepath + + # If this is an sdist, we need to unpack it after downloading, but the + # .source_dir won't be set up until we are in _prepare_linked_requirement(). + # Add the downloaded archive to the install requirement to unpack after + # preparing the source dir. + if not req.is_wheel: + req.needs_unpacked_archive(Path(filepath)) + + # This step is necessary to ensure all lazy wheels are processed + # successfully by the 'download', 'wheel', and 'install' commands. + for req in partially_downloaded_reqs: + self._prepare_linked_requirement(req, parallel_builds) + + def prepare_linked_requirement( + self, req: InstallRequirement, parallel_builds: bool = False + ) -> BaseDistribution: + """Prepare a requirement to be obtained from req.link.""" + assert req.link + self._log_preparing_link(req) + with indent_log(): + # Check if the relevant file is already available + # in the download directory + file_path = None + if self.download_dir is not None and req.link.is_wheel: + hashes = self._get_linked_req_hashes(req) + file_path = _check_download_dir( + req.link, + self.download_dir, + hashes, + # When a locally built wheel has been found in cache, we don't warn + # about re-downloading when the already downloaded wheel hash does + # not match. This is because the hash must be checked against the + # original link, not the cached link. It that case the already + # downloaded file will be removed and re-fetched from cache (which + # implies a hash check against the cache entry's origin.json). + warn_on_hash_mismatch=not req.is_wheel_from_cache, + ) + + if file_path is not None: + # The file is already available, so mark it as downloaded + self._downloaded[req.link.url] = file_path + else: + # The file is not available, attempt to fetch only metadata + metadata_dist = self._fetch_metadata_only(req) + if metadata_dist is not None: + req.needs_more_preparation = True + return metadata_dist + + # None of the optimizations worked, fully prepare the requirement + return self._prepare_linked_requirement(req, parallel_builds) + + def prepare_linked_requirements_more( + self, reqs: Iterable[InstallRequirement], parallel_builds: bool = False + ) -> None: + """Prepare linked requirements more, if needed.""" + reqs = [req for req in reqs if req.needs_more_preparation] + for req in reqs: + # Determine if any of these requirements were already downloaded. + if self.download_dir is not None and req.link.is_wheel: + hashes = self._get_linked_req_hashes(req) + file_path = _check_download_dir(req.link, self.download_dir, hashes) + if file_path is not None: + self._downloaded[req.link.url] = file_path + req.needs_more_preparation = False + + # Prepare requirements we found were already downloaded for some + # reason. The other downloads will be completed separately. + partially_downloaded_reqs: List[InstallRequirement] = [] + for req in reqs: + if req.needs_more_preparation: + partially_downloaded_reqs.append(req) + else: + self._prepare_linked_requirement(req, parallel_builds) + + # TODO: separate this part out from RequirementPreparer when the v1 + # resolver can be removed! + self._complete_partial_requirements( + partially_downloaded_reqs, + parallel_builds=parallel_builds, + ) + + def _prepare_linked_requirement( + self, req: InstallRequirement, parallel_builds: bool + ) -> BaseDistribution: + assert req.link + link = req.link + + hashes = self._get_linked_req_hashes(req) + + if hashes and req.is_wheel_from_cache: + assert req.download_info is not None + assert link.is_wheel + assert link.is_file + # We need to verify hashes, and we have found the requirement in the cache + # of locally built wheels. + if ( + isinstance(req.download_info.info, ArchiveInfo) + and req.download_info.info.hashes + and hashes.has_one_of(req.download_info.info.hashes) + ): + # At this point we know the requirement was built from a hashable source + # artifact, and we verified that the cache entry's hash of the original + # artifact matches one of the hashes we expect. We don't verify hashes + # against the cached wheel, because the wheel is not the original. + hashes = None + else: + logger.warning( + "The hashes of the source archive found in cache entry " + "don't match, ignoring cached built wheel " + "and re-downloading source." + ) + req.link = req.cached_wheel_source_link + link = req.link + + self._ensure_link_req_src_dir(req, parallel_builds) + + if link.is_existing_dir(): + local_file = None + elif link.url not in self._downloaded: + try: + local_file = unpack_url( + link, + req.source_dir, + self._download, + self.verbosity, + self.download_dir, + hashes, + ) + except NetworkConnectionError as exc: + raise InstallationError( + f"Could not install requirement {req} because of HTTP " + f"error {exc} for URL {link}" + ) + else: + file_path = self._downloaded[link.url] + if hashes: + hashes.check_against_path(file_path) + local_file = File(file_path, content_type=None) + + # If download_info is set, we got it from the wheel cache. + if req.download_info is None: + # Editables don't go through this function (see + # prepare_editable_requirement). + assert not req.editable + req.download_info = direct_url_from_link(link, req.source_dir) + # Make sure we have a hash in download_info. If we got it as part of the + # URL, it will have been verified and we can rely on it. Otherwise we + # compute it from the downloaded file. + # FIXME: https://github.com/pypa/pip/issues/11943 + if ( + isinstance(req.download_info.info, ArchiveInfo) + and not req.download_info.info.hashes + and local_file + ): + hash = hash_file(local_file.path)[0].hexdigest() + # We populate info.hash for backward compatibility. + # This will automatically populate info.hashes. + req.download_info.info.hash = f"sha256={hash}" + + # For use in later processing, + # preserve the file path on the requirement. + if local_file: + req.local_file_path = local_file.path + + dist = _get_prepared_distribution( + req, + self.build_tracker, + self.finder, + self.build_isolation, + self.check_build_deps, + ) + return dist + + def save_linked_requirement(self, req: InstallRequirement) -> None: + assert self.download_dir is not None + assert req.link is not None + link = req.link + if link.is_vcs or (link.is_existing_dir() and req.editable): + # Make a .zip of the source_dir we already created. + req.archive(self.download_dir) + return + + if link.is_existing_dir(): + logger.debug( + "Not copying link to destination directory " + "since it is a directory: %s", + link, + ) + return + if req.local_file_path is None: + # No distribution was downloaded for this requirement. + return + + download_location = os.path.join(self.download_dir, link.filename) + if not os.path.exists(download_location): + shutil.copy(req.local_file_path, download_location) + download_path = display_path(download_location) + logger.info("Saved %s", download_path) + + def prepare_editable_requirement( + self, + req: InstallRequirement, + ) -> BaseDistribution: + """Prepare an editable requirement.""" + assert req.editable, "cannot prepare a non-editable req as editable" + + logger.info("Obtaining %s", req) + + with indent_log(): + if self.require_hashes: + raise InstallationError( + f"The editable requirement {req} cannot be installed when " + "requiring hashes, because there is no single file to " + "hash." + ) + req.ensure_has_source_dir(self.src_dir) + req.update_editable() + assert req.source_dir + req.download_info = direct_url_for_editable(req.unpacked_source_directory) + + dist = _get_prepared_distribution( + req, + self.build_tracker, + self.finder, + self.build_isolation, + self.check_build_deps, + ) + + req.check_if_exists(self.use_user_site) + + return dist + + def prepare_installed_requirement( + self, + req: InstallRequirement, + skip_reason: str, + ) -> BaseDistribution: + """Prepare an already-installed requirement.""" + assert req.satisfied_by, "req should have been satisfied but isn't" + assert skip_reason is not None, ( + "did not get skip reason skipped but req.satisfied_by " + f"is set to {req.satisfied_by}" + ) + logger.info( + "Requirement %s: %s (%s)", skip_reason, req, req.satisfied_by.version + ) + with indent_log(): + if self.require_hashes: + logger.debug( + "Since it is already installed, we are trusting this " + "package without checking its hash. To ensure a " + "completely repeatable environment, install into an " + "empty virtualenv." + ) + return InstalledDistribution(req).get_metadata_distribution() diff --git a/venv/lib/python3.12/site-packages/pip/_internal/pyproject.py b/venv/lib/python3.12/site-packages/pip/_internal/pyproject.py new file mode 100644 index 0000000..8de36b8 --- /dev/null +++ b/venv/lib/python3.12/site-packages/pip/_internal/pyproject.py @@ -0,0 +1,179 @@ +import importlib.util +import os +from collections import namedtuple +from typing import Any, List, Optional + +from pip._vendor import tomli +from pip._vendor.packaging.requirements import InvalidRequirement, Requirement + +from pip._internal.exceptions import ( + InstallationError, + InvalidPyProjectBuildRequires, + MissingPyProjectBuildRequires, +) + + +def _is_list_of_str(obj: Any) -> bool: + return isinstance(obj, list) and all(isinstance(item, str) for item in obj) + + +def make_pyproject_path(unpacked_source_directory: str) -> str: + return os.path.join(unpacked_source_directory, "pyproject.toml") + + +BuildSystemDetails = namedtuple( + "BuildSystemDetails", ["requires", "backend", "check", "backend_path"] +) + + +def load_pyproject_toml( + use_pep517: Optional[bool], pyproject_toml: str, setup_py: str, req_name: str +) -> Optional[BuildSystemDetails]: + """Load the pyproject.toml file. + + Parameters: + use_pep517 - Has the user requested PEP 517 processing? None + means the user hasn't explicitly specified. + pyproject_toml - Location of the project's pyproject.toml file + setup_py - Location of the project's setup.py file + req_name - The name of the requirement we're processing (for + error reporting) + + Returns: + None if we should use the legacy code path, otherwise a tuple + ( + requirements from pyproject.toml, + name of PEP 517 backend, + requirements we should check are installed after setting + up the build environment + directory paths to import the backend from (backend-path), + relative to the project root. + ) + """ + has_pyproject = os.path.isfile(pyproject_toml) + has_setup = os.path.isfile(setup_py) + + if not has_pyproject and not has_setup: + raise InstallationError( + f"{req_name} does not appear to be a Python project: " + f"neither 'setup.py' nor 'pyproject.toml' found." + ) + + if has_pyproject: + with open(pyproject_toml, encoding="utf-8") as f: + pp_toml = tomli.loads(f.read()) + build_system = pp_toml.get("build-system") + else: + build_system = None + + # The following cases must use PEP 517 + # We check for use_pep517 being non-None and falsey because that means + # the user explicitly requested --no-use-pep517. The value 0 as + # opposed to False can occur when the value is provided via an + # environment variable or config file option (due to the quirk of + # strtobool() returning an integer in pip's configuration code). + if has_pyproject and not has_setup: + if use_pep517 is not None and not use_pep517: + raise InstallationError( + "Disabling PEP 517 processing is invalid: " + "project does not have a setup.py" + ) + use_pep517 = True + elif build_system and "build-backend" in build_system: + if use_pep517 is not None and not use_pep517: + raise InstallationError( + "Disabling PEP 517 processing is invalid: " + "project specifies a build backend of {} " + "in pyproject.toml".format(build_system["build-backend"]) + ) + use_pep517 = True + + # If we haven't worked out whether to use PEP 517 yet, + # and the user hasn't explicitly stated a preference, + # we do so if the project has a pyproject.toml file + # or if we cannot import setuptools or wheels. + + # We fallback to PEP 517 when without setuptools or without the wheel package, + # so setuptools can be installed as a default build backend. + # For more info see: + # https://discuss.python.org/t/pip-without-setuptools-could-the-experience-be-improved/11810/9 + # https://github.com/pypa/pip/issues/8559 + elif use_pep517 is None: + use_pep517 = ( + has_pyproject + or not importlib.util.find_spec("setuptools") + or not importlib.util.find_spec("wheel") + ) + + # At this point, we know whether we're going to use PEP 517. + assert use_pep517 is not None + + # If we're using the legacy code path, there is nothing further + # for us to do here. + if not use_pep517: + return None + + if build_system is None: + # Either the user has a pyproject.toml with no build-system + # section, or the user has no pyproject.toml, but has opted in + # explicitly via --use-pep517. + # In the absence of any explicit backend specification, we + # assume the setuptools backend that most closely emulates the + # traditional direct setup.py execution, and require wheel and + # a version of setuptools that supports that backend. + + build_system = { + "requires": ["setuptools>=40.8.0"], + "build-backend": "setuptools.build_meta:__legacy__", + } + + # If we're using PEP 517, we have build system information (either + # from pyproject.toml, or defaulted by the code above). + # Note that at this point, we do not know if the user has actually + # specified a backend, though. + assert build_system is not None + + # Ensure that the build-system section in pyproject.toml conforms + # to PEP 518. + + # Specifying the build-system table but not the requires key is invalid + if "requires" not in build_system: + raise MissingPyProjectBuildRequires(package=req_name) + + # Error out if requires is not a list of strings + requires = build_system["requires"] + if not _is_list_of_str(requires): + raise InvalidPyProjectBuildRequires( + package=req_name, + reason="It is not a list of strings.", + ) + + # Each requirement must be valid as per PEP 508 + for requirement in requires: + try: + Requirement(requirement) + except InvalidRequirement as error: + raise InvalidPyProjectBuildRequires( + package=req_name, + reason=f"It contains an invalid requirement: {requirement!r}", + ) from error + + backend = build_system.get("build-backend") + backend_path = build_system.get("backend-path", []) + check: List[str] = [] + if backend is None: + # If the user didn't specify a backend, we assume they want to use + # the setuptools backend. But we can't be sure they have included + # a version of setuptools which supplies the backend. So we + # make a note to check that this requirement is present once + # we have set up the environment. + # This is quite a lot of work to check for a very specific case. But + # the problem is, that case is potentially quite common - projects that + # adopted PEP 518 early for the ability to specify requirements to + # execute setup.py, but never considered needing to mention the build + # tools themselves. The original PEP 518 code had a similar check (but + # implemented in a different way). + backend = "setuptools.build_meta:__legacy__" + check = ["setuptools>=40.8.0"] + + return BuildSystemDetails(requires, backend, check, backend_path) diff --git a/venv/lib/python3.12/site-packages/pip/_internal/req/__init__.py b/venv/lib/python3.12/site-packages/pip/_internal/req/__init__.py new file mode 100644 index 0000000..16de903 --- /dev/null +++ b/venv/lib/python3.12/site-packages/pip/_internal/req/__init__.py @@ -0,0 +1,92 @@ +import collections +import logging +from typing import Generator, List, Optional, Sequence, Tuple + +from pip._internal.utils.logging import indent_log + +from .req_file import parse_requirements +from .req_install import InstallRequirement +from .req_set import RequirementSet + +__all__ = [ + "RequirementSet", + "InstallRequirement", + "parse_requirements", + "install_given_reqs", +] + +logger = logging.getLogger(__name__) + + +class InstallationResult: + def __init__(self, name: str) -> None: + self.name = name + + def __repr__(self) -> str: + return f"InstallationResult(name={self.name!r})" + + +def _validate_requirements( + requirements: List[InstallRequirement], +) -> Generator[Tuple[str, InstallRequirement], None, None]: + for req in requirements: + assert req.name, f"invalid to-be-installed requirement: {req}" + yield req.name, req + + +def install_given_reqs( + requirements: List[InstallRequirement], + global_options: Sequence[str], + root: Optional[str], + home: Optional[str], + prefix: Optional[str], + warn_script_location: bool, + use_user_site: bool, + pycompile: bool, +) -> List[InstallationResult]: + """ + Install everything in the given list. + + (to be called after having downloaded and unpacked the packages) + """ + to_install = collections.OrderedDict(_validate_requirements(requirements)) + + if to_install: + logger.info( + "Installing collected packages: %s", + ", ".join(to_install.keys()), + ) + + installed = [] + + with indent_log(): + for req_name, requirement in to_install.items(): + if requirement.should_reinstall: + logger.info("Attempting uninstall: %s", req_name) + with indent_log(): + uninstalled_pathset = requirement.uninstall(auto_confirm=True) + else: + uninstalled_pathset = None + + try: + requirement.install( + global_options, + root=root, + home=home, + prefix=prefix, + warn_script_location=warn_script_location, + use_user_site=use_user_site, + pycompile=pycompile, + ) + except Exception: + # if install did not succeed, rollback previous uninstall + if uninstalled_pathset and not requirement.install_succeeded: + uninstalled_pathset.rollback() + raise + else: + if uninstalled_pathset and requirement.install_succeeded: + uninstalled_pathset.commit() + + installed.append(InstallationResult(req_name)) + + return installed diff --git a/venv/lib/python3.12/site-packages/pip/_internal/req/__pycache__/__init__.cpython-312.pyc b/venv/lib/python3.12/site-packages/pip/_internal/req/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..38aa286e6317404ea345f2d92e05c7fbd8bb47f9 GIT binary patch literal 3740 zcmahLTWl1`vFEk#^*+373|_;6@!4a*%R?ORBS^pj0iT5Vxz$CZWv6Y=GP|?aGYht} zRxHGa$wPon3P`7u^7sL9QBc0}N$w#<$ZG{H;GDAPAAz`%Vjy>d7Uo`S)nLq z#iEpzik_^e=*@aLlo51a(Vz7LEvk|pCbdA~xUjn`m?38fUi>pakuX~D3mek3iX=kZf(Jfmn<%-ny zFltp;X(Zo18fOEf1^5=@&Nfx9N)%@R(G*xca))D4pk>|`O{$MMjEU3I>6h8egi)lK za%Cc8<}0d_H%b*9Xm6oX3=fsT>e6CoSK=kR?a9I z%wTW^8Sp?x0amjVWw<iS9Y^XZ}TCNWLACNIUj9 zHf{n2E(_RLa0XsQAMz^ykuXYRVPv}d+glEz6A!)QWQLbd=2!w66Zc88Bw$pS(K1t% z*C^Z?#PBpx9u$trw>SS*z9Zl6y_c&+_SSrR*%}yuQ-rl}J4LYric&PxijH(hQQoiQ z^!A8gT8yFnY#pFG#F^`;!Xns<2sbh}0=hz)JSVNaHQFT5{NmgqHcbyF?Yq_Y9O!+m z**M1z!BH$lIEz8oEAGU|?1OJ{4AA!p2QICWqvQt=s54xZ`!3g-fm7&q?nCkse-~yU zTz-vgl^f%K&fVlV^3x#^Lhv`jB~Io?ru((h#hk9GY0KDlo^ESjAF8HTXuCh%Ivk#* zVFz2lTh$8H))93n&JsE6)mzNaoL>0Mw*dWv{A-ppJtUfXMtCVTCp04QYm+~otoe@D zdcJqR^S)GDdwkw^d~UMQ5xX{Vb>fyVSDg3tJe5HD-zK`}a%KmlfN|Y8pVJk?$ug!b zGQ)toh&RUelo=h7mgII+iJPz8cE(rrv0awOl_=nSS_LYn@&(*+6;yqN@Tx9g z-7|J~aH|1UlNrB-QRaXvw;Q4eR>DwQ1+E0d*Dncq4=kGr%mk~!0_Lk#zz+T&8-(go zUE;`VvkW>;ZvFyZ>{Vc4C_4bQwj;uA;YR&hgqf@Lulh&f zLhpcNc8TZ6yKojDIWZ}`OD=JJ#7emc73iYS0 zj_qI4%=Wr{u{NQYm3*F3aEa}K#8T8O+kb2_Pn|qv`xuyh9-L%*a^*5DsZJr0!%j+N zn^E=uX_FlQ2e@1M+XQUogJkR!H9NQ>W80leic(c6=d1~nS|+9x41pzRl{M^Uh)@Aj zh47vw&)1W9??P;_9vgfpAHE-&m(R?{MrKca<&8b|bzBQx4K_lVMkspiY8*eKT++PyGzxIT3FkLPMbhv$dR z))E6R1RQ~qi`YX3w$!41O)(bU(TMgeMEmN|zD8nGV{I?~dp0)YLyb+D#`=L~gv2&K zC%#zx>3WhFxP4$@%ZUeDPBan&3yI-+V)#*F`;$;|A(X0zQV)AG_k8oc`yPe%KivZg zzYxHT=0Orl*2Kh%-OKy`2RxPNeMZD^*H@iy-2UN0=JbQiX=lyt^~CmviJgsTvgwE6 zmoElZtnt!31m6Bb`iO9>Tll1}^Jv=p$(uo-KjpiRZWTXWcL388}oQJpVRTM}L@P_h_Q|q*Irx+$!mO+FC ziLFP3>C+a^8;0%#8pCw9{IGiIJJ@=Ry~R$!0OnWopMaVI$8lef_!p$(ujJ4pa_DQa z^J_BrCE4;N>3b$hL4MZT>>z=jxit&^b#?!`TYKmIn`b>QJQBC>DFM`sN?fWD@2ahl z>+zwc0NfL)W3F<2w6<<*ExENG*>>Bycdi!MSC{rLN-*4v?%|RvW&rmjk-9Z{<4jWm z8p18ud41Q_ZA~w7K9}<&7a-x}_0g+mnnC13q-R4jj8q3nbT=bNMM*T#j3E^#o- Ns!P4kJArqc@n642eun@6 literal 0 HcmV?d00001 diff --git a/venv/lib/python3.12/site-packages/pip/_internal/req/__pycache__/constructors.cpython-312.pyc b/venv/lib/python3.12/site-packages/pip/_internal/req/__pycache__/constructors.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..d2d1a908a66d8de642fa6ef9c15cb7356dae98e9 GIT binary patch literal 21579 zcmb_^Yj7Obm0tHu&wGHu`wg=3AbxbrVu~Ev!`jq#Gd96GkXdn0-olOC2SqBhHWFZuzkcHc8oZ}&JkzWHR1}p zN8CJ>A%sf8r6Z**YzcY7Wg}(b@{w}(ZVgq0D@Q6>*cPe^SC3S)usu{0t{tfj*NxP% zcSoo`+%VF>!p=}*xM`$`gL42vTo3zvji!mT5%EL<9D3%8H7v#=+$ zE8H>C!NO&s&T!XA7Ymn%yy5PV?(puB-8?tWNfrN=AL%i1vT1U}7@+)9_TA&Pw~;=% za`Kz`6eBb_YJ~F7dwOtWpHwODm#So!ykB<6`|A-uW@2|is=gtN^h-5HJgA&Hg&@@; z?SND#mrM0VEYi!ztWpC~4oZ!Bsd||x-N&+N;ME(!~;+bIj^t7LJkM)KXTjU1Kw zSig>-&3n-1CnXwnEzTHqtF#v>$5`w>l+NY?V=;&^-H()~w)Io%aXhbU2+XLwBaR;aUlb(_e>TMHqq;KS)VS-v6!rg(-BEl(7T8fxEKrtW7k+BDial1jcKLGtS%qx9J&!e$HHE$!l7Xr#9S@D`O70*O2 z2SP!qV74-@f)@}w&Q8gr!LcCd`AoUq95&sj6eUW92rpfG>6wiE9L9h`AVVu6m+-WF zeL|K)l<%d0f}U?J8I^BeDj@X)RewMkod{l*{bRw9jHn7ku|Wxi0vAKFUkXxNJmYfA zujH2*qFhsf*n~e8^-n7yG|Y;82xZKdM^&#mQ?Hjnnfzl)H0;NMh*61|>c^5o!HAqG zouX#v$pk7tV^!qXv=SNBj~K>+aU^qQ{5JjtZnwEuE^Sh0(TqyJNqn3$SobV1akHj4 zuXM!uNlPJ>7M4uLQ8sJ-0t$1E!W1{hO=G6BT$}^79`*`nW-7kX<=gG;I{)gc-#CBa z!tV1IyzRfCCjN$6hoLbkSRUa(Y;+=H8CRmyQ(i&Yfusx{&RFHEF(shVU|?_~QNQ-C zQkO+skG|125e>_IQ_~ZD>gcrO$0m<~#vhmp_Fa}Em-|A&i+xkqViVEGe&61GeQGc! z_fCO>1jc2x4{N^}M#OV+|Q?3gco=&CnjHc&37bmF#UifMA#6ptZr8$+x*^V4j|4rjR-(XflAx!9B% zv@@VGrf$-zXDWD{<-DddSks}vs5}u3f%kZYj9HaqN-d}|mQeJHtgv=^dG=6gN=3y> zsihdj%d!$PMr{uw58?&XPRJ=7k?_PH`B#tg0{Na%gj@)}P)p&T-HMr(F zo^l;e3da>1=ZqPXl5s}lD|%U@g-e>+%|_)ZRQ}})KbBkK*aG?{iJ=JXDmDrqn(pZ% zifv+=b3MyR<~a8@CkgMGjgfqVkDDePMk)EHWHIW%b|_9^%~1$(^L0~PU^Uo^)W9pv zl3j94y7J{4p;(C#it|Q!#&ZTE6yYW3tR?2jQJLT7;uidbw>k7e9|z30Yv#|Lw5MKX z97YubB8DBOOYSTcF9zrY!C6bk&N!H41TS)rNGA!4qa!aAq*I1%Tc7w09d0r!R--R0 zE)c>oCtVXK0;-+?#8Lg=Qe?LFB(V!8u%tw%rci8fOpHWXv$P6W!F0^A!o5EBKGWRw z>iH|@W1_G3LZ0t*gYO*c@^yQ`sx4!oz_>cosL12;RUGnQJ=Ckhw#~GNV*#81QV-e$ z=|G)`PKP8^jdhI%qcstw1w;B9S|2kVT1kw1iK?t0i|mBnQmF9iF7?7Az9++Z?MfSR zW*lSFp^(P>%-}Q`%ki^A&pe~-qBLPL8jNJDDuf7GQrw90T9v(cDEsKvPBi8za8F?> zioC=$RN4|WiK4z0YyH@>g(sDn z;?!bCV*lNNI|Dx$ULIU+Ke*a>=$93T{&L^k@Vcue(Uz!ATuw|Z#g@jBwY{q@UsCXC zY{G4vrqtCfoYRKx(Hw33M{o|}oU?qMbLMxuH8lhS65XBo8;-*-o5hvkL{>SRx zatc%#x$@63GmdjAk(fTaj8;=htj>r%$zABh_*oz%6yZ=to?<;EP9&M%&Gk&>|EPn- z32~nI(=5+}g9%*0DCEXw)*81?HW+QlKh-^wWwJT{ZiMpfoh12U+jURpgtN97ZESWi zPHc_a&_>(4fuV#ZX{^eora#2d?(Z%FKh4v)7eGLKiRjlhdE?dL7YUhSFtz2{Wa@%T?FD2B^ zy|8%jQ=8+>E7z~QIeUF}@xlXJ+oyGHOE0X}?VB%oXscSYHKc3}tG1>!TW8AFxomr2 z+p}KVn0R5ewtKDiP^$LOyc<&H!?LDyS@U|?&ZUwS>rdQ2a{qB@N_=v)?ATh_aH?!L zYZIzUvz$;;nsswk;!^XE&3|l3Rvt*Y4}99VL6Kk%Pl&fXQ zpKL#{@|9%kpTTZ&#l0uty zFxqL~(84NyDE4Cx3I*plgLOYN8)EMP9G8*+xX*Hfi}NQrgO%q)bi9H6`@#Ork~MC= z%qdlIvt+};W5z6RyQG}R+rYHMVk(MczlT=QrHE9L`D00!gJ zAbtdb7%N641dPxT1}aTX0|vsjMuSK^9}5C4V(<@m7lcfaKn1=2K_w7W z0r5NzzzpgVd-3ezXdpt|7VML?Ok&NT9#MC<2++DHZkdja^$vgmjYp!23|Pc2M}UW+ zNl@(x!cn)ZOA@*ER>pT&Pd_a(NOcN$tSxzjL3@alhq+a_7Ucs*gRDiIaC{+^*1Z|rR0xAdKM3+ww41af_cP)2<()^B6|>piYPk2&h`2Ryo)u`t|1`2%WN zK~I%e5%Evy{e{ylEcYbrQr>HNe}?MmGP$6%H#vsB&>d?sKT{<^MzrR70g|E2{m^A_;h z>W1HPc1Pv>$%mfG#n?hTUE7#!>P<*@gLi_mYfh7vC? zUc3GJt=Cs;yFTn+v8*Wfj-_e`7ln0qZ9;h9Zce)^e%FF(S>2zNp@QF)3DE_Nnn(gcg-_UQ)nfg<=VIy9qsIDhlIg%F=jZVh+-l>PK6xeNPLva zxWegt)HZX&z#9nqCPo!jf$c}YYalfhvObN;N>MN_VnXs&pv^su0})2QjWZdX4ty#Q zR;ipp02?_dLu1EG1Y{-5*u-IC;hi((o#NIid^0s**u?Q5F0v$6vrn99r09S$K23s` z2vLqi$jiX=0b0yl^@@ZN;5^XL_hQF^#%*DDz+pg4oBG^CI6Zso>{U8Nf-0y49VBK6 z27ajvm2?2;V16*>o9P(R#)7eEv2&N&N$mNtk@VV>lbA70$^_1e(Nx*)QRvLfSVPhA zaT$PwBww5!_nH{+kTGL&3fW1f0==CcmHqnU`H`-Kk^cky)PIf}gBIMSHxDfwy7}b7 zlZmzmt{v%eNGb_Sve}pP^d;?mX=m%)P*!kRoa^?^W%C1j52P7~8?uh4EL~PPKMe_| zdT-V&la=`aTDHhXCP2^&YuG;pr~_x%E_*4oN@sHVChqMuu7G0QK*w*Eg1nY)mX7Kl^TO1 z-9V7+ejwz*nBPBBzr9~RBk9kOMQygI(%a-?f_;Nec!G|da& zbup>*jMte#u_TuI{TZjh7!sFIg++sRetFWNq|j=PDW!9jWq` ztb<;iTzS>v&@KC>3vXK4RN@w1OwD35^dSOUrRRJ4+?+@HEKh(^oWEWI{+gSYJmfSh zL`<;12!-;iksp9N zQH?J26*7cDvGWn%32>1qXaqDe9>BCiZRlwXkp2`NII%Hr%5xO-XwZQ_3SCeEcUaHRJ9aa_OH5*CWWJ)Z+f`0R_IgeBC~C# zbUXwQBjnd1k&GLt^+fK?so9MJ0AipztFi(}LxaLIHB+(@#{Mxt6+f)6Fv4a$$TAij zCww*rd05S$45;L6bd=Z8C}oar*Xi~K-TshnH|X}y=tj&nXAPkP*@GWjmPAv0S*8H~mfcYq=%2B1Ryg2e=a0$s2un9rQ^x|KKa!rBed zPq%q$J)m`>^{QBRsed}NVrxVpe6oOHF+S#EOH!+%SRqBmEMvh+jHxQ^FUIDyo5n&K zsSdjR4SwoNxZ(V2;7Zz;o?mtEojdiZt2u2iS+m!t?Dgr&=5$S4y1Y8Q^FX?!;^xT0 z2u0z4d40NeSGu|-UDuiRRNag(#5WsD-PSBuYO!iOC61D}@D!RjHhHuazEr*wK(y_O zbI`o`Yy6i;hQzzJUDuoc@ADY7!N_QwoCT%k?Z(uiYi6$yxCF+?v}IMq`iHEeFiD1# z6hLdOp=k7y3KjK|+$!qGoNi_!wOPHU#^i9J@|+XVG=;aYNT6dd&WnN37!DFB*P3M0 z1KH_1mqLA>JgH&}J*tti%Z`f-oknmu;oyu6XI+!jDm6%pxq20F3 z&*s5T^8i#50OL(im@#$gGYDWSRB?7EgXLbk{@S7h3@+`dT-TAhZ(sj*($?~Wi|>!W zH~xO)y~uqb)o}#rX`AcK*RQ|6s6MbY(yObC?SUNcqJ@)FZ$3n2TX9u>>{OWH?Z?Y1kgY{7PvKk##< z!urBb=BzpS%#r}>vM%_|nqt*PO5W-uSudRjEAtfCx=fOdL{&p9U@azvo?VlawC$4Y z5LWbBAYv44AM6v)VanK=9VW=6M-1vPRDP#pM;nR})1t7bfff~b)#TSNGZ_bCth}Jw zgY{1CF4|&en?^&>o&n?*fG1Orj(B04lKxasy6(oKDUDs~H1-a|U-(bOJaZj9%f7^&;l?3 zWJ#gU4fYsJq0(FPS7Y~=hQXbhT)4v!y)L7 z#CCi@W1eERYNZtutk8tc94`>%#a#+4AO`;h-yxPuG9E)3S?effn_BEGVay@VVU$x; zIxQ&8SV5)*g;pk+AE*F8Qh+OC88b>(CMm&oC7_UL#cO6-DC0*NH!Ke%C2FU%8FXOM z8u(M;C$}rIOfU~B#-VP5poTcqpCQ2T9(x^d7hCfWTHo({uk-!h_j*@^2dxLzUCjyU zfvau3az`SzTG^g-x5MV(5!0o0iK>J>%keGUxRrEom<>pM6OejiqW^(Q+{)z^C2+EJ zPeY=A)gvbDB4PW3w+0iVOM6!TExWCE2 z>Dj_8bDLX%8}_UT`h|(`d3IVK#92)_w_S0QWHvTAGlG91E`LwYN#0$mnKYM3Xpa+cyG_D)&*^;>B zy2Hf9@yzw3lpzD9F|r4+D_$D6LG5zqF#xao%#7&?@e%(7Bi^fA1wCNE zckob{!GjJGaZcmRF2Wymel^pzP1R?Xr<~QKfO3NPHo0Pa4yQm*1Ni9tbLonj#hS${ ziPsY0<-JKyZ_?hYvBVNO6ap&q$Bc|`=@UthtWW<61%97@6A~mK7k#sH+(K?^GgFE# z(I8Lmf&sG+(`_p75X^a`5WAbq!7I5e7%OAC;Ikr43CvUK&QZGL}0)-!1ElV z19TIGTt#>byC&(#+;$c7Gg%;2uUrz~Z)3@`qg>-e(~s0 z@ffqFVW2d(c}R~rbH<=JV{<+Y@M%y4;6lz?8HeU@0@ryBEgeOq2I!F-Um&)9mtMn^ z#SBe1<1iYa!a%S@X?rP6pyD!ix>Mhk5JlPolEe`IyLeM+k9-rdnlYl8^2f$&CU4Q! zM7XW2;W7F!4d(wqxqlB}*;Mb?yI#?<)Vo@-XMQN##nm_6ExA(yb8E?7nA;j5*S&ps z(Vnhs)LbT(&i<;>n{L{-GO*Hp|3tFk*y7N7!|vsw)rLLEsy$f;vH|XedBOSl=3a&s zmN>lYp7NVl7OvcUZ2=4@<=LHX*t=*;m(@OK>|GA8HXccp9l2#omscf9Qsuio9NpkB zpX4SRoT;xAGG5~|{4LwVhNeZ^#}&;<@xV$rd0;rXXs9Wk> zs!!JLPL=ImGy|Vp8d|OBO1itUjcCLpm3YDp*KrT`bI)WK2Q~b0$(qMus0Luo3{bbe7@;mZ{MRhT<}DosdoqnN-Lc z$t*dj6oZMQc=eVsLUt%*oSIz&sOD6rT(@!LxwdA3SfVnh)tV`! zOb3y3ygkEDY4EazL8S}?R6ZnnT8au=Y-I?E+G=A<4!5VYqo^{!Ntu>FOH8>B@&Q^* zKgA7;Y28*bFWrcztLqn>53B3uooQS7;<=QqKHb{!e)oIb%Om&8S6iP**>}zhNjT~> z^{zGTPc`jdZ8`uS*pHz$)HE!d{iw#p)%{7`gIy;;`i|=dC*D8(-s!dW{#1Mak6-@D*MIc&pZI^||LELb zyz=u`Ru8)%cedZ1xigapEw?Uz z^@kTexUl?Uvgyde3jpGqTh^L-Q%$|>rM`K-P+PA!-pmR1nDuYvkkR;;V8LrLKf zlLX+W_BySDIl5h^+Z%NIL%NY*qG99&ALleD(lY39C5FF2G+VW%c+L~(_X5a^L*qr^ z@B+Bp3cx&f^rH#-6}NxL-=n>Ri$1ytSg=Be^zXmG_@8;~J0%Uigm*qu(KT2w92}ou zemMarZHI!Rp(l^65NH{LiGuLUJao`gpzi}jfYaj^+d1;fqf|3~f4wT>@#Xrij`Sp6)E2Vu}Y^V^+CTha{O2j2$>C&ou-!_ARy~3~)lvUp@xmB{=Rshq1W-fqTVY9x3ECwaI z#USI%OC4Lx#WqyRmh~AlVXNF*puAdQR?xAlnAIjPlNL)IH^I}|GN~_8qa1oFC*YR# z6fnvnlB?2RJieGj8@EEDZOTjE_{xT#q;qK71qmC{C+?PabIQ^id|tkVT?$|0kcH|) z>pjv6a4~afPUhFmrFt5}cXd}7L;fu=m)g!KsJQjubFFs9-hOxU9IvTZu{Y9d&M&uYg*0gm`HZ;g}KP3{j z2j(c0t45RcDz$=C`2XTVIiSp*`{E2#`~N+43~M zUfP_PWCz%$lXJj|CZ_D-y1i`8-k!3zXD#MNYf`9%Oy+Rkw0+0+vAZViuDSW*cV1+V zg%{V{ttoeFvg2^deVAc)kF^rlupE#hn5el@Z?3iKkr40Pg~qO(soxG z+YgpGX0_XNS!s7!E!NLBy}AntHE?ILb>M!(efLMllj87d>FK2XH0;D^`y<8x-f*38 zaewNnKhbW^IGLOwQTMlONZKZBL%zc{Bv3F!Y`>I!1%_Czs3DdsYJi2RUTlkE+0&xu z?-4t|MXDjp7{s*Lg@%TwvjN2~BG@kSNityur7yh41 zGzSYx3{r`7u5Y^#OB-O@#YRWCr=P#t=y)w>a9re10>=91kTEYnF!3T|B~!nwdL0GC zjP5!Sf06Lvb!1$SsdFZ8W?G)29IQ%K8yy`Po8eMm2D;587&PnWL^wyc{N`lm9f`n? zIajnjwiok@)A$lz`3vOyg!ber0?bjzUa@9t21dPJ+KDZuZLf4~%UW$us0vAC0`$$+fK!=P}`u5yRt|}%*v8Bo~ znzSnZ61lfH4(@nt$wFql{3K09N4=?8-FL=q48bQj2_GK|VMDWFMOs3Bxm^&=~zy>Rh{5Ld+!6%-T zb;pUQ5`-FpufDL>3=T;KTPlw}d&Xy4_|qZaqVTR@rF7-Jvvl+E8E@(K{XhbjhH(_z z6pZC}5=m}*Fh?k_r(km(qjVqLevkdhO59c$uduy_Ma$`C)7rwVMxRm}-vIv?(A3f% zdkX>VF%py>4jlQJ{ZH)4f#)B%+m=qg|MYuLe>i$ie&Fs;zWlX^m9_a@ck`8nSAO4} zr|(!#`Qv*qy|Zm?=U{5*;ATrXZN_qAGZt<#0S#oE@xLNa$i9mSR|R^HX@a&&VM)kO z*S`Z=jGw8%nYO5ibiFgbZBY`nW7~zVdyABBY;Dw#OO4}?V_>6ii}9LfuCorf{v28AYVeBt?L*%o7QVSzqR?xEBJKpj`*>p@`6GVzKnMN7QLJDbYkg70}?eEq~Yq^+Ss>mRAyV zd(nG!904q^GOo0O7R_SpE&tqbx@z~Lbom!L?C+Uo{M`_r zAAkNpiYh>~>5qvZr_XTdCVri1ElyJ~g{r2_5g*Tp#i?@`zN(M_lc{55#vd&4$ye!< zTyjFwKIClJnhdXMIGXzK(T#jnArYOahMD@JRCM}k-;)+EMT25VC(mpnK$m>@v5%va zN+Qt4C)Z4aKwry@*=?tpjs?+FQfDy@`1FT4j%@3$MiUMKZ=&OG|$oymFD@~J{RBo8HZc8sf2%W8BjGI$$cj_=$Y;2jywfGp_!*Y+|$~Tu5L(o z`_lUlrE8n;2QJcWUFj3UzpX`bx}rL3#`9rWU7|X%WdzyvQ(OC>`PVb$$BWQ zj4Q9smQ$z#9|vbEDO3drK3h$p8m?wXLR#9tY*`*%>A!FO(c$Gts_SU7?PzMpld0-s zS!!ywjKcG1Ams3AG+EXkVjWTTc)lkEo!Mor6Z zj2gXZqeh`^qef9*G-{NljT(h2=zEX0Tg}-@daI%_tftVHj~r2HBS#^?t$X@uIk5hG z=4wM{$||#FJkgnCJuG`YSqt89q+zOU6tZ(hXXwpIbyGfc2J=xup_h2Brco;rL-d(z z7w<`zwPekB!XlEj;ED3|Qf%~Qr&1gga(>y|Q)zl#6ncsG&;*ob&GfA4V$X+`+6@cd xv+cFKHQCyq<>-0%xea<|`#pR`+Sx>u6%XAti|WFQSx{G?P1d?i8$ygL{U7~}%Xt6* literal 0 HcmV?d00001 diff --git a/venv/lib/python3.12/site-packages/pip/_internal/req/__pycache__/req_file.cpython-312.pyc b/venv/lib/python3.12/site-packages/pip/_internal/req/__pycache__/req_file.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..231d55872a5f9615b6acc4084f27c476cd2c9353 GIT binary patch literal 21458 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

?{;y`UE$-M}Twepiw$H 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 literal 0 HcmV?d00001 diff --git a/venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/_cmd.cpython-312.pyc b/venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/_cmd.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..0e2d3bad5bac0de913178a75c7ce0048b85a287b GIT binary patch literal 2644 zcmaJ@O>7fK6rS~t?Ty!V9FjmNNiaBt_<$`6Y7uSI(ioCLFsMMKTCG-F@76!8*Y50? z)>a}Ji3%zX1*sAodVmwE;6N|!wWmr|FSrSESS3;`%AvPNp%+elGrJob8aj%1-n^N4 z`}X_ZPkxI;LI}pA0xkaU zZ1^jIT!71dBUq7g5|;x;UnP_aaXDznm2fW1Wyy$CqPeJm^Z*Hitv;~TpX=v)A=r!M zVj#yf`4Y|zXaiap<}KP5Edui(=%X+X>BCz8`ALL` z4MYWRv+Sbpt=UYmw<-fyFOIwJT>(+Qw^x=tsXKcJE%d&PM?v=tljc#^Vgn$|CIh4o z^tNQ_bWXpZ8+MR=amg&${>;($&du17GnD9RWmYvc_)t5fYMLtp4#A?MwwRysXP=~t z)ry|3)r)B>U)Pj8V5@&g6}47MU(n49X`}RMy4Ik@s(B!_|FyJLqWV67^t@Wot#qwa zODk|ptCDn{QNykSHEAVZ(NeXB9RVlnHN|z148c3M!p};~`>Q8xLPAJjCPca05L@8Uvq`_6rETq)|pEA0Eh>0AY>p z`R=;Z0q9+FHY3r!zaY#DWrp?(Llc1(FEPzq3d+XY=Y=yU>Cc``inh$L zRCKBqEIR~wQBsXk6R7Mf>UC1GXer+e7AdVAPN$m^6D*LDK@tQ%2@5vD%-X>-x@AGC z+5SqkZc;ns(!-)6=Dee;N&4)d>ZFv7Ex2g04~)mjATuQwbgD2dm?Lq}jKa_Q5FS8d zbk~YBa8{<6?a@>#vxK)V%l)krWEf08M>nI6)BQ0By>xpdFF>x8H>ih0?f~+A_rxB$ zPN>+fch?8y(mJ-8~ZIiul8)_!9_Q3;yjOjZ3d@VJ=1nIBiSl-XxHM0CzCQKji-Pu0+D1l80LkIjDciFoxCE@c%aAWcF=8K zwn)@3++9ual>QninKX%Q%;RAvvw+!MZp>oQ6^G%(4X&sqlk5i_E1y;a9uPC~;MK#e z%!<7A>f5c%8f0DUn?qk8x|X>ydwrH?9%Q0_%cWCm66%X|q_MU%wk9I~FdX#{cW|PO z6Sp#V=5Ej3pZIC=hsh=UChSNfo#38!aL+AzXa4s5Qt;r46uDA*D2@CDbM>L*#GfrG z3iC-(pm+oblzL*?I9oOKq>mf`_nI-Ud8gb`bPT(`?tx8p^8~PNPfwk)|RlNHNo?Z`#!p`+@pAcIg;nI+>b1j8%_)7D4 Rar+}IeRT|&#jo%;{tE~vNw5F_ literal 0 HcmV?d00001 diff --git a/venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/adapter.cpython-312.pyc b/venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/adapter.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..2f8fc8cb5f20300d5d8cc3a14fa46a13d67745a2 GIT binary patch literal 6462 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 literal 0 HcmV?d00001 diff --git a/venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/cache.cpython-312.pyc b/venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/cache.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..23d83b0acf5a80ba6e54c02cac0bd5633aa26f2e GIT binary patch literal 3807 zcmb_f-ESMm5#QzAk#`hn$+Da}iEE!NwHEzBHi?rqMiRt!oP=m12en_sv^}4AE9vC> z%HB~H2?Y=WJ;Xo_$LWLg=vTq7{RjHomlz39_0Xa%iazws0u>1GQ)hPhDJyLX^aRcB z&dtuw%+CC7_=jRKPvH5}LbCKQN60^L(S0;Iq3v~;Y!HXkh(n!>NBvAKLvgNnim%pG zF;_j!&(^Yju9oxlnobGJ@hr$_p5YrcgOUt+k2u+N;^ZD>q~=;)@O0oAEdNO9a7P3; z58ROfZlPHy6+jXGf+!CuN=H-v7=6uLa*N;5rvmkMU1t}4iO_X-nyxs5; z(~V8rOcpt_oqTN1Gt&(&_{Rl(p5hdo z!$GwDoH!(*f(ztPXYv`{qBC1GJu(v})o#p~bB*(mZ)H+7X5M_N+-A)fRhj0~Uso1G zpH-s9VkNFO9IGA%30p}lJ8~<_ELg61?p!5mCW~S4O8KRiE3uof3z1#FZ7;C661h>u z0x>7#6>)F4orj)Wl%r;Rb8IDYIg4Y|YQn?E@vRaMTLeptW{hgq$ZnR5o|ZQ8 zqrmxJ!{0ZFkD^u?W_fbfVIE6ZYpfp*$$1eZ`2-SiWbamigO9jzbYg=vi8x>ja#%PV zqin}9t?q>}YmN4`3&shMh_T$)$hKY(CqT4Bpp-b_X_m93!Gl&|u9>jdTs3FHfXP#I zA;wR^W_}DvstFnXJj`21-5>$!ZZUK>o<=zpb#zXV+mX$G1f-PV{dq3cEi15nW?5<8 zvi#6#csMUu)+Y_ylW#aC41WR1aU>^^pjW~d5n7HwCkS3~{3eif(#}wA>WNO?rytNK zilR+zA9+rWC#U3Cc}I+YGm32u-na9xVK+;)qSTB^53cdI;muHu=bQ}GvLb34KohDx zJ6P+m#wynas+?k#zXQ-Ds(j|)Jo}kA=h-q}B~~v(3 z^#I^f6)ww$3&2uI4L5KT3&C+HN#R1o3#&EWv##9bO~S?)s|8AT;@EHB{apQxu|4s_ zFRwow|6ILi$n@>m0CIS^NZ(5^*#HZdVBG&KfyDl270|Q$DY+q&9t++*b)j zM+V*O>|g49RXa;DtkTttOCNQv3%;h}uj?9xik>7dk(l0rE1U(*$XQWl$sH#+6SiHpkbv^R4@>Di0YCP@6pDA9xCv`qMm2fsNu zg8!fBDNz_b1IhwYT4VjZk%;^gj2-4Iq)zd$j9kW;+#VhO!r5>ixQ|CqZjViD7!Qn% z;)CL5{hP7Vdm0Gr5g{Kr5_IgW|Vr;(J9pt1WwavwgPLlGp1y&Zhq&13-cbgE7FKvLDt36R7Q zK@vv;)*6JbtjN0km|`*)7}LwS(k5te80mve@oH|7ONX$eCmM?g~&hFz>j@ zq7d>~Vk6i=P#f4B3U!ek$5L+E#&%J}`-11*?zWpH)M1-($0}$vJeChtry1D^ECLX^bV=?(r$nDr28GkmhMkAQz&For zF~{l}T@w0-WaZ(op(GXEaDCUaxd#e*F^Lz$hUb`b%=ALr0b9C$cujNJwZRL(!~rkF z0ZQ-k2sH8kwYwBaEIKX#rhdnzVr*j61xjVJqjy8rI&t7FV+4dTS7Fyc^D_vm-@~91 zZN1hD*DpjT(~k(;^1SP@!7DEJgoPK+;6bW)gY;c?ci+DYc6XabeYk0yDP;#br`OTJ zDI}+nh$cujVExvpHCDa;@lgGPis3R(bC%_Vb<5(2OZ*Ka`>On>$U}mtA7hKRPIfYR zO>Z9)osFtZ$;w5UnNpEsqlAsud;?lQXuLRHVQR?VQSfU=HV@gPi9dZfe%&~NKZjqF zgyZ)?HeLc<#NopRJ=NckE!|uEG6>^0Fn$}z6NOT`lUJzvtxo9VKgkP!B^Mu)i+@+f k{-U1R%NA*IhXC0%57Wsnj9mi5?(_tm+N^#{U=U9H8*9)dJpcdz literal 0 HcmV?d00001 diff --git a/venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/controller.cpython-312.pyc b/venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/controller.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..cfd60024d73f8ff230fa332fb31c8c3a3236a933 GIT binary patch literal 16165 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 QkN)2^>zcozFeDB8{}4fcYXATM literal 0 HcmV?d00001 diff --git a/venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/filewrapper.cpython-312.pyc b/venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/filewrapper.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..12d1e552d85405a5abffebf426dceded0cee9417 GIT binary patch literal 4345 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 Zs4XWYhRR^Np886vK$v None: + logger.setLevel(logging.DEBUG) + handler = logging.StreamHandler() + logger.addHandler(handler) + + +def get_session() -> requests.Session: + adapter = CacheControlAdapter( + DictCache(), cache_etags=True, serializer=None, heuristic=None + ) + sess = requests.Session() + sess.mount("http://", adapter) + sess.mount("https://", adapter) + + sess.cache_controller = adapter.controller # type: ignore[attr-defined] + return sess + + +def get_args() -> Namespace: + parser = ArgumentParser() + parser.add_argument("url", help="The URL to try and cache") + return parser.parse_args() + + +def main() -> None: + args = get_args() + sess = get_session() + + # Make a request to get a response + resp = sess.get(args.url) + + # Turn on logging + setup_logging() + + # try setting the cache + cache_controller: CacheController = ( + sess.cache_controller # type: ignore[attr-defined] + ) + cache_controller.cache_response(resp.request, resp.raw) + + # Now try to get it + if cache_controller.cached_request(resp.request): + print("Cached!") + else: + print("Not cached :(") + + +if __name__ == "__main__": + main() diff --git a/venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/adapter.py b/venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/adapter.py new file mode 100644 index 0000000..3e83e30 --- /dev/null +++ b/venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/adapter.py @@ -0,0 +1,161 @@ +# SPDX-FileCopyrightText: 2015 Eric Larson +# +# SPDX-License-Identifier: Apache-2.0 +from __future__ import annotations + +import functools +import types +import zlib +from typing import TYPE_CHECKING, Any, Collection, Mapping + +from pip._vendor.requests.adapters import HTTPAdapter + +from pip._vendor.cachecontrol.cache import DictCache +from pip._vendor.cachecontrol.controller import PERMANENT_REDIRECT_STATUSES, CacheController +from pip._vendor.cachecontrol.filewrapper import CallbackFileWrapper + +if TYPE_CHECKING: + from pip._vendor.requests import PreparedRequest, Response + from pip._vendor.urllib3 import HTTPResponse + + from pip._vendor.cachecontrol.cache import BaseCache + from pip._vendor.cachecontrol.heuristics import BaseHeuristic + from pip._vendor.cachecontrol.serialize import Serializer + + +class CacheControlAdapter(HTTPAdapter): + invalidating_methods = {"PUT", "PATCH", "DELETE"} + + def __init__( + self, + cache: BaseCache | None = None, + cache_etags: bool = True, + controller_class: type[CacheController] | None = None, + serializer: Serializer | None = None, + heuristic: BaseHeuristic | None = None, + cacheable_methods: Collection[str] | None = None, + *args: Any, + **kw: Any, + ) -> None: + super().__init__(*args, **kw) + self.cache = DictCache() if cache is None else cache + self.heuristic = heuristic + self.cacheable_methods = cacheable_methods or ("GET",) + + controller_factory = controller_class or CacheController + self.controller = controller_factory( + self.cache, cache_etags=cache_etags, serializer=serializer + ) + + def send( + self, + request: PreparedRequest, + stream: bool = False, + timeout: None | float | tuple[float, float] | tuple[float, None] = None, + verify: bool | str = True, + cert: (None | bytes | str | tuple[bytes | str, bytes | str]) = None, + proxies: Mapping[str, str] | None = None, + cacheable_methods: Collection[str] | None = None, + ) -> Response: + """ + Send a request. Use the request information to see if it + exists in the cache and cache the response if we need to and can. + """ + cacheable = cacheable_methods or self.cacheable_methods + if request.method in cacheable: + try: + cached_response = self.controller.cached_request(request) + except zlib.error: + cached_response = None + if cached_response: + return self.build_response(request, cached_response, from_cache=True) + + # check for etags and add headers if appropriate + request.headers.update(self.controller.conditional_headers(request)) + + resp = super().send(request, stream, timeout, verify, cert, proxies) + + return resp + + def build_response( + self, + request: PreparedRequest, + response: HTTPResponse, + from_cache: bool = False, + cacheable_methods: Collection[str] | None = None, + ) -> Response: + """ + Build a response by making a request or using the cache. + + This will end up calling send and returning a potentially + cached response + """ + cacheable = cacheable_methods or self.cacheable_methods + if not from_cache and request.method in cacheable: + # Check for any heuristics that might update headers + # before trying to cache. + if self.heuristic: + response = self.heuristic.apply(response) + + # apply any expiration heuristics + if response.status == 304: + # We must have sent an ETag request. This could mean + # that we've been expired already or that we simply + # have an etag. In either case, we want to try and + # update the cache if that is the case. + cached_response = self.controller.update_cached_response( + request, response + ) + + if cached_response is not response: + from_cache = True + + # We are done with the server response, read a + # possible response body (compliant servers will + # not return one, but we cannot be 100% sure) and + # release the connection back to the pool. + response.read(decode_content=False) + response.release_conn() + + response = cached_response + + # We always cache the 301 responses + elif int(response.status) in PERMANENT_REDIRECT_STATUSES: + self.controller.cache_response(request, response) + else: + # Wrap the response file with a wrapper that will cache the + # response when the stream has been consumed. + response._fp = CallbackFileWrapper( # type: ignore[attr-defined] + response._fp, # type: ignore[attr-defined] + functools.partial( + self.controller.cache_response, request, response + ), + ) + if response.chunked: + super_update_chunk_length = response._update_chunk_length # type: ignore[attr-defined] + + def _update_chunk_length(self: HTTPResponse) -> None: + super_update_chunk_length() + if self.chunk_left == 0: + self._fp._close() # type: ignore[attr-defined] + + response._update_chunk_length = types.MethodType( # type: ignore[attr-defined] + _update_chunk_length, response + ) + + resp: Response = super().build_response(request, response) # type: ignore[no-untyped-call] + + # See if we should invalidate the cache. + if request.method in self.invalidating_methods and resp.ok: + assert request.url is not None + cache_url = self.controller.cache_url(request.url) + self.cache.delete(cache_url) + + # Give the request a from_cache attr to let people use it + resp.from_cache = from_cache # type: ignore[attr-defined] + + return resp + + def close(self) -> None: + self.cache.close() + super().close() # type: ignore[no-untyped-call] diff --git a/venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/cache.py b/venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/cache.py new file mode 100644 index 0000000..3293b00 --- /dev/null +++ b/venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/cache.py @@ -0,0 +1,74 @@ +# SPDX-FileCopyrightText: 2015 Eric Larson +# +# SPDX-License-Identifier: Apache-2.0 + +""" +The cache object API for implementing caches. The default is a thread +safe in-memory dictionary. +""" +from __future__ import annotations + +from threading import Lock +from typing import IO, TYPE_CHECKING, MutableMapping + +if TYPE_CHECKING: + from datetime import datetime + + +class BaseCache: + def get(self, key: str) -> bytes | None: + raise NotImplementedError() + + def set( + self, key: str, value: bytes, expires: int | datetime | None = None + ) -> None: + raise NotImplementedError() + + def delete(self, key: str) -> None: + raise NotImplementedError() + + def close(self) -> None: + pass + + +class DictCache(BaseCache): + def __init__(self, init_dict: MutableMapping[str, bytes] | None = None) -> None: + self.lock = Lock() + self.data = init_dict or {} + + def get(self, key: str) -> bytes | None: + return self.data.get(key, None) + + def set( + self, key: str, value: bytes, expires: int | datetime | None = None + ) -> None: + with self.lock: + self.data.update({key: value}) + + def delete(self, key: str) -> None: + with self.lock: + if key in self.data: + self.data.pop(key) + + +class SeparateBodyBaseCache(BaseCache): + """ + In this variant, the body is not stored mixed in with the metadata, but is + passed in (as a bytes-like object) in a separate call to ``set_body()``. + + That is, the expected interaction pattern is:: + + cache.set(key, serialized_metadata) + cache.set_body(key) + + Similarly, the body should be loaded separately via ``get_body()``. + """ + + def set_body(self, key: str, body: bytes) -> None: + raise NotImplementedError() + + def get_body(self, key: str) -> IO[bytes] | None: + """ + Return the body as file-like object. + """ + raise NotImplementedError() diff --git a/venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/caches/__init__.py b/venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/caches/__init__.py new file mode 100644 index 0000000..24ff469 --- /dev/null +++ b/venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/caches/__init__.py @@ -0,0 +1,8 @@ +# SPDX-FileCopyrightText: 2015 Eric Larson +# +# SPDX-License-Identifier: Apache-2.0 + +from pip._vendor.cachecontrol.caches.file_cache import FileCache, SeparateBodyFileCache +from pip._vendor.cachecontrol.caches.redis_cache import RedisCache + +__all__ = ["FileCache", "SeparateBodyFileCache", "RedisCache"] diff --git a/venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/__init__.cpython-312.pyc b/venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..c1d00961b33d0bc8c43608a56aa19b89f4fdc9e1 GIT binary patch literal 433 zcmaixy-ve06oq}0ltM%)iWv49nI0Ev+S7L>&@v1trWY}sx_MxKJ5jc4Hrh{OUD z8&U_PPS|bv*|@{iJ+_a(Bi*OLAVt2ONA4N}LT^EQSF{|aTYk7l3^9iCgj?ay%rU3$iuu=7V*Y+`RT zNoYOaPP3J6TMM0&32&G(c^UpHRpX433t{ss&mi-QUw60jpUVX5(iTu%pAae~A&+S4 zC7M;ZQZ>hVTwz;|83|N=>j>2X`!o|Q#U<9Qt5kE4@9kqN9N*QnyrCm*vB%?OX#6+y wLRd_QXoMpq*X?ZeuvTm=`OvI;uwMbP8@_$S0PvY2xPTXQ^qLOu`X+4Z3*Z5N82|tP literal 0 HcmV?d00001 diff --git a/venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/file_cache.cpython-312.pyc b/venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/file_cache.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..855de8f49a63482da6bc745d8d49263ea11e13cc GIT binary patch literal 7708 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 b*9b6cU7g%Ob?m|Zku?I`+Die>O{f14=V(@l literal 0 HcmV?d00001 diff --git a/venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/redis_cache.cpython-312.pyc b/venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/redis_cache.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..3cfc70696b0ca30d58eebf34b6163ea2528b8bfc GIT binary patch literal 2736 zcmbVO-ES0C6uC+*zFpj&*N7S3UI`%B&aXvw=}SPn}Vggnb{+>H5>l z*>SH#v*pTo)-O~n0~iB35g2CK&R(JJm8@f5%9g9axaYo+Ir@6mw*z{(Y!)t?W7N-< z?Q+%tHp^q#0wROQndd|kKg$p#gYRU@)lfAI+qDD3sCBPelW8w*LA4SkrXnvkB4Mu5^;}A+?G`J(O&9D?omua;H z4C{mi)(xb#d5x~X+yiU=HXxv8XZLJ%raC)0Gub%5*g0@l9bjlht{?+#w>S*A&R>HD zptI!fei^;%;(W{B0;!Uql`sVE31V##Z4UNDfYNv?s_oHgAMixPc@Z(#(Ao%1%5|xT zfNW?}TkCQW?c2~S^5Zjf@oZhLft*R@KdeMhH?+DCAfmk0m119eyxPyVhHV`Im6n$g zm6wqO`mH;g7BNF&LCtnYy|mVf3ZDjHhwa<0ADC`|GIVGtx!zTV4hW@6P++KL7-zKX zm<1XtaD+~TlI;dzGJx{p7(V8M<)>pjycn7oDpyRWLc=(nDBFzsVI1x>;I>e)s1ukz z`c&sF3c-GuuM0sCgM$58AXDT~jCA!aYhAM=Gb6KSXU;bEH!4e7>VC4X5x?F4Yx3az z-aT{9P3QLD_b0wPvDka$`tWjR@9ediYj-psi%=$-0{|p_;SzA#@Iqn z>iX&Sjpt_0HHL0?-@0%wHMo!(TudEb9C+vF3rpJ2!OPxEx0fWgbC+z!!G z=>>ge@oxFK+v3vjDL`dwrKGcepd)lrA zZCB&`k~Z*2f{o{qMPoU#2=QEG<-1&-Uh%1~<0C~2sIp%6JO}JOq`RK(Qflde2OxN0 zAzHu6n91FN2c4&vk51HiB%m?CyTKS($pDLw4wxbjRgG(ymN_;xjVto$rD{O^i(!n> zpu*fx&f(919Hp-02aFwp(>0B=>2)2qqu^9I4?_t|2NEirhYcYAHYf_f-Tu#LAH=)Z zVIVCD(dpGykxPp>68L($W{Da`*kKqY&#E{$)(qqGis?i!SHS4s&BCAsd^$p<|KO?STH2~SAncZf*?FmiLn2l7!eLUAo`!= X&EKW22lCFxF literal 0 HcmV?d00001 diff --git a/venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/caches/file_cache.py b/venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/caches/file_cache.py new file mode 100644 index 0000000..1fd2801 --- /dev/null +++ b/venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/caches/file_cache.py @@ -0,0 +1,181 @@ +# SPDX-FileCopyrightText: 2015 Eric Larson +# +# SPDX-License-Identifier: Apache-2.0 +from __future__ import annotations + +import hashlib +import os +from textwrap import dedent +from typing import IO, TYPE_CHECKING + +from pip._vendor.cachecontrol.cache import BaseCache, SeparateBodyBaseCache +from pip._vendor.cachecontrol.controller import CacheController + +if TYPE_CHECKING: + from datetime import datetime + + from filelock import BaseFileLock + + +def _secure_open_write(filename: str, fmode: int) -> IO[bytes]: + # We only want to write to this file, so open it in write only mode + flags = os.O_WRONLY + + # os.O_CREAT | os.O_EXCL will fail if the file already exists, so we only + # will open *new* files. + # We specify this because we want to ensure that the mode we pass is the + # mode of the file. + flags |= os.O_CREAT | os.O_EXCL + + # Do not follow symlinks to prevent someone from making a symlink that + # we follow and insecurely open a cache file. + if hasattr(os, "O_NOFOLLOW"): + flags |= os.O_NOFOLLOW + + # On Windows we'll mark this file as binary + if hasattr(os, "O_BINARY"): + flags |= os.O_BINARY + + # Before we open our file, we want to delete any existing file that is + # there + try: + os.remove(filename) + except OSError: + # The file must not exist already, so we can just skip ahead to opening + pass + + # Open our file, the use of os.O_CREAT | os.O_EXCL will ensure that if a + # race condition happens between the os.remove and this line, that an + # error will be raised. Because we utilize a lockfile this should only + # happen if someone is attempting to attack us. + fd = os.open(filename, flags, fmode) + try: + return os.fdopen(fd, "wb") + + except: + # An error occurred wrapping our FD in a file object + os.close(fd) + raise + + +class _FileCacheMixin: + """Shared implementation for both FileCache variants.""" + + def __init__( + self, + directory: str, + forever: bool = False, + filemode: int = 0o0600, + dirmode: int = 0o0700, + lock_class: type[BaseFileLock] | None = None, + ) -> None: + try: + if lock_class is None: + from filelock import FileLock + + lock_class = FileLock + except ImportError: + notice = dedent( + """ + NOTE: In order to use the FileCache you must have + filelock installed. You can install it via pip: + pip install filelock + """ + ) + raise ImportError(notice) + + self.directory = directory + self.forever = forever + self.filemode = filemode + self.dirmode = dirmode + self.lock_class = lock_class + + @staticmethod + def encode(x: str) -> str: + return hashlib.sha224(x.encode()).hexdigest() + + def _fn(self, name: str) -> str: + # NOTE: This method should not change as some may depend on it. + # See: https://github.com/ionrock/cachecontrol/issues/63 + hashed = self.encode(name) + parts = list(hashed[:5]) + [hashed] + return os.path.join(self.directory, *parts) + + def get(self, key: str) -> bytes | None: + name = self._fn(key) + try: + with open(name, "rb") as fh: + return fh.read() + + except FileNotFoundError: + return None + + def set( + self, key: str, value: bytes, expires: int | datetime | None = None + ) -> None: + name = self._fn(key) + self._write(name, value) + + def _write(self, path: str, data: bytes) -> None: + """ + Safely write the data to the given path. + """ + # Make sure the directory exists + try: + os.makedirs(os.path.dirname(path), self.dirmode) + except OSError: + pass + + with self.lock_class(path + ".lock"): + # Write our actual file + with _secure_open_write(path, self.filemode) as fh: + fh.write(data) + + def _delete(self, key: str, suffix: str) -> None: + name = self._fn(key) + suffix + if not self.forever: + try: + os.remove(name) + except FileNotFoundError: + pass + + +class FileCache(_FileCacheMixin, BaseCache): + """ + Traditional FileCache: body is stored in memory, so not suitable for large + downloads. + """ + + def delete(self, key: str) -> None: + self._delete(key, "") + + +class SeparateBodyFileCache(_FileCacheMixin, SeparateBodyBaseCache): + """ + Memory-efficient FileCache: body is stored in a separate file, reducing + peak memory usage. + """ + + def get_body(self, key: str) -> IO[bytes] | None: + name = self._fn(key) + ".body" + try: + return open(name, "rb") + except FileNotFoundError: + return None + + def set_body(self, key: str, body: bytes) -> None: + name = self._fn(key) + ".body" + self._write(name, body) + + def delete(self, key: str) -> None: + self._delete(key, "") + self._delete(key, ".body") + + +def url_to_file_path(url: str, filecache: FileCache) -> str: + """Return the file cache path based on the URL. + + This does not ensure the file exists! + """ + key = CacheController.cache_url(url) + return filecache._fn(key) diff --git a/venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/caches/redis_cache.py b/venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/caches/redis_cache.py new file mode 100644 index 0000000..f4f68c4 --- /dev/null +++ b/venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/caches/redis_cache.py @@ -0,0 +1,48 @@ +# SPDX-FileCopyrightText: 2015 Eric Larson +# +# SPDX-License-Identifier: Apache-2.0 +from __future__ import annotations + + +from datetime import datetime, timezone +from typing import TYPE_CHECKING + +from pip._vendor.cachecontrol.cache import BaseCache + +if TYPE_CHECKING: + from redis import Redis + + +class RedisCache(BaseCache): + def __init__(self, conn: Redis[bytes]) -> None: + self.conn = conn + + def get(self, key: str) -> bytes | None: + return self.conn.get(key) + + def set( + self, key: str, value: bytes, expires: int | datetime | None = None + ) -> None: + if not expires: + self.conn.set(key, value) + elif isinstance(expires, datetime): + now_utc = datetime.now(timezone.utc) + if expires.tzinfo is None: + now_utc = now_utc.replace(tzinfo=None) + delta = expires - now_utc + self.conn.setex(key, int(delta.total_seconds()), value) + else: + self.conn.setex(key, expires, value) + + def delete(self, key: str) -> None: + self.conn.delete(key) + + def clear(self) -> None: + """Helper for clearing all the keys in a database. Use with + caution!""" + for key in self.conn.keys(): + self.conn.delete(key) + + def close(self) -> None: + """Redis uses connection pooling, no need to close the connection.""" + pass diff --git a/venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/controller.py b/venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/controller.py new file mode 100644 index 0000000..586b9f9 --- /dev/null +++ b/venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/controller.py @@ -0,0 +1,494 @@ +# SPDX-FileCopyrightText: 2015 Eric Larson +# +# SPDX-License-Identifier: Apache-2.0 + +""" +The httplib2 algorithms ported for use with requests. +""" +from __future__ import annotations + +import calendar +import logging +import re +import time +from email.utils import parsedate_tz +from typing import TYPE_CHECKING, Collection, Mapping + +from pip._vendor.requests.structures import CaseInsensitiveDict + +from pip._vendor.cachecontrol.cache import DictCache, SeparateBodyBaseCache +from pip._vendor.cachecontrol.serialize import Serializer + +if TYPE_CHECKING: + from typing import Literal + + from pip._vendor.requests import PreparedRequest + from pip._vendor.urllib3 import HTTPResponse + + from pip._vendor.cachecontrol.cache import BaseCache + +logger = logging.getLogger(__name__) + +URI = re.compile(r"^(([^:/?#]+):)?(//([^/?#]*))?([^?#]*)(\?([^#]*))?(#(.*))?") + +PERMANENT_REDIRECT_STATUSES = (301, 308) + + +def parse_uri(uri: str) -> tuple[str, str, str, str, str]: + """Parses a URI using the regex given in Appendix B of RFC 3986. + + (scheme, authority, path, query, fragment) = parse_uri(uri) + """ + match = URI.match(uri) + assert match is not None + groups = match.groups() + return (groups[1], groups[3], groups[4], groups[6], groups[8]) + + +class CacheController: + """An interface to see if request should cached or not.""" + + def __init__( + self, + cache: BaseCache | None = None, + cache_etags: bool = True, + serializer: Serializer | None = None, + status_codes: Collection[int] | None = None, + ): + self.cache = DictCache() if cache is None else cache + self.cache_etags = cache_etags + self.serializer = serializer or Serializer() + self.cacheable_status_codes = status_codes or (200, 203, 300, 301, 308) + + @classmethod + def _urlnorm(cls, uri: str) -> str: + """Normalize the URL to create a safe key for the cache""" + (scheme, authority, path, query, fragment) = parse_uri(uri) + if not scheme or not authority: + raise Exception("Only absolute URIs are allowed. uri = %s" % uri) + + scheme = scheme.lower() + authority = authority.lower() + + if not path: + path = "/" + + # Could do syntax based normalization of the URI before + # computing the digest. See Section 6.2.2 of Std 66. + request_uri = query and "?".join([path, query]) or path + defrag_uri = scheme + "://" + authority + request_uri + + return defrag_uri + + @classmethod + def cache_url(cls, uri: str) -> str: + return cls._urlnorm(uri) + + def parse_cache_control(self, headers: Mapping[str, str]) -> dict[str, int | None]: + known_directives = { + # https://tools.ietf.org/html/rfc7234#section-5.2 + "max-age": (int, True), + "max-stale": (int, False), + "min-fresh": (int, True), + "no-cache": (None, False), + "no-store": (None, False), + "no-transform": (None, False), + "only-if-cached": (None, False), + "must-revalidate": (None, False), + "public": (None, False), + "private": (None, False), + "proxy-revalidate": (None, False), + "s-maxage": (int, True), + } + + cc_headers = headers.get("cache-control", headers.get("Cache-Control", "")) + + retval: dict[str, int | None] = {} + + for cc_directive in cc_headers.split(","): + if not cc_directive.strip(): + continue + + parts = cc_directive.split("=", 1) + directive = parts[0].strip() + + try: + typ, required = known_directives[directive] + except KeyError: + logger.debug("Ignoring unknown cache-control directive: %s", directive) + continue + + if not typ or not required: + retval[directive] = None + if typ: + try: + retval[directive] = typ(parts[1].strip()) + except IndexError: + if required: + logger.debug( + "Missing value for cache-control " "directive: %s", + directive, + ) + except ValueError: + logger.debug( + "Invalid value for cache-control directive " "%s, must be %s", + directive, + typ.__name__, + ) + + return retval + + def _load_from_cache(self, request: PreparedRequest) -> HTTPResponse | None: + """ + Load a cached response, or return None if it's not available. + """ + cache_url = request.url + assert cache_url is not None + cache_data = self.cache.get(cache_url) + if cache_data is None: + logger.debug("No cache entry available") + return None + + if isinstance(self.cache, SeparateBodyBaseCache): + body_file = self.cache.get_body(cache_url) + else: + body_file = None + + result = self.serializer.loads(request, cache_data, body_file) + if result is None: + logger.warning("Cache entry deserialization failed, entry ignored") + return result + + def cached_request(self, request: PreparedRequest) -> HTTPResponse | Literal[False]: + """ + Return a cached response if it exists in the cache, otherwise + return False. + """ + assert request.url is not None + cache_url = self.cache_url(request.url) + logger.debug('Looking up "%s" in the cache', cache_url) + cc = self.parse_cache_control(request.headers) + + # Bail out if the request insists on fresh data + if "no-cache" in cc: + logger.debug('Request header has "no-cache", cache bypassed') + return False + + if "max-age" in cc and cc["max-age"] == 0: + logger.debug('Request header has "max_age" as 0, cache bypassed') + return False + + # Check whether we can load the response from the cache: + resp = self._load_from_cache(request) + if not resp: + return False + + # If we have a cached permanent redirect, return it immediately. We + # don't need to test our response for other headers b/c it is + # intrinsically "cacheable" as it is Permanent. + # + # See: + # https://tools.ietf.org/html/rfc7231#section-6.4.2 + # + # Client can try to refresh the value by repeating the request + # with cache busting headers as usual (ie no-cache). + if int(resp.status) in PERMANENT_REDIRECT_STATUSES: + msg = ( + "Returning cached permanent redirect response " + "(ignoring date and etag information)" + ) + logger.debug(msg) + return resp + + headers: CaseInsensitiveDict[str] = CaseInsensitiveDict(resp.headers) + if not headers or "date" not in headers: + if "etag" not in headers: + # Without date or etag, the cached response can never be used + # and should be deleted. + logger.debug("Purging cached response: no date or etag") + self.cache.delete(cache_url) + logger.debug("Ignoring cached response: no date") + return False + + now = time.time() + time_tuple = parsedate_tz(headers["date"]) + assert time_tuple is not None + date = calendar.timegm(time_tuple[:6]) + current_age = max(0, now - date) + logger.debug("Current age based on date: %i", current_age) + + # TODO: There is an assumption that the result will be a + # urllib3 response object. This may not be best since we + # could probably avoid instantiating or constructing the + # response until we know we need it. + resp_cc = self.parse_cache_control(headers) + + # determine freshness + freshness_lifetime = 0 + + # Check the max-age pragma in the cache control header + max_age = resp_cc.get("max-age") + if max_age is not None: + freshness_lifetime = max_age + logger.debug("Freshness lifetime from max-age: %i", freshness_lifetime) + + # If there isn't a max-age, check for an expires header + elif "expires" in headers: + expires = parsedate_tz(headers["expires"]) + if expires is not None: + expire_time = calendar.timegm(expires[:6]) - date + freshness_lifetime = max(0, expire_time) + logger.debug("Freshness lifetime from expires: %i", freshness_lifetime) + + # Determine if we are setting freshness limit in the + # request. Note, this overrides what was in the response. + max_age = cc.get("max-age") + if max_age is not None: + freshness_lifetime = max_age + logger.debug( + "Freshness lifetime from request max-age: %i", freshness_lifetime + ) + + min_fresh = cc.get("min-fresh") + if min_fresh is not None: + # adjust our current age by our min fresh + current_age += min_fresh + logger.debug("Adjusted current age from min-fresh: %i", current_age) + + # Return entry if it is fresh enough + if freshness_lifetime > current_age: + logger.debug('The response is "fresh", returning cached response') + logger.debug("%i > %i", freshness_lifetime, current_age) + return resp + + # we're not fresh. If we don't have an Etag, clear it out + if "etag" not in headers: + logger.debug('The cached response is "stale" with no etag, purging') + self.cache.delete(cache_url) + + # return the original handler + return False + + def conditional_headers(self, request: PreparedRequest) -> dict[str, str]: + resp = self._load_from_cache(request) + new_headers = {} + + if resp: + headers: CaseInsensitiveDict[str] = CaseInsensitiveDict(resp.headers) + + if "etag" in headers: + new_headers["If-None-Match"] = headers["ETag"] + + if "last-modified" in headers: + new_headers["If-Modified-Since"] = headers["Last-Modified"] + + return new_headers + + def _cache_set( + self, + cache_url: str, + request: PreparedRequest, + response: HTTPResponse, + body: bytes | None = None, + expires_time: int | None = None, + ) -> None: + """ + Store the data in the cache. + """ + if isinstance(self.cache, SeparateBodyBaseCache): + # We pass in the body separately; just put a placeholder empty + # string in the metadata. + self.cache.set( + cache_url, + self.serializer.dumps(request, response, b""), + expires=expires_time, + ) + # body is None can happen when, for example, we're only updating + # headers, as is the case in update_cached_response(). + if body is not None: + self.cache.set_body(cache_url, body) + else: + self.cache.set( + cache_url, + self.serializer.dumps(request, response, body), + expires=expires_time, + ) + + def cache_response( + self, + request: PreparedRequest, + response: HTTPResponse, + body: bytes | None = None, + status_codes: Collection[int] | None = None, + ) -> None: + """ + Algorithm for caching requests. + + This assumes a requests Response object. + """ + # From httplib2: Don't cache 206's since we aren't going to + # handle byte range requests + cacheable_status_codes = status_codes or self.cacheable_status_codes + if response.status not in cacheable_status_codes: + logger.debug( + "Status code %s not in %s", response.status, cacheable_status_codes + ) + return + + response_headers: CaseInsensitiveDict[str] = CaseInsensitiveDict( + response.headers + ) + + if "date" in response_headers: + time_tuple = parsedate_tz(response_headers["date"]) + assert time_tuple is not None + date = calendar.timegm(time_tuple[:6]) + else: + date = 0 + + # If we've been given a body, our response has a Content-Length, that + # Content-Length is valid then we can check to see if the body we've + # been given matches the expected size, and if it doesn't we'll just + # skip trying to cache it. + if ( + body is not None + and "content-length" in response_headers + and response_headers["content-length"].isdigit() + and int(response_headers["content-length"]) != len(body) + ): + return + + cc_req = self.parse_cache_control(request.headers) + cc = self.parse_cache_control(response_headers) + + assert request.url is not None + cache_url = self.cache_url(request.url) + logger.debug('Updating cache with response from "%s"', cache_url) + + # Delete it from the cache if we happen to have it stored there + no_store = False + if "no-store" in cc: + no_store = True + logger.debug('Response header has "no-store"') + if "no-store" in cc_req: + no_store = True + logger.debug('Request header has "no-store"') + if no_store and self.cache.get(cache_url): + logger.debug('Purging existing cache entry to honor "no-store"') + self.cache.delete(cache_url) + if no_store: + return + + # https://tools.ietf.org/html/rfc7234#section-4.1: + # A Vary header field-value of "*" always fails to match. + # Storing such a response leads to a deserialization warning + # during cache lookup and is not allowed to ever be served, + # so storing it can be avoided. + if "*" in response_headers.get("vary", ""): + logger.debug('Response header has "Vary: *"') + return + + # If we've been given an etag, then keep the response + if self.cache_etags and "etag" in response_headers: + expires_time = 0 + if response_headers.get("expires"): + expires = parsedate_tz(response_headers["expires"]) + if expires is not None: + expires_time = calendar.timegm(expires[:6]) - date + + expires_time = max(expires_time, 14 * 86400) + + logger.debug(f"etag object cached for {expires_time} seconds") + logger.debug("Caching due to etag") + self._cache_set(cache_url, request, response, body, expires_time) + + # Add to the cache any permanent redirects. We do this before looking + # that the Date headers. + elif int(response.status) in PERMANENT_REDIRECT_STATUSES: + logger.debug("Caching permanent redirect") + self._cache_set(cache_url, request, response, b"") + + # Add to the cache if the response headers demand it. If there + # is no date header then we can't do anything about expiring + # the cache. + elif "date" in response_headers: + time_tuple = parsedate_tz(response_headers["date"]) + assert time_tuple is not None + date = calendar.timegm(time_tuple[:6]) + # cache when there is a max-age > 0 + max_age = cc.get("max-age") + if max_age is not None and max_age > 0: + logger.debug("Caching b/c date exists and max-age > 0") + expires_time = max_age + self._cache_set( + cache_url, + request, + response, + body, + expires_time, + ) + + # If the request can expire, it means we should cache it + # in the meantime. + elif "expires" in response_headers: + if response_headers["expires"]: + expires = parsedate_tz(response_headers["expires"]) + if expires is not None: + expires_time = calendar.timegm(expires[:6]) - date + else: + expires_time = None + + logger.debug( + "Caching b/c of expires header. expires in {} seconds".format( + expires_time + ) + ) + self._cache_set( + cache_url, + request, + response, + body, + expires_time, + ) + + def update_cached_response( + self, request: PreparedRequest, response: HTTPResponse + ) -> HTTPResponse: + """On a 304 we will get a new set of headers that we want to + update our cached value with, assuming we have one. + + This should only ever be called when we've sent an ETag and + gotten a 304 as the response. + """ + assert request.url is not None + cache_url = self.cache_url(request.url) + cached_response = self._load_from_cache(request) + + if not cached_response: + # we didn't have a cached response + return response + + # Lets update our headers with the headers from the new request: + # http://tools.ietf.org/html/draft-ietf-httpbis-p4-conditional-26#section-4.1 + # + # The server isn't supposed to send headers that would make + # the cached body invalid. But... just in case, we'll be sure + # to strip out ones we know that might be problmatic due to + # typical assumptions. + excluded_headers = ["content-length"] + + cached_response.headers.update( + { + k: v + for k, v in response.headers.items() # type: ignore[no-untyped-call] + if k.lower() not in excluded_headers + } + ) + + # we want a 200 b/c we have content via the cache + cached_response.status = 200 + + # update our cache + self._cache_set(cache_url, request, cached_response) + + return cached_response diff --git a/venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/filewrapper.py b/venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/filewrapper.py new file mode 100644 index 0000000..2514390 --- /dev/null +++ b/venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/filewrapper.py @@ -0,0 +1,119 @@ +# SPDX-FileCopyrightText: 2015 Eric Larson +# +# SPDX-License-Identifier: Apache-2.0 +from __future__ import annotations + +import mmap +from tempfile import NamedTemporaryFile +from typing import TYPE_CHECKING, Any, Callable + +if TYPE_CHECKING: + from http.client import HTTPResponse + + +class CallbackFileWrapper: + """ + Small wrapper around a fp object which will tee everything read into a + buffer, and when that file is closed it will execute a callback with the + contents of that buffer. + + All attributes are proxied to the underlying file object. + + This class uses members with a double underscore (__) leading prefix so as + not to accidentally shadow an attribute. + + The data is stored in a temporary file until it is all available. As long + as the temporary files directory is disk-based (sometimes it's a + memory-backed-``tmpfs`` on Linux), data will be unloaded to disk if memory + pressure is high. For small files the disk usually won't be used at all, + it'll all be in the filesystem memory cache, so there should be no + performance impact. + """ + + def __init__( + self, fp: HTTPResponse, callback: Callable[[bytes], None] | None + ) -> None: + self.__buf = NamedTemporaryFile("rb+", delete=True) + self.__fp = fp + self.__callback = callback + + def __getattr__(self, name: str) -> Any: + # The vaguaries of garbage collection means that self.__fp is + # not always set. By using __getattribute__ and the private + # name[0] allows looking up the attribute value and raising an + # AttributeError when it doesn't exist. This stop thigns from + # infinitely recursing calls to getattr in the case where + # self.__fp hasn't been set. + # + # [0] https://docs.python.org/2/reference/expressions.html#atom-identifiers + fp = self.__getattribute__("_CallbackFileWrapper__fp") + return getattr(fp, name) + + def __is_fp_closed(self) -> bool: + try: + return self.__fp.fp is None + + except AttributeError: + pass + + try: + closed: bool = self.__fp.closed + return closed + + except AttributeError: + pass + + # We just don't cache it then. + # TODO: Add some logging here... + return False + + def _close(self) -> None: + if self.__callback: + if self.__buf.tell() == 0: + # Empty file: + result = b"" + else: + # Return the data without actually loading it into memory, + # relying on Python's buffer API and mmap(). mmap() just gives + # a view directly into the filesystem's memory cache, so it + # doesn't result in duplicate memory use. + self.__buf.seek(0, 0) + result = memoryview( + mmap.mmap(self.__buf.fileno(), 0, access=mmap.ACCESS_READ) + ) + self.__callback(result) + + # We assign this to None here, because otherwise we can get into + # really tricky problems where the CPython interpreter dead locks + # because the callback is holding a reference to something which + # has a __del__ method. Setting this to None breaks the cycle + # and allows the garbage collector to do it's thing normally. + self.__callback = None + + # Closing the temporary file releases memory and frees disk space. + # Important when caching big files. + self.__buf.close() + + def read(self, amt: int | None = None) -> bytes: + data: bytes = self.__fp.read(amt) + if data: + # We may be dealing with b'', a sign that things are over: + # it's passed e.g. after we've already closed self.__buf. + self.__buf.write(data) + if self.__is_fp_closed(): + self._close() + + return data + + def _safe_read(self, amt: int) -> bytes: + data: bytes = self.__fp._safe_read(amt) # type: ignore[attr-defined] + if amt == 2 and data == b"\r\n": + # urllib executes this read to toss the CRLF at the end + # of the chunk. + return data + + self.__buf.write(data) + if self.__is_fp_closed(): + self._close() + + return data diff --git a/venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/heuristics.py b/venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/heuristics.py new file mode 100644 index 0000000..b9d72ca --- /dev/null +++ b/venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/heuristics.py @@ -0,0 +1,154 @@ +# SPDX-FileCopyrightText: 2015 Eric Larson +# +# SPDX-License-Identifier: Apache-2.0 +from __future__ import annotations + +import calendar +import time +from datetime import datetime, timedelta, timezone +from email.utils import formatdate, parsedate, parsedate_tz +from typing import TYPE_CHECKING, Any, Mapping + +if TYPE_CHECKING: + from pip._vendor.urllib3 import HTTPResponse + +TIME_FMT = "%a, %d %b %Y %H:%M:%S GMT" + + +def expire_after(delta: timedelta, date: datetime | None = None) -> datetime: + date = date or datetime.now(timezone.utc) + return date + delta + + +def datetime_to_header(dt: datetime) -> str: + return formatdate(calendar.timegm(dt.timetuple())) + + +class BaseHeuristic: + def warning(self, response: HTTPResponse) -> str | None: + """ + Return a valid 1xx warning header value describing the cache + adjustments. + + The response is provided too allow warnings like 113 + http://tools.ietf.org/html/rfc7234#section-5.5.4 where we need + to explicitly say response is over 24 hours old. + """ + return '110 - "Response is Stale"' + + def update_headers(self, response: HTTPResponse) -> dict[str, str]: + """Update the response headers with any new headers. + + NOTE: This SHOULD always include some Warning header to + signify that the response was cached by the client, not + by way of the provided headers. + """ + return {} + + def apply(self, response: HTTPResponse) -> HTTPResponse: + updated_headers = self.update_headers(response) + + if updated_headers: + response.headers.update(updated_headers) + warning_header_value = self.warning(response) + if warning_header_value is not None: + response.headers.update({"Warning": warning_header_value}) + + return response + + +class OneDayCache(BaseHeuristic): + """ + Cache the response by providing an expires 1 day in the + future. + """ + + def update_headers(self, response: HTTPResponse) -> dict[str, str]: + headers = {} + + if "expires" not in response.headers: + date = parsedate(response.headers["date"]) + expires = expire_after(timedelta(days=1), date=datetime(*date[:6], tzinfo=timezone.utc)) # type: ignore[misc] + headers["expires"] = datetime_to_header(expires) + headers["cache-control"] = "public" + return headers + + +class ExpiresAfter(BaseHeuristic): + """ + Cache **all** requests for a defined time period. + """ + + def __init__(self, **kw: Any) -> None: + self.delta = timedelta(**kw) + + def update_headers(self, response: HTTPResponse) -> dict[str, str]: + expires = expire_after(self.delta) + return {"expires": datetime_to_header(expires), "cache-control": "public"} + + def warning(self, response: HTTPResponse) -> str | None: + tmpl = "110 - Automatically cached for %s. Response might be stale" + return tmpl % self.delta + + +class LastModified(BaseHeuristic): + """ + If there is no Expires header already, fall back on Last-Modified + using the heuristic from + http://tools.ietf.org/html/rfc7234#section-4.2.2 + to calculate a reasonable value. + + Firefox also does something like this per + https://developer.mozilla.org/en-US/docs/Web/HTTP/Caching_FAQ + http://lxr.mozilla.org/mozilla-release/source/netwerk/protocol/http/nsHttpResponseHead.cpp#397 + Unlike mozilla we limit this to 24-hr. + """ + + cacheable_by_default_statuses = { + 200, + 203, + 204, + 206, + 300, + 301, + 404, + 405, + 410, + 414, + 501, + } + + def update_headers(self, resp: HTTPResponse) -> dict[str, str]: + headers: Mapping[str, str] = resp.headers + + if "expires" in headers: + return {} + + if "cache-control" in headers and headers["cache-control"] != "public": + return {} + + if resp.status not in self.cacheable_by_default_statuses: + return {} + + if "date" not in headers or "last-modified" not in headers: + return {} + + time_tuple = parsedate_tz(headers["date"]) + assert time_tuple is not None + date = calendar.timegm(time_tuple[:6]) + last_modified = parsedate(headers["last-modified"]) + if last_modified is None: + return {} + + now = time.time() + current_age = max(0, now - date) + delta = date - calendar.timegm(last_modified) + freshness_lifetime = max(0, min(delta / 10, 24 * 3600)) + if freshness_lifetime <= current_age: + return {} + + expires = date + freshness_lifetime + return {"expires": time.strftime(TIME_FMT, time.gmtime(expires))} + + def warning(self, resp: HTTPResponse) -> str | None: + return None diff --git a/venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/serialize.py b/venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/serialize.py new file mode 100644 index 0000000..f9e967c --- /dev/null +++ b/venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/serialize.py @@ -0,0 +1,206 @@ +# SPDX-FileCopyrightText: 2015 Eric Larson +# +# SPDX-License-Identifier: Apache-2.0 +from __future__ import annotations + +import io +from typing import IO, TYPE_CHECKING, Any, Mapping, cast + +from pip._vendor import msgpack +from pip._vendor.requests.structures import CaseInsensitiveDict +from pip._vendor.urllib3 import HTTPResponse + +if TYPE_CHECKING: + from pip._vendor.requests import PreparedRequest + + +class Serializer: + serde_version = "4" + + def dumps( + self, + request: PreparedRequest, + response: HTTPResponse, + body: bytes | None = None, + ) -> bytes: + response_headers: CaseInsensitiveDict[str] = CaseInsensitiveDict( + response.headers + ) + + if body is None: + # When a body isn't passed in, we'll read the response. We + # also update the response with a new file handler to be + # sure it acts as though it was never read. + body = response.read(decode_content=False) + response._fp = io.BytesIO(body) # type: ignore[attr-defined] + response.length_remaining = len(body) + + data = { + "response": { + "body": body, # Empty bytestring if body is stored separately + "headers": {str(k): str(v) for k, v in response.headers.items()}, # type: ignore[no-untyped-call] + "status": response.status, + "version": response.version, + "reason": str(response.reason), + "decode_content": response.decode_content, + } + } + + # Construct our vary headers + data["vary"] = {} + if "vary" in response_headers: + varied_headers = response_headers["vary"].split(",") + for header in varied_headers: + header = str(header).strip() + header_value = request.headers.get(header, None) + if header_value is not None: + header_value = str(header_value) + data["vary"][header] = header_value + + return b",".join([f"cc={self.serde_version}".encode(), self.serialize(data)]) + + def serialize(self, data: dict[str, Any]) -> bytes: + return cast(bytes, msgpack.dumps(data, use_bin_type=True)) + + def loads( + self, + request: PreparedRequest, + data: bytes, + body_file: IO[bytes] | None = None, + ) -> HTTPResponse | None: + # Short circuit if we've been given an empty set of data + if not data: + return None + + # Determine what version of the serializer the data was serialized + # with + try: + ver, data = data.split(b",", 1) + except ValueError: + ver = b"cc=0" + + # Make sure that our "ver" is actually a version and isn't a false + # positive from a , being in the data stream. + if ver[:3] != b"cc=": + data = ver + data + ver = b"cc=0" + + # Get the version number out of the cc=N + verstr = ver.split(b"=", 1)[-1].decode("ascii") + + # Dispatch to the actual load method for the given version + try: + return getattr(self, f"_loads_v{verstr}")(request, data, body_file) # type: ignore[no-any-return] + + except AttributeError: + # This is a version we don't have a loads function for, so we'll + # just treat it as a miss and return None + return None + + def prepare_response( + self, + request: PreparedRequest, + cached: Mapping[str, Any], + body_file: IO[bytes] | None = None, + ) -> HTTPResponse | None: + """Verify our vary headers match and construct a real urllib3 + HTTPResponse object. + """ + # Special case the '*' Vary value as it means we cannot actually + # determine if the cached response is suitable for this request. + # This case is also handled in the controller code when creating + # a cache entry, but is left here for backwards compatibility. + if "*" in cached.get("vary", {}): + return None + + # Ensure that the Vary headers for the cached response match our + # request + for header, value in cached.get("vary", {}).items(): + if request.headers.get(header, None) != value: + return None + + body_raw = cached["response"].pop("body") + + headers: CaseInsensitiveDict[str] = CaseInsensitiveDict( + data=cached["response"]["headers"] + ) + if headers.get("transfer-encoding", "") == "chunked": + headers.pop("transfer-encoding") + + cached["response"]["headers"] = headers + + try: + body: IO[bytes] + if body_file is None: + body = io.BytesIO(body_raw) + else: + body = body_file + except TypeError: + # This can happen if cachecontrol serialized to v1 format (pickle) + # using Python 2. A Python 2 str(byte string) will be unpickled as + # a Python 3 str (unicode string), which will cause the above to + # fail with: + # + # TypeError: 'str' does not support the buffer interface + body = io.BytesIO(body_raw.encode("utf8")) + + # Discard any `strict` parameter serialized by older version of cachecontrol. + cached["response"].pop("strict", None) + + return HTTPResponse(body=body, preload_content=False, **cached["response"]) + + def _loads_v0( + self, + request: PreparedRequest, + data: bytes, + body_file: IO[bytes] | None = None, + ) -> None: + # The original legacy cache data. This doesn't contain enough + # information to construct everything we need, so we'll treat this as + # a miss. + return None + + def _loads_v1( + self, + request: PreparedRequest, + data: bytes, + body_file: IO[bytes] | None = None, + ) -> HTTPResponse | None: + # The "v1" pickled cache format. This is no longer supported + # for security reasons, so we treat it as a miss. + return None + + def _loads_v2( + self, + request: PreparedRequest, + data: bytes, + body_file: IO[bytes] | None = None, + ) -> HTTPResponse | None: + # The "v2" compressed base64 cache format. + # This has been removed due to age and poor size/performance + # characteristics, so we treat it as a miss. + return None + + def _loads_v3( + self, + request: PreparedRequest, + data: bytes, + body_file: IO[bytes] | None = None, + ) -> None: + # Due to Python 2 encoding issues, it's impossible to know for sure + # exactly how to load v3 entries, thus we'll treat these as a miss so + # that they get rewritten out as v4 entries. + return None + + def _loads_v4( + self, + request: PreparedRequest, + data: bytes, + body_file: IO[bytes] | None = None, + ) -> HTTPResponse | None: + try: + cached = msgpack.loads(data, raw=False) + except ValueError: + return None + + return self.prepare_response(request, cached, body_file) diff --git a/venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/wrapper.py b/venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/wrapper.py new file mode 100644 index 0000000..f618bc3 --- /dev/null +++ b/venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/wrapper.py @@ -0,0 +1,43 @@ +# SPDX-FileCopyrightText: 2015 Eric Larson +# +# SPDX-License-Identifier: Apache-2.0 +from __future__ import annotations + +from typing import TYPE_CHECKING, Collection + +from pip._vendor.cachecontrol.adapter import CacheControlAdapter +from pip._vendor.cachecontrol.cache import DictCache + +if TYPE_CHECKING: + from pip._vendor import requests + + from pip._vendor.cachecontrol.cache import BaseCache + from pip._vendor.cachecontrol.controller import CacheController + from pip._vendor.cachecontrol.heuristics import BaseHeuristic + from pip._vendor.cachecontrol.serialize import Serializer + + +def CacheControl( + sess: requests.Session, + cache: BaseCache | None = None, + cache_etags: bool = True, + serializer: Serializer | None = None, + heuristic: BaseHeuristic | None = None, + controller_class: type[CacheController] | None = None, + adapter_class: type[CacheControlAdapter] | None = None, + cacheable_methods: Collection[str] | None = None, +) -> requests.Session: + cache = DictCache() if cache is None else cache + adapter_class = adapter_class or CacheControlAdapter + adapter = adapter_class( + cache, + cache_etags=cache_etags, + serializer=serializer, + heuristic=heuristic, + controller_class=controller_class, + cacheable_methods=cacheable_methods, + ) + sess.mount("http://", adapter) + sess.mount("https://", adapter) + + return sess diff --git a/venv/lib/python3.12/site-packages/pip/_vendor/certifi/__init__.py b/venv/lib/python3.12/site-packages/pip/_vendor/certifi/__init__.py new file mode 100644 index 0000000..8ce89ce --- /dev/null +++ b/venv/lib/python3.12/site-packages/pip/_vendor/certifi/__init__.py @@ -0,0 +1,4 @@ +from .core import contents, where + +__all__ = ["contents", "where"] +__version__ = "2023.07.22" diff --git a/venv/lib/python3.12/site-packages/pip/_vendor/certifi/__main__.py b/venv/lib/python3.12/site-packages/pip/_vendor/certifi/__main__.py new file mode 100644 index 0000000..0037634 --- /dev/null +++ b/venv/lib/python3.12/site-packages/pip/_vendor/certifi/__main__.py @@ -0,0 +1,12 @@ +import argparse + +from pip._vendor.certifi import contents, where + +parser = argparse.ArgumentParser() +parser.add_argument("-c", "--contents", action="store_true") +args = parser.parse_args() + +if args.contents: + print(contents()) +else: + print(where()) diff --git a/venv/lib/python3.12/site-packages/pip/_vendor/certifi/__pycache__/__init__.cpython-312.pyc b/venv/lib/python3.12/site-packages/pip/_vendor/certifi/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..315790b2d96bc9c8fe0d2d0d8e45ed3a210711ee GIT binary patch literal 316 zcmYjMJ5Izf5ViARmqbg4kZ6E11@V$CXb?x>01;voVv`sW+j5*Np@JLGaR$ypLkVd> zqM}3EZY#V9Bwq36^JeC0o+gt3S-ckJ^32AMRq+SsH(Bi3(l zRRBW>&@tU`DF7bP!mgs_DJf;mh-ypH{y4^Z1qXAW$DYs7{8&t_i*!m R{v7Pwj$Ssl??Sz9wQu?9R(Svb literal 0 HcmV?d00001 diff --git a/venv/lib/python3.12/site-packages/pip/_vendor/certifi/__pycache__/__main__.cpython-312.pyc b/venv/lib/python3.12/site-packages/pip/_vendor/certifi/__pycache__/__main__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..7f84fa562a31d1edba7d72e1b5b36e931c7a3f51 GIT binary patch literal 643 zcmZutO=}b}7*6JU2DgUvPN7zvgpoj`gaA7mlVscdE}>){=mkd*f#$_0DIxPBYgrsdKW9~7|~ z@knQL>6BGmUJD7qs!6HIpk(zumsWY&8E1+31kSb9izjH9#uR165am%paOrPX;4ouI zjov|H_7r6kF-(*7-s&34nV{V)jGl)Bnj_^9RSr?*5MdmLEWx;!O)k8RI3>lHKHw{A znEu85u{!>k5W??Z`4>QEe*0}}?zd-t`^dkw@05KHNAAsi>&$fDY`)q&wfuv-hxfi&H-0E|`|!@|ZGK%f{|7#RpqBsu literal 0 HcmV?d00001 diff --git a/venv/lib/python3.12/site-packages/pip/_vendor/certifi/__pycache__/core.cpython-312.pyc b/venv/lib/python3.12/site-packages/pip/_vendor/certifi/__pycache__/core.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..5c61c631e989b87fdf20d0611935d46ef089cd4c GIT binary patch literal 3325 zcmbVOO>7&-6`t82{)a=Y8y9g8pSo_B8n_niklE=7VPdyTAJjt zvn$I|ltPCbBqV@TB#4b72OoM7?1PJ5dhD@4E@Wsx&ejD4G(g}RQyK`MQ{P*1Ny=6W zq(kt{oBucO``(-VqOUJNpnSDx75>ss$iJ}RmS9_HUZsTGA}Yxdm8x8k=BUc&IE@xO z?$mCr3fJEygpI&Vu_%e2iQoa+5h$OYQE5A{{(=Xxj)haxs|U zSHtbrpr81OI;=`sOpR!RYCnwOINl|oMn4pD;r3l(J$4MD9qs;jPyZ11uX5>;H7%fM z%+eS1Ol39j`%Vc2=9hFcRWj7&qLyNswam(9%39J=dfBw{#bVyljdH4JC@sZUNGW;T zDO1r(DTAeS%S`qi&rSESHAF^0{*heXiE6@3z&>${t(h$Syx~5UuEyjC?~Ys|L%ouYM5ddM@p? zL-NJRi%d?a7ml;~kkmI(mVCdya-deJQ?u?7`Z`-_SG21W8;Af4=@-Atj5eIK) zmyD8@tt>BPO=Ve?9Vl*Ea=xNx;rJWbqW;@#Wz||T$}eTkozI%OrHxne%JuxBW@f?4 zY}-l)DWFGIF_;D%vBi}ojcF_frwqW~d=10~c@iO^;c77XBu)~ee>zz`_4E4Zt9zqU zwb7}+hw7tm)sJ1+#F1=fdZJe z5hD=(u6GL^Y+*{fbkQqx@OH;wEq_mNR|6j648zRB5M5i$n~JXQQroAM6+_j_i)r3* zJVT&uKhyH6Y-u+w204m22D2!R_*|B=1T;^>-#i6kgFKRA)xpzs>BT*1q9#q;f445Z zz9&uBr0MFl-&CdPy7XSv_nxy;nqzpG$H+$@y?`*YW6)6G-zfrUj!%l99O8Mp%X3UM zce&P@JZE(nZsBUD6#TB%t^YT38Lmi+ECiM9ThuJsF)$2GCZUL+IP4dPAdZ-TLGwI_ z9+nJ~#8`Fg<-eY(ADjAKyy(RGaoF%MFI3LKx6O(n#exH zYq&a+xgYx5$^+?2)pwzeIthl=fEnrSRE2xZLKwnt;k zV5ZV>Hgsb2IbVVO=Pm{!U?W z$lmfL5)&R+Vx9#7poU0z;M0?zym068gTC!B#U%cQwn%f2v^m3M&%^e%SJhcLU(#%!?7U5~Yzvs2)6}L5CT6O(w=hRKj$Q=COoITHg~HoY zTT|Otwyu1BxgI*XNxzo*w^z1Sw%51TZ%^J{uS;jDzB3N_4!P(1GN1hbPk$;XJG{pf z!bVX%lX~$24qq|8dvO47&>6U7?3b5b|JCFSyh1WQRCBGD>Zy}DcmEyi;(!i!4<@TZ z^4SwR5wg}gv6JkdjSx(4_xQVL9~6iYvQCcT!v7T`!i-HB8-k6USYepQ)0DjkRWGa^ zCobbaD+nI>`##n_THG=3{Q7|(gFs9`5J=JO)veW!-iII%6A%Pq0)jwHw1VJPt9YRg+-`wL>>FW3aM z88-u&-H!$4q-IRlt^DkO;h2pCW=Rwn#cUjeEn2G;{Ir4!o;@~(eStTfFTZ&hvAwgc z?*iL*)lGJX!9MW)to5PzDw~AG2%q^p$Oca-{gxA{&g!B6Y@r^eiUu;Y_gt++J&Pz=KRpTrbWxAt00f))7;UOOXo;X+&2XDu}6qDZw zzvx{y)LI5r<2)5-+skHY(?`VcKZM9Xh3EFe(Va_su@kk}i91R)mac_QZ%jRuVmouU z$E$-c)TC1zmm33QB=s= (3, 11): + + from importlib.resources import as_file, files + + _CACERT_CTX = None + _CACERT_PATH = None + + def where() -> str: + # This is slightly terrible, but we want to delay extracting the file + # in cases where we're inside of a zipimport situation until someone + # actually calls where(), but we don't want to re-extract the file + # on every call of where(), so we'll do it once then store it in a + # global variable. + global _CACERT_CTX + global _CACERT_PATH + if _CACERT_PATH is None: + # This is slightly janky, the importlib.resources API wants you to + # manage the cleanup of this file, so it doesn't actually return a + # path, it returns a context manager that will give you the path + # when you enter it and will do any cleanup when you leave it. In + # the common case of not needing a temporary file, it will just + # return the file system location and the __exit__() is a no-op. + # + # We also have to hold onto the actual context manager, because + # it will do the cleanup whenever it gets garbage collected, so + # we will also store that at the global level as well. + _CACERT_CTX = as_file(files("pip._vendor.certifi").joinpath("cacert.pem")) + _CACERT_PATH = str(_CACERT_CTX.__enter__()) + + return _CACERT_PATH + + def contents() -> str: + return files("pip._vendor.certifi").joinpath("cacert.pem").read_text(encoding="ascii") + +elif sys.version_info >= (3, 7): + + from importlib.resources import path as get_path, read_text + + _CACERT_CTX = None + _CACERT_PATH = None + + def where() -> str: + # This is slightly terrible, but we want to delay extracting the + # file in cases where we're inside of a zipimport situation until + # someone actually calls where(), but we don't want to re-extract + # the file on every call of where(), so we'll do it once then store + # it in a global variable. + global _CACERT_CTX + global _CACERT_PATH + if _CACERT_PATH is None: + # This is slightly janky, the importlib.resources API wants you + # to manage the cleanup of this file, so it doesn't actually + # return a path, it returns a context manager that will give + # you the path when you enter it and will do any cleanup when + # you leave it. In the common case of not needing a temporary + # file, it will just return the file system location and the + # __exit__() is a no-op. + # + # We also have to hold onto the actual context manager, because + # it will do the cleanup whenever it gets garbage collected, so + # we will also store that at the global level as well. + _CACERT_CTX = get_path("pip._vendor.certifi", "cacert.pem") + _CACERT_PATH = str(_CACERT_CTX.__enter__()) + + return _CACERT_PATH + + def contents() -> str: + return read_text("pip._vendor.certifi", "cacert.pem", encoding="ascii") + +else: + import os + import types + from typing import Union + + Package = Union[types.ModuleType, str] + Resource = Union[str, "os.PathLike"] + + # This fallback will work for Python versions prior to 3.7 that lack the + # importlib.resources module but relies on the existing `where` function + # so won't address issues with environments like PyOxidizer that don't set + # __file__ on modules. + def read_text( + package: Package, + resource: Resource, + encoding: str = 'utf-8', + errors: str = 'strict' + ) -> str: + with open(where(), encoding=encoding) as data: + return data.read() + + # If we don't have importlib.resources, then we will just do the old logic + # of assuming we're on the filesystem and munge the path directly. + def where() -> str: + f = os.path.dirname(__file__) + + return os.path.join(f, "cacert.pem") + + def contents() -> str: + return read_text("pip._vendor.certifi", "cacert.pem", encoding="ascii") + + +# Debian: Use system CA certs: +def where() -> str: + return DEBIAN_CA_CERTS_PATH + + +def contents() -> str: + with open(where(), "r", encoding="ascii") as data: + return data.read() diff --git a/venv/lib/python3.12/site-packages/pip/_vendor/chardet/__init__.py b/venv/lib/python3.12/site-packages/pip/_vendor/chardet/__init__.py new file mode 100644 index 0000000..fe58162 --- /dev/null +++ b/venv/lib/python3.12/site-packages/pip/_vendor/chardet/__init__.py @@ -0,0 +1,115 @@ +######################## BEGIN LICENSE BLOCK ######################## +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License, or (at your option) any later version. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA +# 02110-1301 USA +######################### END LICENSE BLOCK ######################### + +from typing import List, Union + +from .charsetgroupprober import CharSetGroupProber +from .charsetprober import CharSetProber +from .enums import InputState +from .resultdict import ResultDict +from .universaldetector import UniversalDetector +from .version import VERSION, __version__ + +__all__ = ["UniversalDetector", "detect", "detect_all", "__version__", "VERSION"] + + +def detect( + byte_str: Union[bytes, bytearray], should_rename_legacy: bool = False +) -> ResultDict: + """ + Detect the encoding of the given byte string. + + :param byte_str: The byte sequence to examine. + :type byte_str: ``bytes`` or ``bytearray`` + :param should_rename_legacy: Should we rename legacy encodings + to their more modern equivalents? + :type should_rename_legacy: ``bool`` + """ + if not isinstance(byte_str, bytearray): + if not isinstance(byte_str, bytes): + raise TypeError( + f"Expected object of type bytes or bytearray, got: {type(byte_str)}" + ) + byte_str = bytearray(byte_str) + detector = UniversalDetector(should_rename_legacy=should_rename_legacy) + detector.feed(byte_str) + return detector.close() + + +def detect_all( + byte_str: Union[bytes, bytearray], + ignore_threshold: bool = False, + should_rename_legacy: bool = False, +) -> List[ResultDict]: + """ + Detect all the possible encodings of the given byte string. + + :param byte_str: The byte sequence to examine. + :type byte_str: ``bytes`` or ``bytearray`` + :param ignore_threshold: Include encodings that are below + ``UniversalDetector.MINIMUM_THRESHOLD`` + in results. + :type ignore_threshold: ``bool`` + :param should_rename_legacy: Should we rename legacy encodings + to their more modern equivalents? + :type should_rename_legacy: ``bool`` + """ + if not isinstance(byte_str, bytearray): + if not isinstance(byte_str, bytes): + raise TypeError( + f"Expected object of type bytes or bytearray, got: {type(byte_str)}" + ) + byte_str = bytearray(byte_str) + + detector = UniversalDetector(should_rename_legacy=should_rename_legacy) + detector.feed(byte_str) + detector.close() + + if detector.input_state == InputState.HIGH_BYTE: + results: List[ResultDict] = [] + probers: List[CharSetProber] = [] + for prober in detector.charset_probers: + if isinstance(prober, CharSetGroupProber): + probers.extend(p for p in prober.probers) + else: + probers.append(prober) + for prober in probers: + if ignore_threshold or prober.get_confidence() > detector.MINIMUM_THRESHOLD: + charset_name = prober.charset_name or "" + lower_charset_name = charset_name.lower() + # Use Windows encoding name instead of ISO-8859 if we saw any + # extra Windows-specific bytes + if lower_charset_name.startswith("iso-8859") and detector.has_win_bytes: + charset_name = detector.ISO_WIN_MAP.get( + lower_charset_name, charset_name + ) + # Rename legacy encodings with superset encodings if asked + if should_rename_legacy: + charset_name = detector.LEGACY_MAP.get( + charset_name.lower(), charset_name + ) + results.append( + { + "encoding": charset_name, + "confidence": prober.get_confidence(), + "language": prober.language, + } + ) + if len(results) > 0: + return sorted(results, key=lambda result: -result["confidence"]) + + return [detector.result] diff --git a/venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/__init__.cpython-312.pyc b/venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..971ea77f1d13cb46438f06e6c1fe95555f30f822 GIT binary patch literal 4566 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 B43Gc- literal 0 HcmV?d00001 diff --git a/venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/charsetgroupprober.cpython-312.pyc b/venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/charsetgroupprober.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..0a69664f16f6f96c481b4fb6ef0b6eb39a73a0cc GIT binary patch literal 4120 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 literal 0 HcmV?d00001 diff --git a/venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/codingstatemachinedict.cpython-312.pyc b/venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/codingstatemachinedict.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..37ad7a0044742bd04ffd6f2d16db5a676fbd0977 GIT binary patch literal 787 zcmZuvzi-n(6u$GXIBC;D)kGu`l|azS1GOLvL&cJof)EiBVZh7j>bu4+{)K(6$PN=M zObuIB1OxvE6Uq{9L5PX1Qh=cocXomV;v_$R-*@lbz4z{Ytk-Kmtj_~>w4ng-O_Iej z=3urfzzHCLzyO5MfuZ6k5Kx$|3r!K4>ZlMXU>^|mIUpKUiT>VrrcR38)2mwLeTK+4WuKmcgY}=VayyZ~`cBAOVi@2vC)3 z1Rg3ap;MhGJMymyq!#G!UF|=bUTB7hF#e#5L_^c6@@6+Cel&Q-iCtxoz_$ zH^5nj7(NInUoOcZc3GVArA&Iyw^m#arzoJ&oNEydDK`Tg4RSo7J*&b^grtZNuOSr1 zBo8EBM(AmdgK{U8o#d(?F}{irj-psx;m1)X9Mz1aZ^2ABfU_gpi$iKBxo2l?PLLZ% zj6P!sC%%15qhmYp5A0;fyg2G?U%z2zKBLzX>^>2xWOm{wHWF?mPHmYsq0DxR`iqLf zvVJ1#PljnlTv!-6Kbh><3ovc8N1d@cy7?MS%q!DoYht$k(JovZx#P~rd$T$*x27xS zUsk7UjaT)wu{iFwm;#-N0)w7qaDxpK@c^kDfT9bjzHsE4OeI~HyohcJbY||9ExeVs u1%=|vHibD=A%tJR)>rl1&l=D#{m=}(Ic|Np`U?nfx&}5bf705;Illp|XVc*T literal 0 HcmV?d00001 diff --git a/venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/cp949prober.cpython-312.pyc b/venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/cp949prober.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..23286504367033f4df14648baf681ce7300fcb87 GIT binary patch literal 1394 zcmah}OK%)S5U!rrj-B-bL+mwNEJs9)B0P|ANCXN2J3=C{iLkiLr8S;udne3`?w%-X z`QU>k))EmXDnHiW`H&ZLK16%7>>SV2;MZkbBAhr)6 zc9?x^4(|%wUdwa;Civ!&dhzx*t9QO$ON8XfRwa`n|11yFo=5~b=T?h2$#*toDA{@# zb(5T-b$-1{W%7AXvejI zrL>-;G%MmNReGD!@2W5zdNka%i}2&($X;#Yx63=KlXp2rpX?8I^1qy+eJb~rn`JJ0<&laUBK zzqI@t-zEt84F{7aJ|_0R1L7VrNt2j@8L@>TXlN z&8Y13Iv!BEPj${{&toQxxZ7*B-JTzc7;T-K%%@%5xT&|;oFvWbJ-_Ypd0NpOx?t;0 zC_*oqx-+*m8Gg~~=$1WaxSfKuhes+zf*39r#1?J6WsFWaLSa1EKMTY?!bnp9(?v|7 z88su#m>F%x%~&(hj~5bwq&VH4U-xyN?bamH2AsL98=I9-!X@R6^9oOvH zNT)UJR!_Ibf0CMJx(14@uCK{jsa{r;ASKt!6LMKuTGkde8uE{1AM}!E8^yNUVa0B* zUG$8esTr>0vu}J&?^?wj=Ij)0YpdApgQcA-b01$WdX~>Fjh)~XyH>ZTftcy?;@Cq) zw1GF*?Q;lA5&}l5_cp*C@;DNSi;qN-KQmYv&g2FPz-@)+CZaDmWE`1fe-VEFyF<)) zGifH8qM2-_OtC4kI7{p%329ETDV9WviQzciPZgvfTh*Ob4`OK1vVF#PZ@jAeAg023 zbUU2r(XUzPHoe=m`_y--9%|a$T%WkNGWPD~=5t=SybdoaAv}5td%NCL#e5yY9OwZR!b-uB(Bxg zv41kV{g5xBTo*7hz@4WXQ_U7>2 z_aDUG8cv@XEDtle!QwERA1n=}?4Uf%(g)|SKFnUlaqjN&L+R}II}fD`x67kNQ0)tj zex1xquX1s9}B}h(iaMm z-TC>Epf?XKhEXW47{0KB=k{YjUun7Ag63j5;U=&M&+#`vO&FF1A&45b=iy?MW0D8? z7V|Zb(vBwYUU=Cmb1#dPVY-J!Y(O3*$V@H_U$roGV#bK7yi{r^U&?{Fu2z+6a&;p} zjKAV)tquhX{!JOS?s**sZN?0umgDowp#OMAT|yqhr|^2{|D%Qiy<~ZkQBaF8w|qb3*k?MKM;NgPz$LO zeVc*;C@(@ossvIMKH36wnrlI#zHxn_Rt@46WeLh-a=i9&Z_a~ej-bHnodZB`#-Yn( zNp2SEBf!cqGXvgCPeV<}=58;IDkV-*3(~kTVyJV>8je{rx^;vd>^u&`dJ_gtxZaDM z?wR=6=pyww$14T~fL8-}6cq&FaU>?ho~DU#_Guz1}Rq{SQO`^1}cC literal 0 HcmV?d00001 diff --git a/venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/escprober.cpython-312.pyc b/venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/escprober.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..96cd7db3edf04356fa80b6d5db168efe5f4ed774 GIT binary patch literal 4564 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 MuSZ$>Uw4)N0!TRL9{>OV literal 0 HcmV?d00001 diff --git a/venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/eucjpprober.cpython-312.pyc b/venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/eucjpprober.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..b0b74e21fead4df32d1f7f6b9a31e97460003a56 GIT binary patch literal 4381 zcmbUkTWk~A^^Wav#<7!ef?4MQi6MkySmNdZba^J5WO~kOcEP=?A{r# zh-Fx`qG}?sB2=xyN~<Gl>I~MPX^OEI|^!~Za?^o8ceBVmdIs6hX(YO? zBe7QU+_M{VM)_HH(DQ^KK}KgM9Sg(>#dPoN=>{wt4f12 zF+47*L{7pWQBNg=@eyHUbZGc|+%Vec9VW7Q6@Z_^zDX#`h$w0kU2|xP5pCB!QM(D- z0d`2N$Vkp9o9MXixMvDSYsyr%g35_b$tBfF?kQU{j08E)ltZk!?uga_Tn{=pfcZIe znTdMGQLt8bQ%eoQbtjh89G2r`Bdta@ocuR`3*E1nMWk9BG|v>!r{DyZQ4CTomq4o1 z8g|drRzQNabfmh=ToV9pSwaOzGn%CtxST~RpyW0Se*U#aGH4dvWx}vBR>@^0taE~p zkQ1sPV4@$BiFH?;I)R|1F)>)*E><{;5F_4_moRn_o;Plsdzq}WSW+bQu1$9+Qff+f z2|_#-Qxri^Y#b8(wLgT$i=T?*T`7 z2fA;sp*5~pWTP?4NTy;&!hE`igZ95;W}|E4B4_YzzydnHZP)CCTI)i zouL2VxeIr}k8l&v72?1FYJlz`CjzH0$g#APZ>qGUlG8)Ph-+O#>%9Men^)(~#j-IO zd<&DM;C7;;VrniGlc#gwB3n=1q8_fCvYAe)bCVF81c-xi;+a;f0f63Ua#D*3PR!y| ze6QKgp-)=cKV0+GiZqHUa!II_J@th};br27$YCt77sj3xh_e>9lc;>U1N#d1N4Wd%n z0tQwt*KDzzcx+XpmisHT?x-37=vJ-r<1IRgXH+$!Q(Qn;oGcs9VCZPr(&1P^QrUpo;0v;y5 zfyo7Y@^5ItW=xVjCihTxNpdbNVW`~nS{X_)h-?635>0e=cx-HROn0U-)6{$a^v3Zsqhpc5iHHz6Gd2v!`Jteb<{C_{na(712iXruH)f$ir{IVs0+^zZQYJu~ zkr#Ub&wDGg5i#v3P!$bQ$ThUeZ@YPQ{^|-JT;YPy176~T8le24748u9-}nPdO-29y zP2_j|h?zeT0(ROMt951ZjG$^wm)^T4UJDdsQo~xty^pBUU2- zo`-zTTHF3oTd&sEOSoT`xn!0i%wpMbLTf!yY(2HWt#0$(W`1#aHF$7gXmRw`=+c1Z z+e;@8YQA8}*QNQo?x?^2`0mHc+#}yv$|1CpuUGT+elhgN(LanX|M;)I@H#QLLgw;) z=KjE!>@u@F@D;lfdhY>u&z$(fOmF?HY*Q{PnX%Q_rlem=j#8R>mXB|~luP3pe};7yWxvRt}@0<&3x;|fWj z7O~>{UuA4+In5U!Tv`cW92v!)gWhSQ&N~7+b$dE?8A?D>aS^|#k1bL{KcfQ!(ADI`hd9 zmr^M~2r`&t8Com$8{1L`I40d*!bn5+?RE6b#2~~|2tJ#3 zi?HD|p_bbngw;}JwQM*$*_PWAONZ_RS2}vNoqZb!2={kvlFvq%VcF0U`!56^x<_>W zaL}te)!8h(rZHWjm&CBj=a%sTYcv8K4W()0Sx(<;I!j`{LSwuc!;{&#tX?)AXMB3n zEW3@Af=RWgJAtae+s+LLwZbT+=R5AWaZo4mMWB%yTR8yThMi%UXFotp^FPp$ h$EfFT=-^|t?=k9qjCMbD_A^XqrE%XgL;$+N{{a1`mN5VT literal 0 HcmV?d00001 diff --git a/venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/euckrfreq.cpython-312.pyc b/venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/euckrfreq.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..63cf2a069b515b1841a2e883d1a7c1a37dffa454 GIT binary patch literal 12080 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 F{{YxnTZRAt literal 0 HcmV?d00001 diff --git a/venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/euckrprober.cpython-312.pyc b/venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/euckrprober.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..56ed5ef213b2e3b811ad32fe9de7d3ed07c4de7e GIT binary patch literal 1388 zcmah}&1>976n~?ym7QHXapPp&UW`LZMX^PaOCZ6dbwZ(z-4fG_E`uzMy-M`enNi3Z zAAB%m4GldN=U)i!f6_}!a%hANg`Rpd-55eneIu=s&8Y)=^Yq@lkNN$c^joJh3AkQw z%ZINmfWOsCv&@k){1%l%2q7dfB*Y^`=~}EMx~EsV9vg}2nU!wDR?_lX1T^>tLUSKN ziG zMJYq;rL`iK(bs*+R(d|)VDfvOZ8DCYsVW)WSfgv--Mx1|7&TvQqv|lckFQVhE(|;p zf~SS%0Jcb|?YBLh86jcjmKN&!#?dI+v))^cF>7l8Pl#u4fMb>Cs=9R>rNx;ncp9h+ zHcJ&(&v1a^7jg))@xTGug=YwJQ;vXaKnIC*)az)JZ5OD~*yOoJYhuy+K4KRhPB;D! zdvlUNAJJcT?9voP&Uk548l{n>l&kz)r70(Z3VtdQu9`1r!!equuXx(QP?Iykq@$IF zVDVNtL1_^CLQpC+jGEtjN8MhQFgGuHt_X^d23acE6G{C%av!twu^UI5Zr+!@EWNRG z?Yb)>$rf`zc;s(0;pS29Qal!B+zpWMkV%&n!6Tkmv@hj--o`pR7sp6gYHo7{Jz@#P z+dVk8I|r>l?CvZ3)8n}>e_ek$cWYq$G*`dpRk?ocyr?(2hR=_;d}7c z^kx1DYX4iev{p0D{FKk)X?_XCcwsyC)9nJG`xueNx~O8hN~l_n#wT!FcP7*Xs8%U0 zCn-&`u!xo3ru4_ck84i_bZH~-I5M(d>iE_2%PQArD9X-=`GCbSr4Hd2&|0;2r^1BW z>ZlS6%CU^%?LM4ohBz zqV?3y)Ke_fPb8^-BGrtS)5+$DiF%T_qM@|VDsbY}7f?4`p{&5FF7eL3U4ygCKS!Hl kT+E|5)d?YIH-X$df$Jx5;{+DoSRK;+eddcZz`g4AKe@?Epa1{> literal 0 HcmV?d00001 diff --git a/venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/euctwfreq.cpython-312.pyc b/venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/euctwfreq.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..0bd8cc3905cb7d5e159f6e848894fa7f70e271a8 GIT binary patch literal 27202 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 literal 0 HcmV?d00001 diff --git a/venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/euctwprober.cpython-312.pyc b/venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/euctwprober.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..86c65c64869e62a628877e007ee0fc743fb00bf8 GIT binary patch literal 1388 zcmah}&1>976n~?ym7QHXb>n2+UW`LRM6pGaOCZIhbwZ)UZow`AT?SbidzDJs?aV02 z8XtTxbPWwX73W_F?tjutOLAz04TYY1Gu;?MPJJ_4C7V+Q^ycZkc^~upJ?ZyWYZ7q1 z+?EesIspHumwMSFW%vy$hY&+dQpiX^h|-PJ$jrdhx|v#;9oSm8QYUK!4FU#y4Y9os zvBT^mv&t2?{f6iMOYqGj<=oxxS2ph7NrdFdW+9Vq{$(DfeUS)s&a8CfB;Q__p=7IJ z)JbxN){Cn}DwD7JlC5+?zRu)#yt~ObdZu(Ty1q(RzrAz!UNmZ6Z=>okyoawp;awO6 zB!<9@6cU_pPH*bl|+TT4UD603MUTT?fx8&*{2V8>PdUEO;KN z3)V{&SI=;O;#YDAvi86M*@Y(vb6t*rtU(8fbX4nTlx-KNRompbTB~Ex`!-@19!%H% zcYA%3Kp)Xx^W4%FMUU~)r8LPCNhw$Pxk^(`L>hi7GOn60XX7!NXsCGF!BCqs!K7!D zmSE{tIYDWZhC)y(42+uJdqe$BH)DRU==dTkVj6XG$sS7@_7eXg%OCn_vg!BwveV6P zEPa067l~wxy)gPA+-Ab>B|V?wvAE0q2nmmw^jQ(fM?FpZQm@aOSZC+L7zs=DZ7!on zETMS42gh#fpz){Me&K#{JonjeYtQFy4XmH1j;|~~zjAwEy>J))a+|+Q9!x%I4lx4W zV^A41g9@HQ=o8Oa+i|eu;>P`F@Qm>DXcvm5c|L=(Y^q)n7n+9|+i8zCH}3K9>`)QD z2Y*jr;vb{-!Mdfh5hjnqoX_HEei6lZVK)u)?E;~DACcO+sAAems9K)ECvaQyCe#F| zRw*qfDb2cZkt)4O>5oO2Rvry>=_2qrGO}Nq_|@`DD%Ynd%GQYah@~l|9^oIMRkwCq zW5Qi^REY)USVr-BAI=QRo;_`XGj(bZyZto!4{#frwc*sMwWpWgxn8NW`U*Osy1;oo z9b+R}P3=rI#X|i=vg#+IXS|%wHb+cUlf)GbrGr+16R*C2s$q??0!v@wjr&Cf&N9D> mHpRG@M{#NrLe6dixp@NDPvFK0EWC1Br2WUtwKKq7_xe8??MxH^ literal 0 HcmV?d00001 diff --git a/venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/gb2312freq.cpython-312.pyc b/venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/gb2312freq.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..61d7c1345899e7ba4871abe8761809d82ee69e25 GIT binary patch literal 19124 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 literal 0 HcmV?d00001 diff --git a/venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/gb2312prober.cpython-312.pyc b/venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/gb2312prober.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..24abaed4654a6a4ef258f821d9424584e7346e82 GIT binary patch literal 1401 zcmah}&2Q936o2Edb<$lzg92H&L_}1wDq@jbS_x4gR7e#Gm2&fC@Y<7IQ`_s#j1e2< zkVB+yBoHSQ{sk2N6E3abP^?5C_0(I`B@*Jq8+%QcUOJNBym@cl=kJYQwp!DG>rGeQ ze`^8!r4IEn$IR#_WcDG1ki?J>j}XOcv6kqbUh;ZuB&KJUyb)VT!)p-G;5LNjE`$~{ z5A@2HXAc^V{WrmrLyGgaZ!WJ~S-uqs$)ip#qkeiL_2Yqv1Zrnj`(c!JH>5AwnjiF{ zl%e$OS{}>j=0LL5p3gU!{F(PVjH70z@6hC$K8)_*@i(l7fk#5{ zw9p*FCJD9Orl&I_B+T5@LVedb7+ZVRXQ?qEZ4BWd@$3z7tfE;3t`aFM&ScKhK-E|; z6B`cT zWmiO!UC#XA7r)Ddn?;#R@mkpDZh(-7OuF5UnwzXdekmL9CI;G?n}lJhu4fTdVhPEI z9XPaGdyPNr`PcUO!}hl??!IbY9U6~L9bWq3)ukIlxEUtd=AeEKaFysa9ZHANQzKVe(#FS46dIm%99z60-O&hazI z{eR%bs(KHC@w0fHpHnU-Lff&Qc5`gsf0|N@FRS}?$oVp)qwy(}t~*m|7F5cV7Sog_ z{Va|w+3~_g1aNrdpwRIJ^LdrZ1tdjlJOcrXV@e&uzg7WNg4fI5a9dqf zR2P@{IlR6z-^@0f@5pUwVy32Rl8KZ$Gh#agwmlZ;B+}B z6T@1~?`$>CLj6#Z>W5NJdoh!A#(-2K#Z_wx3#9^QU%iDY;j-5XpR$OL_SLF6*Z4Om lQ`LzDB*!`-OP&A# literal 0 HcmV?d00001 diff --git a/venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/hebrewprober.cpython-312.pyc b/venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/hebrewprober.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..d8e6ba86b0c9523973b62c80c667704964537fc3 GIT binary patch literal 5820 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 ZXQbsb;(v6y;<}FNxOwVxf~_*ge*kJ#r|19x literal 0 HcmV?d00001 diff --git a/venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/jisfreq.cpython-312.pyc b/venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/jisfreq.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..10aacf81b8fee9e945955d976d2814d774337926 GIT binary patch literal 22153 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 literal 0 HcmV?d00001 diff --git a/venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/johabfreq.cpython-312.pyc b/venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/johabfreq.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..116167f0533048e10a604b24a7473858c67ae874 GIT binary patch literal 83001 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 literal 0 HcmV?d00001 diff --git a/venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/johabprober.cpython-312.pyc b/venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/johabprober.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..c977370b8a50845d28831fd2fb7202ff17f2ee1f GIT binary patch literal 1392 zcmah}&1>976n~?ym7QHXbrXBtUW`LZMTtd|OCZ7ItF*YWQ}9ifK`V{Da`n~GC}fQf zJ{YowhMtP^F9i2L>7^w(q{4wYc`^o4fZOM1|l{uM|<1-c9{@P(%eP=k8}=lx}YdU$AvQ=tn6- z>HK;bi|F1!u={yBhxqywdtu;_5Iik3 zhprGW zpV1J>&*TV1qk%)R2hR}ZCLICMfDQu3QJ>>+v^}6kBNG=IuJJ|fdyhTXnQip{-Hj!I z0iwU**p*q7IpdX0X_Q8SQZD0j8K#;F6#TSExGcW998Qdh`f^UY=xTCSFyUyGQLuQc znxZs_{i2|>(9mmX{~dMvS;E}B?7Kx!hBU}h!JY`}=aKuErH|b>>bdzq^t1HF%9q#O zA`>T9L*vJpldG#QuihCNuk7X5cKfI4!|7-35qiJ}6O;lq zK?%G(LsW4QEPjfvlI(YMRm{ z3(HvYZAyPA{kYaBuqzwE$F&iIO2;pkcV#7?BB?s#=?5&1DRl_{NG6o^-BG}BTbfF; zEETIr-X6fYW|)`H+F;F`X~bN39{dA%jr2xvW{tV-^D9!-RjM~=+f^;7fU<#$YC|U0 zwBFpgdXo$JBT4EXiQ4mOHtCJWQEwBM&{P&m3*37771RYQsO5B26YuQXH8`vMGnC2h kiX|jxIw9ozCXkz_aQzf+oWk-Ot3$fK&3%3jc&l3f1t11Yl>h($ literal 0 HcmV?d00001 diff --git a/venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/jpcntx.cpython-312.pyc b/venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/jpcntx.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..be76a6c48e0fea70f0bbe0fa8ada9119dd2c49e5 GIT binary patch literal 39547 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 literal 0 HcmV?d00001 diff --git a/venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/langgreekmodel.cpython-312.pyc b/venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/langgreekmodel.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..5b4204e1e79cbd609390b2904d27f6060e8906dd GIT binary patch literal 76986 zcmeI52Vhj$b%rH@K=dMd2hp3T%l1X|E_x9~NVjE;B|2JkjObX=aiZfz zCx}jzBbp@fWYH<2Wuj9>i>Xg>Pt$~_i_Q?8DLPAZw&)zuxuWw#=Zlt$E)ZQPx=3`f z=n~PT)TauO%iI6l_x8R|6*8ZaS!S@O%ERXT$nOXX*E1AXn8Tk`3+v_&Za*Ms? zow>U_YctEw*w53m%t?1W+uL}S$KFeFdbekmNBZ;3Ece&l%$D5KnWfieNR{hao#kgC zcb(M$r_nQ*W|mtHo((x=e#4)T*?!L{v)so3+4n#h4Mj&?oI6zJ zmWmFeVn4%$Mu?7-^}?u&YmAZUV@1b_ju)LEI#KHXB+;&qy13okp5>=IjJmkwd`F*_ z%l;Nf9Q7>cE|KX=xeP{K%;-!}%_})%wtqJ>%Ol7(p5;*vmTZObET@F=EMmzl-|y&n zmfP#vc$Vvi%yO+Ml7TYOFrJmyi#=r<&vKn?<5^A*<5|X`8gPHXvz#8zV2p!jgHP?> zA+rOznOWv5WS08~odV-%W;vx)ay^WiBeUFI$Sl{0b_$#l?G!jAn`b#4RgX^UW@hQc zY?IIW|l`2Jj*zE7E9*HESCzI<@TbP<&=t zSsqi!ERQvKmea#^1MWLqH(;E(Za@lWFs{+r8H{^~dX{TNJRD)cZ<@D^ME*{}1 zc`rhp<+9OH7ng~Sy0}bk&th(t%yONs^5eyKw zgz+r*-MMFZw7ExJ+(z&$mki@s?k$XGIeoHJ#b}-7GR2&pC9|A|Q71H;XE{AvHQ-vI z8gQAAS;pBtt2H-dcG&aIERSH29CtLcJc3XS5Mw{X<-N$AS#BwKmT|Vsa;uYNZ(%&k zCBxVNbGw~czE>f$+*a@`<7}Db^xT4kwS1S*XjPai(9z;+IObXY7|^MLNd!e^^~LT>^dTs?AkeuO9t15 z%rZOKGRx`F%yRAMw+fnBP7jrqahV)-S29a?hRkwXA+wC1k83lPHk#Ry-SjMvBU@&9 z+=Jz;*1gdI*9+$`ZaY+3#@RB<>De;N>CdeTjimdk`n%h=X~klFBe@a(APlv(B@ zT$7=5LN(y@AyNlB?-h82osDR@?JzoE9I64=&2|pM^emN@Yvvvu@H0M7jyYUM8TBlugf5Ir zPLWSYnP{j6&o(;9RcE=a;917u9L6}D!?MYlc_6l4-nprM0U&a~X+Bc^J&+?rJp5?m1v%#l&_F_HARDD6`jDE}Od=aBj9=$#8mSnZ-W4 zt&mra5<+Gt-l5EL-@&uocXVukDcH|&`LvCYvw6rY z->Gb8Fm5B;*nrE29*oO`GZ^Ea-FVh!mX*O~He{8Rfqz0~Cv`Kkdw0GCtm#r2XNck)jw!Q5!*Av|CEK?OoF2Zt zWgLESz&Lz+i})#4Z;lM8neT9eXQ$-IEMG_dWmaAZREaTZy6Xu9UGt0TMkgV&oYGk};GS}2HdAHw%7L%5`q{~m-Mibj%t+|N z7>5oQaik(JE8)9wE*B~Sr-v~ur-$(Y<80jmr-$(Yhi3_HV

bAz~wnB34@;u^9MV`-`oZXYGs9US(h*xyX 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 literal 0 HcmV?d00001 diff --git a/venv/lib/python3.12/site-packages/pip/_internal/req/__pycache__/req_install.cpython-312.pyc b/venv/lib/python3.12/site-packages/pip/_internal/req/__pycache__/req_install.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..54ee31b288a455779b7d9c83b8773104568234ca GIT binary patch literal 38411 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'Q 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 literal 0 HcmV?d00001 diff --git a/venv/lib/python3.12/site-packages/pip/_internal/req/__pycache__/req_uninstall.cpython-312.pyc b/venv/lib/python3.12/site-packages/pip/_internal/req/__pycache__/req_uninstall.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..3446138574a51ccf7adbc6a745a235e7f2773407 GIT binary patch literal 32974 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 OEqi$PeGUQJf&UjartFCT literal 0 HcmV?d00001 diff --git a/venv/lib/python3.12/site-packages/pip/_internal/req/constructors.py b/venv/lib/python3.12/site-packages/pip/_internal/req/constructors.py new file mode 100644 index 0000000..7e2d0e5 --- /dev/null +++ b/venv/lib/python3.12/site-packages/pip/_internal/req/constructors.py @@ -0,0 +1,576 @@ +"""Backing implementation for InstallRequirement's various constructors + +The idea here is that these formed a major chunk of InstallRequirement's size +so, moving them and support code dedicated to them outside of that class +helps creates for better understandability for the rest of the code. + +These are meant to be used elsewhere within pip to create instances of +InstallRequirement. +""" + +import copy +import logging +import os +import re +from typing import Collection, Dict, List, Optional, Set, Tuple, Union + +from pip._vendor.packaging.markers import Marker +from pip._vendor.packaging.requirements import InvalidRequirement, Requirement +from pip._vendor.packaging.specifiers import Specifier + +from pip._internal.exceptions import InstallationError +from pip._internal.models.index import PyPI, TestPyPI +from pip._internal.models.link import Link +from pip._internal.models.wheel import Wheel +from pip._internal.req.req_file import ParsedRequirement +from pip._internal.req.req_install import InstallRequirement +from pip._internal.utils.filetypes import is_archive_file +from pip._internal.utils.misc import is_installable_dir +from pip._internal.utils.packaging import get_requirement +from pip._internal.utils.urls import path_to_url +from pip._internal.vcs import is_url, vcs + +__all__ = [ + "install_req_from_editable", + "install_req_from_line", + "parse_editable", +] + +logger = logging.getLogger(__name__) +operators = Specifier._operators.keys() + + +def _strip_extras(path: str) -> Tuple[str, Optional[str]]: + m = re.match(r"^(.+)(\[[^\]]+\])$", path) + extras = None + if m: + path_no_extras = m.group(1) + extras = m.group(2) + else: + path_no_extras = path + + return path_no_extras, extras + + +def convert_extras(extras: Optional[str]) -> Set[str]: + if not extras: + return set() + return get_requirement("placeholder" + extras.lower()).extras + + +def _set_requirement_extras(req: Requirement, new_extras: Set[str]) -> Requirement: + """ + Returns a new requirement based on the given one, with the supplied extras. If the + given requirement already has extras those are replaced (or dropped if no new extras + are given). + """ + match: Optional[re.Match[str]] = re.fullmatch( + # see https://peps.python.org/pep-0508/#complete-grammar + r"([\w\t .-]+)(\[[^\]]*\])?(.*)", + str(req), + flags=re.ASCII, + ) + # ireq.req is a valid requirement so the regex should always match + assert ( + match is not None + ), f"regex match on requirement {req} failed, this should never happen" + pre: Optional[str] = match.group(1) + post: Optional[str] = match.group(3) + assert ( + pre is not None and post is not None + ), f"regex group selection for requirement {req} failed, this should never happen" + extras: str = "[%s]" % ",".join(sorted(new_extras)) if new_extras else "" + return Requirement(f"{pre}{extras}{post}") + + +def parse_editable(editable_req: str) -> Tuple[Optional[str], str, Set[str]]: + """Parses an editable requirement into: + - a requirement name + - an URL + - extras + - editable options + Accepted requirements: + svn+http://blahblah@rev#egg=Foobar[baz]&subdirectory=version_subdir + .[some_extra] + """ + + url = editable_req + + # If a file path is specified with extras, strip off the extras. + url_no_extras, extras = _strip_extras(url) + + if os.path.isdir(url_no_extras): + # Treating it as code that has already been checked out + url_no_extras = path_to_url(url_no_extras) + + if url_no_extras.lower().startswith("file:"): + package_name = Link(url_no_extras).egg_fragment + if extras: + return ( + package_name, + url_no_extras, + get_requirement("placeholder" + extras.lower()).extras, + ) + else: + return package_name, url_no_extras, set() + + for version_control in vcs: + if url.lower().startswith(f"{version_control}:"): + url = f"{version_control}+{url}" + break + + link = Link(url) + + if not link.is_vcs: + backends = ", ".join(vcs.all_schemes) + raise InstallationError( + f"{editable_req} is not a valid editable requirement. " + f"It should either be a path to a local project or a VCS URL " + f"(beginning with {backends})." + ) + + package_name = link.egg_fragment + if not package_name: + raise InstallationError( + "Could not detect requirement name for '{}', please specify one " + "with #egg=your_package_name".format(editable_req) + ) + return package_name, url, set() + + +def check_first_requirement_in_file(filename: str) -> None: + """Check if file is parsable as a requirements file. + + This is heavily based on ``pkg_resources.parse_requirements``, but + simplified to just check the first meaningful line. + + :raises InvalidRequirement: If the first meaningful line cannot be parsed + as an requirement. + """ + with open(filename, encoding="utf-8", errors="ignore") as f: + # Create a steppable iterator, so we can handle \-continuations. + lines = ( + line + for line in (line.strip() for line in f) + if line and not line.startswith("#") # Skip blank lines/comments. + ) + + for line in lines: + # Drop comments -- a hash without a space may be in a URL. + if " #" in line: + line = line[: line.find(" #")] + # If there is a line continuation, drop it, and append the next line. + if line.endswith("\\"): + line = line[:-2].strip() + next(lines, "") + Requirement(line) + return + + +def deduce_helpful_msg(req: str) -> str: + """Returns helpful msg in case requirements file does not exist, + or cannot be parsed. + + :params req: Requirements file path + """ + if not os.path.exists(req): + return f" File '{req}' does not exist." + msg = " The path does exist. " + # Try to parse and check if it is a requirements file. + try: + check_first_requirement_in_file(req) + except InvalidRequirement: + logger.debug("Cannot parse '%s' as requirements file", req) + else: + msg += ( + f"The argument you provided " + f"({req}) appears to be a" + f" requirements file. If that is the" + f" case, use the '-r' flag to install" + f" the packages specified within it." + ) + return msg + + +class RequirementParts: + def __init__( + self, + requirement: Optional[Requirement], + link: Optional[Link], + markers: Optional[Marker], + extras: Set[str], + ): + self.requirement = requirement + self.link = link + self.markers = markers + self.extras = extras + + +def parse_req_from_editable(editable_req: str) -> RequirementParts: + name, url, extras_override = parse_editable(editable_req) + + if name is not None: + try: + req: Optional[Requirement] = Requirement(name) + except InvalidRequirement: + raise InstallationError(f"Invalid requirement: '{name}'") + else: + req = None + + link = Link(url) + + return RequirementParts(req, link, None, extras_override) + + +# ---- The actual constructors follow ---- + + +def install_req_from_editable( + editable_req: str, + comes_from: Optional[Union[InstallRequirement, str]] = None, + *, + use_pep517: Optional[bool] = None, + isolated: bool = False, + global_options: Optional[List[str]] = None, + hash_options: Optional[Dict[str, List[str]]] = None, + constraint: bool = False, + user_supplied: bool = False, + permit_editable_wheels: bool = False, + config_settings: Optional[Dict[str, Union[str, List[str]]]] = None, +) -> InstallRequirement: + parts = parse_req_from_editable(editable_req) + + return InstallRequirement( + parts.requirement, + comes_from=comes_from, + user_supplied=user_supplied, + editable=True, + permit_editable_wheels=permit_editable_wheels, + link=parts.link, + constraint=constraint, + use_pep517=use_pep517, + isolated=isolated, + global_options=global_options, + hash_options=hash_options, + config_settings=config_settings, + extras=parts.extras, + ) + + +def _looks_like_path(name: str) -> bool: + """Checks whether the string "looks like" a path on the filesystem. + + This does not check whether the target actually exists, only judge from the + appearance. + + Returns true if any of the following conditions is true: + * a path separator is found (either os.path.sep or os.path.altsep); + * a dot is found (which represents the current directory). + """ + if os.path.sep in name: + return True + if os.path.altsep is not None and os.path.altsep in name: + return True + if name.startswith("."): + return True + return False + + +def _get_url_from_path(path: str, name: str) -> Optional[str]: + """ + First, it checks whether a provided path is an installable directory. If it + is, returns the path. + + If false, check if the path is an archive file (such as a .whl). + The function checks if the path is a file. If false, if the path has + an @, it will treat it as a PEP 440 URL requirement and return the path. + """ + if _looks_like_path(name) and os.path.isdir(path): + if is_installable_dir(path): + return path_to_url(path) + # TODO: The is_installable_dir test here might not be necessary + # now that it is done in load_pyproject_toml too. + raise InstallationError( + f"Directory {name!r} is not installable. Neither 'setup.py' " + "nor 'pyproject.toml' found." + ) + if not is_archive_file(path): + return None + if os.path.isfile(path): + return path_to_url(path) + urlreq_parts = name.split("@", 1) + if len(urlreq_parts) >= 2 and not _looks_like_path(urlreq_parts[0]): + # If the path contains '@' and the part before it does not look + # like a path, try to treat it as a PEP 440 URL req instead. + return None + logger.warning( + "Requirement %r looks like a filename, but the file does not exist", + name, + ) + return path_to_url(path) + + +def parse_req_from_line(name: str, line_source: Optional[str]) -> RequirementParts: + if is_url(name): + marker_sep = "; " + else: + marker_sep = ";" + if marker_sep in name: + name, markers_as_string = name.split(marker_sep, 1) + markers_as_string = markers_as_string.strip() + if not markers_as_string: + markers = None + else: + markers = Marker(markers_as_string) + else: + markers = None + name = name.strip() + req_as_string = None + path = os.path.normpath(os.path.abspath(name)) + link = None + extras_as_string = None + + if is_url(name): + link = Link(name) + else: + p, extras_as_string = _strip_extras(path) + url = _get_url_from_path(p, name) + if url is not None: + link = Link(url) + + # it's a local file, dir, or url + if link: + # Handle relative file URLs + if link.scheme == "file" and re.search(r"\.\./", link.url): + link = Link(path_to_url(os.path.normpath(os.path.abspath(link.path)))) + # wheel file + if link.is_wheel: + wheel = Wheel(link.filename) # can raise InvalidWheelFilename + req_as_string = f"{wheel.name}=={wheel.version}" + else: + # set the req to the egg fragment. when it's not there, this + # will become an 'unnamed' requirement + req_as_string = link.egg_fragment + + # a requirement specifier + else: + req_as_string = name + + extras = convert_extras(extras_as_string) + + def with_source(text: str) -> str: + if not line_source: + return text + return f"{text} (from {line_source})" + + def _parse_req_string(req_as_string: str) -> Requirement: + try: + req = get_requirement(req_as_string) + except InvalidRequirement: + if os.path.sep in req_as_string: + add_msg = "It looks like a path." + add_msg += deduce_helpful_msg(req_as_string) + elif "=" in req_as_string and not any( + op in req_as_string for op in operators + ): + add_msg = "= is not a valid operator. Did you mean == ?" + else: + add_msg = "" + msg = with_source(f"Invalid requirement: {req_as_string!r}") + if add_msg: + msg += f"\nHint: {add_msg}" + raise InstallationError(msg) + else: + # Deprecate extras after specifiers: "name>=1.0[extras]" + # This currently works by accident because _strip_extras() parses + # any extras in the end of the string and those are saved in + # RequirementParts + for spec in req.specifier: + spec_str = str(spec) + if spec_str.endswith("]"): + msg = f"Extras after version '{spec_str}'." + raise InstallationError(msg) + return req + + if req_as_string is not None: + req: Optional[Requirement] = _parse_req_string(req_as_string) + else: + req = None + + return RequirementParts(req, link, markers, extras) + + +def install_req_from_line( + name: str, + comes_from: Optional[Union[str, InstallRequirement]] = None, + *, + use_pep517: Optional[bool] = None, + isolated: bool = False, + global_options: Optional[List[str]] = None, + hash_options: Optional[Dict[str, List[str]]] = None, + constraint: bool = False, + line_source: Optional[str] = None, + user_supplied: bool = False, + config_settings: Optional[Dict[str, Union[str, List[str]]]] = None, +) -> InstallRequirement: + """Creates an InstallRequirement from a name, which might be a + requirement, directory containing 'setup.py', filename, or URL. + + :param line_source: An optional string describing where the line is from, + for logging purposes in case of an error. + """ + parts = parse_req_from_line(name, line_source) + + return InstallRequirement( + parts.requirement, + comes_from, + link=parts.link, + markers=parts.markers, + use_pep517=use_pep517, + isolated=isolated, + global_options=global_options, + hash_options=hash_options, + config_settings=config_settings, + constraint=constraint, + extras=parts.extras, + user_supplied=user_supplied, + ) + + +def install_req_from_req_string( + req_string: str, + comes_from: Optional[InstallRequirement] = None, + isolated: bool = False, + use_pep517: Optional[bool] = None, + user_supplied: bool = False, +) -> InstallRequirement: + try: + req = get_requirement(req_string) + except InvalidRequirement: + raise InstallationError(f"Invalid requirement: '{req_string}'") + + domains_not_allowed = [ + PyPI.file_storage_domain, + TestPyPI.file_storage_domain, + ] + if ( + req.url + and comes_from + and comes_from.link + and comes_from.link.netloc in domains_not_allowed + ): + # Explicitly disallow pypi packages that depend on external urls + raise InstallationError( + "Packages installed from PyPI cannot depend on packages " + "which are not also hosted on PyPI.\n" + f"{comes_from.name} depends on {req} " + ) + + return InstallRequirement( + req, + comes_from, + isolated=isolated, + use_pep517=use_pep517, + user_supplied=user_supplied, + ) + + +def install_req_from_parsed_requirement( + parsed_req: ParsedRequirement, + isolated: bool = False, + use_pep517: Optional[bool] = None, + user_supplied: bool = False, + config_settings: Optional[Dict[str, Union[str, List[str]]]] = None, +) -> InstallRequirement: + if parsed_req.is_editable: + req = install_req_from_editable( + parsed_req.requirement, + comes_from=parsed_req.comes_from, + use_pep517=use_pep517, + constraint=parsed_req.constraint, + isolated=isolated, + user_supplied=user_supplied, + config_settings=config_settings, + ) + + else: + req = install_req_from_line( + parsed_req.requirement, + comes_from=parsed_req.comes_from, + use_pep517=use_pep517, + isolated=isolated, + global_options=( + parsed_req.options.get("global_options", []) + if parsed_req.options + else [] + ), + hash_options=( + parsed_req.options.get("hashes", {}) if parsed_req.options else {} + ), + constraint=parsed_req.constraint, + line_source=parsed_req.line_source, + user_supplied=user_supplied, + config_settings=config_settings, + ) + return req + + +def install_req_from_link_and_ireq( + link: Link, ireq: InstallRequirement +) -> InstallRequirement: + return InstallRequirement( + req=ireq.req, + comes_from=ireq.comes_from, + editable=ireq.editable, + link=link, + markers=ireq.markers, + use_pep517=ireq.use_pep517, + isolated=ireq.isolated, + global_options=ireq.global_options, + hash_options=ireq.hash_options, + config_settings=ireq.config_settings, + user_supplied=ireq.user_supplied, + ) + + +def install_req_drop_extras(ireq: InstallRequirement) -> InstallRequirement: + """ + Creates a new InstallationRequirement using the given template but without + any extras. Sets the original requirement as the new one's parent + (comes_from). + """ + return InstallRequirement( + req=( + _set_requirement_extras(ireq.req, set()) if ireq.req is not None else None + ), + comes_from=ireq, + editable=ireq.editable, + link=ireq.link, + markers=ireq.markers, + use_pep517=ireq.use_pep517, + isolated=ireq.isolated, + global_options=ireq.global_options, + hash_options=ireq.hash_options, + constraint=ireq.constraint, + extras=[], + config_settings=ireq.config_settings, + user_supplied=ireq.user_supplied, + permit_editable_wheels=ireq.permit_editable_wheels, + ) + + +def install_req_extend_extras( + ireq: InstallRequirement, + extras: Collection[str], +) -> InstallRequirement: + """ + Returns a copy of an installation requirement with some additional extras. + Makes a shallow copy of the ireq object. + """ + result = copy.copy(ireq) + result.extras = {*ireq.extras, *extras} + result.req = ( + _set_requirement_extras(ireq.req, result.extras) + if ireq.req is not None + else None + ) + return result diff --git a/venv/lib/python3.12/site-packages/pip/_internal/req/req_file.py b/venv/lib/python3.12/site-packages/pip/_internal/req/req_file.py new file mode 100644 index 0000000..1ef3d5e --- /dev/null +++ b/venv/lib/python3.12/site-packages/pip/_internal/req/req_file.py @@ -0,0 +1,554 @@ +""" +Requirements file parsing +""" + +import logging +import optparse +import os +import re +import shlex +import urllib.parse +from optparse import Values +from typing import ( + TYPE_CHECKING, + Any, + Callable, + Dict, + Generator, + Iterable, + List, + Optional, + Tuple, +) + +from pip._internal.cli import cmdoptions +from pip._internal.exceptions import InstallationError, RequirementsFileParseError +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.encoding import auto_decode +from pip._internal.utils.urls import get_url_scheme + +if TYPE_CHECKING: + # NoReturn introduced in 3.6.2; imported only for type checking to maintain + # pip compatibility with older patch versions of Python 3.6 + from typing import NoReturn + + from pip._internal.index.package_finder import PackageFinder + +__all__ = ["parse_requirements"] + +ReqFileLines = Iterable[Tuple[int, str]] + +LineParser = Callable[[str], Tuple[str, Values]] + +SCHEME_RE = re.compile(r"^(http|https|file):", re.I) +COMMENT_RE = re.compile(r"(^|\s+)#.*$") + +# Matches environment variable-style values in '${MY_VARIABLE_1}' with the +# variable name consisting of only uppercase letters, digits or the '_' +# (underscore). This follows the POSIX standard defined in IEEE Std 1003.1, +# 2013 Edition. +ENV_VAR_RE = re.compile(r"(?P\$\{(?P[A-Z0-9_]+)\})") + +SUPPORTED_OPTIONS: List[Callable[..., optparse.Option]] = [ + cmdoptions.index_url, + cmdoptions.extra_index_url, + cmdoptions.no_index, + cmdoptions.constraints, + cmdoptions.requirements, + cmdoptions.editable, + cmdoptions.find_links, + cmdoptions.no_binary, + cmdoptions.only_binary, + cmdoptions.prefer_binary, + cmdoptions.require_hashes, + cmdoptions.pre, + cmdoptions.trusted_host, + cmdoptions.use_new_feature, +] + +# options to be passed to requirements +SUPPORTED_OPTIONS_REQ: List[Callable[..., optparse.Option]] = [ + cmdoptions.global_options, + cmdoptions.hash, + cmdoptions.config_settings, +] + +SUPPORTED_OPTIONS_EDITABLE_REQ: List[Callable[..., optparse.Option]] = [ + cmdoptions.config_settings, +] + + +# the 'dest' string values +SUPPORTED_OPTIONS_REQ_DEST = [str(o().dest) for o in SUPPORTED_OPTIONS_REQ] +SUPPORTED_OPTIONS_EDITABLE_REQ_DEST = [ + str(o().dest) for o in SUPPORTED_OPTIONS_EDITABLE_REQ +] + +logger = logging.getLogger(__name__) + + +class ParsedRequirement: + def __init__( + self, + requirement: str, + is_editable: bool, + comes_from: str, + constraint: bool, + options: Optional[Dict[str, Any]] = None, + line_source: Optional[str] = None, + ) -> None: + self.requirement = requirement + self.is_editable = is_editable + self.comes_from = comes_from + self.options = options + self.constraint = constraint + self.line_source = line_source + + +class ParsedLine: + def __init__( + self, + filename: str, + lineno: int, + args: str, + opts: Values, + constraint: bool, + ) -> None: + self.filename = filename + self.lineno = lineno + self.opts = opts + self.constraint = constraint + + if args: + self.is_requirement = True + self.is_editable = False + self.requirement = args + elif opts.editables: + self.is_requirement = True + self.is_editable = True + # We don't support multiple -e on one line + self.requirement = opts.editables[0] + else: + self.is_requirement = False + + +def parse_requirements( + filename: str, + session: PipSession, + finder: Optional["PackageFinder"] = None, + options: Optional[optparse.Values] = None, + constraint: bool = False, +) -> Generator[ParsedRequirement, None, None]: + """Parse a requirements file and yield ParsedRequirement instances. + + :param filename: Path or url of requirements file. + :param session: PipSession instance. + :param finder: Instance of pip.index.PackageFinder. + :param options: cli options. + :param constraint: If true, parsing a constraint file rather than + requirements file. + """ + line_parser = get_line_parser(finder) + parser = RequirementsFileParser(session, line_parser) + + for parsed_line in parser.parse(filename, constraint): + parsed_req = handle_line( + parsed_line, options=options, finder=finder, session=session + ) + if parsed_req is not None: + yield parsed_req + + +def preprocess(content: str) -> ReqFileLines: + """Split, filter, and join lines, and return a line iterator + + :param content: the content of the requirements file + """ + lines_enum: ReqFileLines = enumerate(content.splitlines(), start=1) + lines_enum = join_lines(lines_enum) + lines_enum = ignore_comments(lines_enum) + lines_enum = expand_env_variables(lines_enum) + return lines_enum + + +def handle_requirement_line( + line: ParsedLine, + options: Optional[optparse.Values] = None, +) -> ParsedRequirement: + # preserve for the nested code path + line_comes_from = "{} {} (line {})".format( + "-c" if line.constraint else "-r", + line.filename, + line.lineno, + ) + + assert line.is_requirement + + # get the options that apply to requirements + if line.is_editable: + supported_dest = SUPPORTED_OPTIONS_EDITABLE_REQ_DEST + else: + supported_dest = SUPPORTED_OPTIONS_REQ_DEST + req_options = {} + for dest in supported_dest: + if dest in line.opts.__dict__ and line.opts.__dict__[dest]: + req_options[dest] = line.opts.__dict__[dest] + + line_source = f"line {line.lineno} of {line.filename}" + return ParsedRequirement( + requirement=line.requirement, + is_editable=line.is_editable, + comes_from=line_comes_from, + constraint=line.constraint, + options=req_options, + line_source=line_source, + ) + + +def handle_option_line( + opts: Values, + filename: str, + lineno: int, + finder: Optional["PackageFinder"] = None, + options: Optional[optparse.Values] = None, + session: Optional[PipSession] = None, +) -> None: + if opts.hashes: + logger.warning( + "%s line %s has --hash but no requirement, and will be ignored.", + filename, + lineno, + ) + + if options: + # percolate options upward + if opts.require_hashes: + options.require_hashes = opts.require_hashes + if opts.features_enabled: + options.features_enabled.extend( + f for f in opts.features_enabled if f not in options.features_enabled + ) + + # set finder options + if finder: + find_links = finder.find_links + index_urls = finder.index_urls + no_index = finder.search_scope.no_index + if opts.no_index is True: + no_index = True + index_urls = [] + if opts.index_url and not no_index: + index_urls = [opts.index_url] + if opts.extra_index_urls and not no_index: + index_urls.extend(opts.extra_index_urls) + if opts.find_links: + # FIXME: it would be nice to keep track of the source + # of the find_links: support a find-links local path + # relative to a requirements file. + value = opts.find_links[0] + req_dir = os.path.dirname(os.path.abspath(filename)) + relative_to_reqs_file = os.path.join(req_dir, value) + if os.path.exists(relative_to_reqs_file): + value = relative_to_reqs_file + find_links.append(value) + + if session: + # We need to update the auth urls in session + session.update_index_urls(index_urls) + + search_scope = SearchScope( + find_links=find_links, + index_urls=index_urls, + no_index=no_index, + ) + finder.search_scope = search_scope + + if opts.pre: + finder.set_allow_all_prereleases() + + if opts.prefer_binary: + finder.set_prefer_binary() + + if session: + for host in opts.trusted_hosts or []: + source = f"line {lineno} of {filename}" + session.add_trusted_host(host, source=source) + + +def handle_line( + line: ParsedLine, + options: Optional[optparse.Values] = None, + finder: Optional["PackageFinder"] = None, + session: Optional[PipSession] = None, +) -> Optional[ParsedRequirement]: + """Handle a single parsed requirements line; This can result in + creating/yielding requirements, or updating the finder. + + :param line: The parsed line to be processed. + :param options: CLI options. + :param finder: The finder - updated by non-requirement lines. + :param session: The session - updated by non-requirement lines. + + Returns a ParsedRequirement object if the line is a requirement line, + otherwise returns None. + + For lines that contain requirements, the only options that have an effect + are from SUPPORTED_OPTIONS_REQ, and they are scoped to the + requirement. Other options from SUPPORTED_OPTIONS may be present, but are + ignored. + + For lines that do not contain requirements, the only options that have an + effect are from SUPPORTED_OPTIONS. Options from SUPPORTED_OPTIONS_REQ may + be present, but are ignored. These lines may contain multiple options + (although our docs imply only one is supported), and all our parsed and + affect the finder. + """ + + if line.is_requirement: + parsed_req = handle_requirement_line(line, options) + return parsed_req + else: + handle_option_line( + line.opts, + line.filename, + line.lineno, + finder, + options, + session, + ) + return None + + +class RequirementsFileParser: + def __init__( + self, + session: PipSession, + line_parser: LineParser, + ) -> None: + self._session = session + self._line_parser = line_parser + + def parse( + self, filename: str, constraint: bool + ) -> Generator[ParsedLine, None, None]: + """Parse a given file, yielding parsed lines.""" + yield from self._parse_and_recurse(filename, constraint) + + def _parse_and_recurse( + self, filename: str, constraint: bool + ) -> Generator[ParsedLine, None, None]: + for line in self._parse_file(filename, constraint): + if not line.is_requirement and ( + line.opts.requirements or line.opts.constraints + ): + # parse a nested requirements file + if line.opts.requirements: + req_path = line.opts.requirements[0] + nested_constraint = False + else: + req_path = line.opts.constraints[0] + nested_constraint = True + + # original file is over http + if SCHEME_RE.search(filename): + # do a url join so relative paths work + req_path = urllib.parse.urljoin(filename, req_path) + # original file and nested file are paths + elif not SCHEME_RE.search(req_path): + # do a join so relative paths work + req_path = os.path.join( + os.path.dirname(filename), + req_path, + ) + + yield from self._parse_and_recurse(req_path, nested_constraint) + else: + yield line + + def _parse_file( + self, filename: str, constraint: bool + ) -> Generator[ParsedLine, None, None]: + _, content = get_file_content(filename, self._session) + + lines_enum = preprocess(content) + + for line_number, line in lines_enum: + try: + args_str, opts = self._line_parser(line) + except OptionParsingError as e: + # add offending line + msg = f"Invalid requirement: {line}\n{e.msg}" + raise RequirementsFileParseError(msg) + + yield ParsedLine( + filename, + line_number, + args_str, + opts, + constraint, + ) + + +def get_line_parser(finder: Optional["PackageFinder"]) -> LineParser: + def parse_line(line: str) -> Tuple[str, Values]: + # Build new parser for each line since it accumulates appendable + # options. + parser = build_parser() + defaults = parser.get_default_values() + defaults.index_url = None + if finder: + defaults.format_control = finder.format_control + + args_str, options_str = break_args_options(line) + + try: + options = shlex.split(options_str) + except ValueError as e: + raise OptionParsingError(f"Could not split options: {options_str}") from e + + opts, _ = parser.parse_args(options, defaults) + + return args_str, opts + + return parse_line + + +def break_args_options(line: str) -> Tuple[str, str]: + """Break up the line into an args and options string. We only want to shlex + (and then optparse) the options, not the args. args can contain markers + which are corrupted by shlex. + """ + tokens = line.split(" ") + args = [] + options = tokens[:] + for token in tokens: + if token.startswith("-") or token.startswith("--"): + break + else: + args.append(token) + options.pop(0) + return " ".join(args), " ".join(options) + + +class OptionParsingError(Exception): + def __init__(self, msg: str) -> None: + self.msg = msg + + +def build_parser() -> optparse.OptionParser: + """ + Return a parser for parsing requirement lines + """ + parser = optparse.OptionParser(add_help_option=False) + + option_factories = SUPPORTED_OPTIONS + SUPPORTED_OPTIONS_REQ + for option_factory in option_factories: + option = option_factory() + parser.add_option(option) + + # By default optparse sys.exits on parsing errors. We want to wrap + # that in our own exception. + def parser_exit(self: Any, msg: str) -> "NoReturn": + raise OptionParsingError(msg) + + # NOTE: mypy disallows assigning to a method + # https://github.com/python/mypy/issues/2427 + parser.exit = parser_exit # type: ignore + + return parser + + +def join_lines(lines_enum: ReqFileLines) -> ReqFileLines: + """Joins a line ending in '\' with the previous line (except when following + comments). The joined line takes on the index of the first line. + """ + primary_line_number = None + new_line: List[str] = [] + for line_number, line in lines_enum: + if not line.endswith("\\") or COMMENT_RE.match(line): + if COMMENT_RE.match(line): + # this ensures comments are always matched later + line = " " + line + if new_line: + new_line.append(line) + assert primary_line_number is not None + yield primary_line_number, "".join(new_line) + new_line = [] + else: + yield line_number, line + else: + if not new_line: + primary_line_number = line_number + new_line.append(line.strip("\\")) + + # last line contains \ + if new_line: + assert primary_line_number is not None + yield primary_line_number, "".join(new_line) + + # TODO: handle space after '\'. + + +def ignore_comments(lines_enum: ReqFileLines) -> ReqFileLines: + """ + Strips comments and filter empty lines. + """ + for line_number, line in lines_enum: + line = COMMENT_RE.sub("", line) + line = line.strip() + if line: + yield line_number, line + + +def expand_env_variables(lines_enum: ReqFileLines) -> ReqFileLines: + """Replace all environment variables that can be retrieved via `os.getenv`. + + The only allowed format for environment variables defined in the + requirement file is `${MY_VARIABLE_1}` to ensure two things: + + 1. Strings that contain a `$` aren't accidentally (partially) expanded. + 2. Ensure consistency across platforms for requirement files. + + These points are the result of a discussion on the `github pull + request #3514 `_. + + Valid characters in variable names follow the `POSIX standard + `_ and are limited + to uppercase letter, digits and the `_` (underscore). + """ + for line_number, line in lines_enum: + for env_var, var_name in ENV_VAR_RE.findall(line): + value = os.getenv(var_name) + if not value: + continue + + line = line.replace(env_var, value) + + yield line_number, line + + +def get_file_content(url: str, session: PipSession) -> Tuple[str, str]: + """Gets the content of a file; it may be a filename, file: URL, or + http: URL. Returns (location, content). Content is unicode. + Respects # -*- coding: declarations on the retrieved files. + + :param url: File path or url. + :param session: PipSession instance. + """ + scheme = get_url_scheme(url) + + # Pip has special support for file:// URLs (LocalFSAdapter). + if scheme in ["http", "https", "file"]: + resp = session.get(url) + raise_for_status(resp) + return resp.url, resp.text + + # Assume this is a bare path. + try: + with open(url, "rb") as f: + content = auto_decode(f.read()) + except OSError as exc: + raise InstallationError(f"Could not open requirements file: {exc}") + return url, content diff --git a/venv/lib/python3.12/site-packages/pip/_internal/req/req_install.py b/venv/lib/python3.12/site-packages/pip/_internal/req/req_install.py new file mode 100644 index 0000000..a65611c --- /dev/null +++ b/venv/lib/python3.12/site-packages/pip/_internal/req/req_install.py @@ -0,0 +1,923 @@ +import functools +import logging +import os +import shutil +import sys +import uuid +import zipfile +from optparse import Values +from pathlib import Path +from typing import Any, Collection, Dict, Iterable, List, Optional, Sequence, Union + +from pip._vendor.packaging.markers import Marker +from pip._vendor.packaging.requirements import Requirement +from pip._vendor.packaging.specifiers import SpecifierSet +from pip._vendor.packaging.utils import canonicalize_name +from pip._vendor.packaging.version import Version +from pip._vendor.packaging.version import parse as parse_version +from pip._vendor.pyproject_hooks import BuildBackendHookCaller + +from pip._internal.build_env import BuildEnvironment, NoOpBuildEnvironment +from pip._internal.exceptions import InstallationError, PreviousBuildDirError +from pip._internal.locations import get_scheme +from pip._internal.metadata import ( + BaseDistribution, + get_default_environment, + get_directory_distribution, + get_wheel_distribution, +) +from pip._internal.metadata.base import FilesystemWheel +from pip._internal.models.direct_url import DirectUrl +from pip._internal.models.link import Link +from pip._internal.operations.build.metadata import generate_metadata +from pip._internal.operations.build.metadata_editable import generate_editable_metadata +from pip._internal.operations.build.metadata_legacy import ( + generate_metadata as generate_metadata_legacy, +) +from pip._internal.operations.install.editable_legacy import ( + install_editable as install_editable_legacy, +) +from pip._internal.operations.install.wheel import install_wheel +from pip._internal.pyproject import load_pyproject_toml, make_pyproject_path +from pip._internal.req.req_uninstall import UninstallPathSet +from pip._internal.utils.deprecation import deprecated +from pip._internal.utils.hashes import Hashes +from pip._internal.utils.misc import ( + ConfiguredBuildBackendHookCaller, + ask_path_exists, + backup_dir, + display_path, + hide_url, + is_installable_dir, + redact_auth_from_requirement, + redact_auth_from_url, +) +from pip._internal.utils.packaging import safe_extra +from pip._internal.utils.subprocess import runner_with_spinner_message +from pip._internal.utils.temp_dir import TempDirectory, tempdir_kinds +from pip._internal.utils.unpacking import unpack_file +from pip._internal.utils.virtualenv import running_under_virtualenv +from pip._internal.vcs import vcs + +logger = logging.getLogger(__name__) + + +class InstallRequirement: + """ + Represents something that may be installed later on, may have information + about where to fetch the relevant requirement and also contains logic for + installing the said requirement. + """ + + def __init__( + self, + req: Optional[Requirement], + comes_from: Optional[Union[str, "InstallRequirement"]], + editable: bool = False, + link: Optional[Link] = None, + markers: Optional[Marker] = None, + use_pep517: Optional[bool] = None, + isolated: bool = False, + *, + global_options: Optional[List[str]] = None, + hash_options: Optional[Dict[str, List[str]]] = None, + config_settings: Optional[Dict[str, Union[str, List[str]]]] = None, + constraint: bool = False, + extras: Collection[str] = (), + user_supplied: bool = False, + permit_editable_wheels: bool = False, + ) -> None: + assert req is None or isinstance(req, Requirement), req + self.req = req + self.comes_from = comes_from + self.constraint = constraint + self.editable = editable + self.permit_editable_wheels = permit_editable_wheels + + # source_dir is the local directory where the linked requirement is + # located, or unpacked. In case unpacking is needed, creating and + # populating source_dir is done by the RequirementPreparer. Note this + # is not necessarily the directory where pyproject.toml or setup.py is + # located - that one is obtained via unpacked_source_directory. + self.source_dir: Optional[str] = None + if self.editable: + assert link + if link.is_file: + self.source_dir = os.path.normpath(os.path.abspath(link.file_path)) + + # original_link is the direct URL that was provided by the user for the + # requirement, either directly or via a constraints file. + if link is None and req and req.url: + # PEP 508 URL requirement + link = Link(req.url) + self.link = self.original_link = link + + # When this InstallRequirement is a wheel obtained from the cache of locally + # built wheels, this is the source link corresponding to the cache entry, which + # was used to download and build the cached wheel. + self.cached_wheel_source_link: Optional[Link] = None + + # Information about the location of the artifact that was downloaded . This + # property is guaranteed to be set in resolver results. + self.download_info: Optional[DirectUrl] = None + + # Path to any downloaded or already-existing package. + self.local_file_path: Optional[str] = None + if self.link and self.link.is_file: + self.local_file_path = self.link.file_path + + if extras: + self.extras = extras + elif req: + self.extras = req.extras + else: + self.extras = set() + if markers is None and req: + markers = req.marker + self.markers = markers + + # This holds the Distribution object if this requirement is already installed. + self.satisfied_by: Optional[BaseDistribution] = None + # Whether the installation process should try to uninstall an existing + # distribution before installing this requirement. + self.should_reinstall = False + # Temporary build location + self._temp_build_dir: Optional[TempDirectory] = None + # Set to True after successful installation + self.install_succeeded: Optional[bool] = None + # Supplied options + self.global_options = global_options if global_options else [] + self.hash_options = hash_options if hash_options else {} + self.config_settings = config_settings + # Set to True after successful preparation of this requirement + self.prepared = False + # User supplied requirement are explicitly requested for installation + # by the user via CLI arguments or requirements files, as opposed to, + # e.g. dependencies, extras or constraints. + self.user_supplied = user_supplied + + self.isolated = isolated + self.build_env: BuildEnvironment = NoOpBuildEnvironment() + + # For PEP 517, the directory where we request the project metadata + # gets stored. We need this to pass to build_wheel, so the backend + # can ensure that the wheel matches the metadata (see the PEP for + # details). + self.metadata_directory: Optional[str] = None + + # The static build requirements (from pyproject.toml) + self.pyproject_requires: Optional[List[str]] = None + + # Build requirements that we will check are available + self.requirements_to_check: List[str] = [] + + # The PEP 517 backend we should use to build the project + self.pep517_backend: Optional[BuildBackendHookCaller] = None + + # Are we using PEP 517 for this requirement? + # After pyproject.toml has been loaded, the only valid values are True + # and False. Before loading, None is valid (meaning "use the default"). + # Setting an explicit value before loading pyproject.toml is supported, + # but after loading this flag should be treated as read only. + self.use_pep517 = use_pep517 + + # If config settings are provided, enforce PEP 517. + if self.config_settings: + if self.use_pep517 is False: + logger.warning( + "--no-use-pep517 ignored for %s " + "because --config-settings are specified.", + self, + ) + self.use_pep517 = True + + # This requirement needs more preparation before it can be built + self.needs_more_preparation = False + + # This requirement needs to be unpacked before it can be installed. + self._archive_source: Optional[Path] = None + + def __str__(self) -> str: + if self.req: + s = redact_auth_from_requirement(self.req) + if self.link: + s += f" from {redact_auth_from_url(self.link.url)}" + elif self.link: + s = redact_auth_from_url(self.link.url) + else: + s = "" + if self.satisfied_by is not None: + if self.satisfied_by.location is not None: + location = display_path(self.satisfied_by.location) + else: + location = "" + s += f" in {location}" + if self.comes_from: + if isinstance(self.comes_from, str): + comes_from: Optional[str] = self.comes_from + else: + comes_from = self.comes_from.from_path() + if comes_from: + s += f" (from {comes_from})" + return s + + def __repr__(self) -> str: + return "<{} object: {} editable={!r}>".format( + self.__class__.__name__, str(self), self.editable + ) + + def format_debug(self) -> str: + """An un-tested helper for getting state, for debugging.""" + attributes = vars(self) + names = sorted(attributes) + + state = (f"{attr}={attributes[attr]!r}" for attr in sorted(names)) + return "<{name} object: {{{state}}}>".format( + name=self.__class__.__name__, + state=", ".join(state), + ) + + # Things that are valid for all kinds of requirements? + @property + def name(self) -> Optional[str]: + if self.req is None: + return None + return self.req.name + + @functools.lru_cache() # use cached_property in python 3.8+ + def supports_pyproject_editable(self) -> bool: + if not self.use_pep517: + return False + assert self.pep517_backend + with self.build_env: + runner = runner_with_spinner_message( + "Checking if build backend supports build_editable" + ) + with self.pep517_backend.subprocess_runner(runner): + return "build_editable" in self.pep517_backend._supported_features() + + @property + def specifier(self) -> SpecifierSet: + assert self.req is not None + return self.req.specifier + + @property + def is_direct(self) -> bool: + """Whether this requirement was specified as a direct URL.""" + return self.original_link is not None + + @property + def is_pinned(self) -> bool: + """Return whether I am pinned to an exact version. + + For example, some-package==1.2 is pinned; some-package>1.2 is not. + """ + assert self.req is not None + specifiers = self.req.specifier + return len(specifiers) == 1 and next(iter(specifiers)).operator in {"==", "==="} + + def match_markers(self, extras_requested: Optional[Iterable[str]] = None) -> bool: + if not extras_requested: + # Provide an extra to safely evaluate the markers + # without matching any extra + extras_requested = ("",) + if self.markers is not None: + return any( + self.markers.evaluate({"extra": extra}) + # TODO: Remove these two variants when packaging is upgraded to + # support the marker comparison logic specified in PEP 685. + or self.markers.evaluate({"extra": safe_extra(extra)}) + or self.markers.evaluate({"extra": canonicalize_name(extra)}) + for extra in extras_requested + ) + else: + return True + + @property + def has_hash_options(self) -> bool: + """Return whether any known-good hashes are specified as options. + + These activate --require-hashes mode; hashes specified as part of a + URL do not. + + """ + return bool(self.hash_options) + + def hashes(self, trust_internet: bool = True) -> Hashes: + """Return a hash-comparer that considers my option- and URL-based + hashes to be known-good. + + Hashes in URLs--ones embedded in the requirements file, not ones + downloaded from an index server--are almost peers with ones from + flags. They satisfy --require-hashes (whether it was implicitly or + explicitly activated) but do not activate it. md5 and sha224 are not + allowed in flags, which should nudge people toward good algos. We + always OR all hashes together, even ones from URLs. + + :param trust_internet: Whether to trust URL-based (#md5=...) hashes + downloaded from the internet, as by populate_link() + + """ + good_hashes = self.hash_options.copy() + if trust_internet: + link = self.link + elif self.is_direct and self.user_supplied: + link = self.original_link + else: + link = None + if link and link.hash: + assert link.hash_name is not None + good_hashes.setdefault(link.hash_name, []).append(link.hash) + return Hashes(good_hashes) + + def from_path(self) -> Optional[str]: + """Format a nice indicator to show where this "comes from" """ + if self.req is None: + return None + s = str(self.req) + if self.comes_from: + comes_from: Optional[str] + if isinstance(self.comes_from, str): + comes_from = self.comes_from + else: + comes_from = self.comes_from.from_path() + if comes_from: + s += "->" + comes_from + return s + + def ensure_build_location( + self, build_dir: str, autodelete: bool, parallel_builds: bool + ) -> str: + assert build_dir is not None + if self._temp_build_dir is not None: + assert self._temp_build_dir.path + return self._temp_build_dir.path + if self.req is None: + # Some systems have /tmp as a symlink which confuses custom + # builds (such as numpy). Thus, we ensure that the real path + # is returned. + self._temp_build_dir = TempDirectory( + kind=tempdir_kinds.REQ_BUILD, globally_managed=True + ) + + return self._temp_build_dir.path + + # This is the only remaining place where we manually determine the path + # for the temporary directory. It is only needed for editables where + # it is the value of the --src option. + + # When parallel builds are enabled, add a UUID to the build directory + # name so multiple builds do not interfere with each other. + dir_name: str = canonicalize_name(self.req.name) + if parallel_builds: + dir_name = f"{dir_name}_{uuid.uuid4().hex}" + + # FIXME: Is there a better place to create the build_dir? (hg and bzr + # need this) + if not os.path.exists(build_dir): + logger.debug("Creating directory %s", build_dir) + os.makedirs(build_dir) + actual_build_dir = os.path.join(build_dir, dir_name) + # `None` indicates that we respect the globally-configured deletion + # settings, which is what we actually want when auto-deleting. + delete_arg = None if autodelete else False + return TempDirectory( + path=actual_build_dir, + delete=delete_arg, + kind=tempdir_kinds.REQ_BUILD, + globally_managed=True, + ).path + + def _set_requirement(self) -> None: + """Set requirement after generating metadata.""" + assert self.req is None + assert self.metadata is not None + assert self.source_dir is not None + + # Construct a Requirement object from the generated metadata + if isinstance(parse_version(self.metadata["Version"]), Version): + op = "==" + else: + op = "===" + + self.req = Requirement( + "".join( + [ + self.metadata["Name"], + op, + self.metadata["Version"], + ] + ) + ) + + def warn_on_mismatching_name(self) -> None: + assert self.req is not None + metadata_name = canonicalize_name(self.metadata["Name"]) + if canonicalize_name(self.req.name) == metadata_name: + # Everything is fine. + return + + # If we're here, there's a mismatch. Log a warning about it. + logger.warning( + "Generating metadata for package %s " + "produced metadata for project name %s. Fix your " + "#egg=%s fragments.", + self.name, + metadata_name, + self.name, + ) + self.req = Requirement(metadata_name) + + def check_if_exists(self, use_user_site: bool) -> None: + """Find an installed distribution that satisfies or conflicts + with this requirement, and set self.satisfied_by or + self.should_reinstall appropriately. + """ + if self.req is None: + return + existing_dist = get_default_environment().get_distribution(self.req.name) + if not existing_dist: + return + + version_compatible = self.req.specifier.contains( + existing_dist.version, + prereleases=True, + ) + if not version_compatible: + self.satisfied_by = None + if use_user_site: + if existing_dist.in_usersite: + self.should_reinstall = True + elif running_under_virtualenv() and existing_dist.in_site_packages: + raise InstallationError( + f"Will not install to the user site because it will " + f"lack sys.path precedence to {existing_dist.raw_name} " + f"in {existing_dist.location}" + ) + else: + self.should_reinstall = True + else: + if self.editable: + self.should_reinstall = True + # when installing editables, nothing pre-existing should ever + # satisfy + self.satisfied_by = None + else: + self.satisfied_by = existing_dist + + # Things valid for wheels + @property + def is_wheel(self) -> bool: + if not self.link: + return False + return self.link.is_wheel + + @property + def is_wheel_from_cache(self) -> bool: + # When True, it means that this InstallRequirement is a local wheel file in the + # cache of locally built wheels. + return self.cached_wheel_source_link is not None + + # Things valid for sdists + @property + def unpacked_source_directory(self) -> str: + assert self.source_dir, f"No source dir for {self}" + return os.path.join( + self.source_dir, self.link and self.link.subdirectory_fragment or "" + ) + + @property + def setup_py_path(self) -> str: + assert self.source_dir, f"No source dir for {self}" + setup_py = os.path.join(self.unpacked_source_directory, "setup.py") + + return setup_py + + @property + def setup_cfg_path(self) -> str: + assert self.source_dir, f"No source dir for {self}" + setup_cfg = os.path.join(self.unpacked_source_directory, "setup.cfg") + + return setup_cfg + + @property + def pyproject_toml_path(self) -> str: + assert self.source_dir, f"No source dir for {self}" + return make_pyproject_path(self.unpacked_source_directory) + + def load_pyproject_toml(self) -> None: + """Load the pyproject.toml file. + + After calling this routine, all of the attributes related to PEP 517 + processing for this requirement have been set. In particular, the + use_pep517 attribute can be used to determine whether we should + follow the PEP 517 or legacy (setup.py) code path. + """ + pyproject_toml_data = load_pyproject_toml( + self.use_pep517, self.pyproject_toml_path, self.setup_py_path, str(self) + ) + + if pyproject_toml_data is None: + assert not self.config_settings + self.use_pep517 = False + return + + self.use_pep517 = True + requires, backend, check, backend_path = pyproject_toml_data + self.requirements_to_check = check + self.pyproject_requires = requires + self.pep517_backend = ConfiguredBuildBackendHookCaller( + self, + self.unpacked_source_directory, + backend, + backend_path=backend_path, + ) + + def isolated_editable_sanity_check(self) -> None: + """Check that an editable requirement if valid for use with PEP 517/518. + + This verifies that an editable that has a pyproject.toml either supports PEP 660 + or as a setup.py or a setup.cfg + """ + if ( + self.editable + and self.use_pep517 + and not self.supports_pyproject_editable() + and not os.path.isfile(self.setup_py_path) + and not os.path.isfile(self.setup_cfg_path) + ): + raise InstallationError( + f"Project {self} has a 'pyproject.toml' and its build " + f"backend is missing the 'build_editable' hook. Since it does not " + f"have a 'setup.py' nor a 'setup.cfg', " + f"it cannot be installed in editable mode. " + f"Consider using a build backend that supports PEP 660." + ) + + def prepare_metadata(self) -> None: + """Ensure that project metadata is available. + + Under PEP 517 and PEP 660, call the backend hook to prepare the metadata. + Under legacy processing, call setup.py egg-info. + """ + assert self.source_dir, f"No source dir for {self}" + details = self.name or f"from {self.link}" + + if self.use_pep517: + assert self.pep517_backend is not None + if ( + self.editable + and self.permit_editable_wheels + and self.supports_pyproject_editable() + ): + self.metadata_directory = generate_editable_metadata( + build_env=self.build_env, + backend=self.pep517_backend, + details=details, + ) + else: + self.metadata_directory = generate_metadata( + build_env=self.build_env, + backend=self.pep517_backend, + details=details, + ) + else: + self.metadata_directory = generate_metadata_legacy( + build_env=self.build_env, + setup_py_path=self.setup_py_path, + source_dir=self.unpacked_source_directory, + isolated=self.isolated, + details=details, + ) + + # Act on the newly generated metadata, based on the name and version. + if not self.name: + self._set_requirement() + else: + self.warn_on_mismatching_name() + + self.assert_source_matches_version() + + @property + def metadata(self) -> Any: + if not hasattr(self, "_metadata"): + self._metadata = self.get_dist().metadata + + return self._metadata + + def get_dist(self) -> BaseDistribution: + if self.metadata_directory: + return get_directory_distribution(self.metadata_directory) + elif self.local_file_path and self.is_wheel: + assert self.req is not None + return get_wheel_distribution( + FilesystemWheel(self.local_file_path), + canonicalize_name(self.req.name), + ) + raise AssertionError( + f"InstallRequirement {self} has no metadata directory and no wheel: " + f"can't make a distribution." + ) + + def assert_source_matches_version(self) -> None: + assert self.source_dir, f"No source dir for {self}" + version = self.metadata["version"] + if self.req and self.req.specifier and version not in self.req.specifier: + logger.warning( + "Requested %s, but installing version %s", + self, + version, + ) + else: + logger.debug( + "Source in %s has version %s, which satisfies requirement %s", + display_path(self.source_dir), + version, + self, + ) + + # For both source distributions and editables + def ensure_has_source_dir( + self, + parent_dir: str, + autodelete: bool = False, + parallel_builds: bool = False, + ) -> None: + """Ensure that a source_dir is set. + + This will create a temporary build dir if the name of the requirement + isn't known yet. + + :param parent_dir: The ideal pip parent_dir for the source_dir. + Generally src_dir for editables and build_dir for sdists. + :return: self.source_dir + """ + if self.source_dir is None: + self.source_dir = self.ensure_build_location( + parent_dir, + autodelete=autodelete, + parallel_builds=parallel_builds, + ) + + def needs_unpacked_archive(self, archive_source: Path) -> None: + assert self._archive_source is None + self._archive_source = archive_source + + def ensure_pristine_source_checkout(self) -> None: + """Ensure the source directory has not yet been built in.""" + assert self.source_dir is not None + if self._archive_source is not None: + unpack_file(str(self._archive_source), self.source_dir) + elif is_installable_dir(self.source_dir): + # If a checkout exists, it's unwise to keep going. + # version inconsistencies are logged later, but do not fail + # the installation. + raise PreviousBuildDirError( + f"pip can't proceed with requirements '{self}' due to a " + f"pre-existing build directory ({self.source_dir}). This is likely " + "due to a previous installation that failed . pip is " + "being responsible and not assuming it can delete this. " + "Please delete it and try again." + ) + + # For editable installations + def update_editable(self) -> None: + if not self.link: + logger.debug( + "Cannot update repository at %s; repository location is unknown", + self.source_dir, + ) + return + assert self.editable + assert self.source_dir + if self.link.scheme == "file": + # Static paths don't get updated + return + vcs_backend = vcs.get_backend_for_scheme(self.link.scheme) + # Editable requirements are validated in Requirement constructors. + # So here, if it's neither a path nor a valid VCS URL, it's a bug. + assert vcs_backend, f"Unsupported VCS URL {self.link.url}" + hidden_url = hide_url(self.link.url) + vcs_backend.obtain(self.source_dir, url=hidden_url, verbosity=0) + + # Top-level Actions + def uninstall( + self, auto_confirm: bool = False, verbose: bool = False + ) -> Optional[UninstallPathSet]: + """ + Uninstall the distribution currently satisfying this requirement. + + Prompts before removing or modifying files unless + ``auto_confirm`` is True. + + Refuses to delete or modify files outside of ``sys.prefix`` - + thus uninstallation within a virtual environment can only + modify that virtual environment, even if the virtualenv is + linked to global site-packages. + + """ + assert self.req + dist = get_default_environment().get_distribution(self.req.name) + if not dist: + logger.warning("Skipping %s as it is not installed.", self.name) + return None + logger.info("Found existing installation: %s", dist) + + uninstalled_pathset = UninstallPathSet.from_dist(dist) + uninstalled_pathset.remove(auto_confirm, verbose) + return uninstalled_pathset + + def _get_archive_name(self, path: str, parentdir: str, rootdir: str) -> str: + def _clean_zip_name(name: str, prefix: str) -> str: + assert name.startswith( + prefix + os.path.sep + ), f"name {name!r} doesn't start with prefix {prefix!r}" + name = name[len(prefix) + 1 :] + name = name.replace(os.path.sep, "/") + return name + + assert self.req is not None + path = os.path.join(parentdir, path) + name = _clean_zip_name(path, rootdir) + return self.req.name + "/" + name + + def archive(self, build_dir: Optional[str]) -> None: + """Saves archive to provided build_dir. + + Used for saving downloaded VCS requirements as part of `pip download`. + """ + assert self.source_dir + if build_dir is None: + return + + create_archive = True + archive_name = "{}-{}.zip".format(self.name, self.metadata["version"]) + archive_path = os.path.join(build_dir, archive_name) + + if os.path.exists(archive_path): + response = ask_path_exists( + f"The file {display_path(archive_path)} exists. (i)gnore, (w)ipe, " + "(b)ackup, (a)bort ", + ("i", "w", "b", "a"), + ) + if response == "i": + create_archive = False + elif response == "w": + logger.warning("Deleting %s", display_path(archive_path)) + os.remove(archive_path) + elif response == "b": + dest_file = backup_dir(archive_path) + logger.warning( + "Backing up %s to %s", + display_path(archive_path), + display_path(dest_file), + ) + shutil.move(archive_path, dest_file) + elif response == "a": + sys.exit(-1) + + if not create_archive: + return + + zip_output = zipfile.ZipFile( + archive_path, + "w", + zipfile.ZIP_DEFLATED, + allowZip64=True, + ) + with zip_output: + dir = os.path.normcase(os.path.abspath(self.unpacked_source_directory)) + for dirpath, dirnames, filenames in os.walk(dir): + for dirname in dirnames: + dir_arcname = self._get_archive_name( + dirname, + parentdir=dirpath, + rootdir=dir, + ) + zipdir = zipfile.ZipInfo(dir_arcname + "/") + zipdir.external_attr = 0x1ED << 16 # 0o755 + zip_output.writestr(zipdir, "") + for filename in filenames: + file_arcname = self._get_archive_name( + filename, + parentdir=dirpath, + rootdir=dir, + ) + filename = os.path.join(dirpath, filename) + zip_output.write(filename, file_arcname) + + logger.info("Saved %s", display_path(archive_path)) + + def install( + self, + global_options: Optional[Sequence[str]] = None, + root: Optional[str] = None, + home: Optional[str] = None, + prefix: Optional[str] = None, + warn_script_location: bool = True, + use_user_site: bool = False, + pycompile: bool = True, + ) -> None: + assert self.req is not None + scheme = get_scheme( + self.req.name, + user=use_user_site, + home=home, + root=root, + isolated=self.isolated, + prefix=prefix, + ) + + if self.editable and not self.is_wheel: + if self.config_settings: + logger.warning( + "--config-settings ignored for legacy editable install of %s. " + "Consider upgrading to a version of setuptools " + "that supports PEP 660 (>= 64).", + self, + ) + install_editable_legacy( + global_options=global_options if global_options is not None else [], + prefix=prefix, + home=home, + use_user_site=use_user_site, + name=self.req.name, + setup_py_path=self.setup_py_path, + isolated=self.isolated, + build_env=self.build_env, + unpacked_source_directory=self.unpacked_source_directory, + ) + self.install_succeeded = True + return + + assert self.is_wheel + assert self.local_file_path + + install_wheel( + self.req.name, + self.local_file_path, + scheme=scheme, + req_description=str(self.req), + pycompile=pycompile, + warn_script_location=warn_script_location, + direct_url=self.download_info if self.is_direct else None, + requested=self.user_supplied, + ) + self.install_succeeded = True + + +def check_invalid_constraint_type(req: InstallRequirement) -> str: + # Check for unsupported forms + problem = "" + if not req.name: + problem = "Unnamed requirements are not allowed as constraints" + elif req.editable: + problem = "Editable requirements are not allowed as constraints" + elif req.extras: + problem = "Constraints cannot have extras" + + if problem: + deprecated( + reason=( + "Constraints are only allowed to take the form of a package " + "name and a version specifier. Other forms were originally " + "permitted as an accident of the implementation, but were " + "undocumented. The new implementation of the resolver no " + "longer supports these forms." + ), + replacement="replacing the constraint with a requirement", + # No plan yet for when the new resolver becomes default + gone_in=None, + issue=8210, + ) + + return problem + + +def _has_option(options: Values, reqs: List[InstallRequirement], option: str) -> bool: + if getattr(options, option, None): + return True + for req in reqs: + if getattr(req, option, None): + return True + return False + + +def check_legacy_setup_py_options( + options: Values, + reqs: List[InstallRequirement], +) -> None: + has_build_options = _has_option(options, reqs, "build_options") + has_global_options = _has_option(options, reqs, "global_options") + if has_build_options or has_global_options: + deprecated( + reason="--build-option and --global-option are deprecated.", + issue=11859, + replacement="to use --config-settings", + gone_in="24.2", + ) + logger.warning( + "Implying --no-binary=:all: due to the presence of " + "--build-option / --global-option. " + ) + options.format_control.disallow_binaries() diff --git a/venv/lib/python3.12/site-packages/pip/_internal/req/req_set.py b/venv/lib/python3.12/site-packages/pip/_internal/req/req_set.py new file mode 100644 index 0000000..bf36114 --- /dev/null +++ b/venv/lib/python3.12/site-packages/pip/_internal/req/req_set.py @@ -0,0 +1,119 @@ +import logging +from collections import OrderedDict +from typing import Dict, List + +from pip._vendor.packaging.specifiers import LegacySpecifier +from pip._vendor.packaging.utils import canonicalize_name +from pip._vendor.packaging.version import LegacyVersion + +from pip._internal.req.req_install import InstallRequirement +from pip._internal.utils.deprecation import deprecated + +logger = logging.getLogger(__name__) + + +class RequirementSet: + def __init__(self, check_supported_wheels: bool = True) -> None: + """Create a RequirementSet.""" + + self.requirements: Dict[str, InstallRequirement] = OrderedDict() + self.check_supported_wheels = check_supported_wheels + + self.unnamed_requirements: List[InstallRequirement] = [] + + def __str__(self) -> str: + requirements = sorted( + (req for req in self.requirements.values() if not req.comes_from), + key=lambda req: canonicalize_name(req.name or ""), + ) + return " ".join(str(req.req) for req in requirements) + + def __repr__(self) -> str: + requirements = sorted( + self.requirements.values(), + key=lambda req: canonicalize_name(req.name or ""), + ) + + format_string = "<{classname} object; {count} requirement(s): {reqs}>" + return format_string.format( + classname=self.__class__.__name__, + count=len(requirements), + reqs=", ".join(str(req.req) for req in requirements), + ) + + def add_unnamed_requirement(self, install_req: InstallRequirement) -> None: + assert not install_req.name + self.unnamed_requirements.append(install_req) + + def add_named_requirement(self, install_req: InstallRequirement) -> None: + assert install_req.name + + project_name = canonicalize_name(install_req.name) + self.requirements[project_name] = install_req + + def has_requirement(self, name: str) -> bool: + project_name = canonicalize_name(name) + + return ( + project_name in self.requirements + and not self.requirements[project_name].constraint + ) + + def get_requirement(self, name: str) -> InstallRequirement: + project_name = canonicalize_name(name) + + if project_name in self.requirements: + return self.requirements[project_name] + + raise KeyError(f"No project with the name {name!r}") + + @property + def all_requirements(self) -> List[InstallRequirement]: + return self.unnamed_requirements + list(self.requirements.values()) + + @property + def requirements_to_install(self) -> List[InstallRequirement]: + """Return the list of requirements that need to be installed. + + TODO remove this property together with the legacy resolver, since the new + resolver only returns requirements that need to be installed. + """ + return [ + install_req + for install_req in self.all_requirements + if not install_req.constraint and not install_req.satisfied_by + ] + + def warn_legacy_versions_and_specifiers(self) -> None: + for req in self.requirements_to_install: + version = req.get_dist().version + if isinstance(version, LegacyVersion): + deprecated( + reason=( + f"pip has selected the non standard version {version} " + f"of {req}. In the future this version will be " + f"ignored as it isn't standard compliant." + ), + replacement=( + "set or update constraints to select another version " + "or contact the package author to fix the version number" + ), + issue=12063, + gone_in="24.1", + ) + for dep in req.get_dist().iter_dependencies(): + if any(isinstance(spec, LegacySpecifier) for spec in dep.specifier): + deprecated( + reason=( + f"pip has selected {req} {version} which has non " + f"standard dependency specifier {dep}. " + f"In the future this version of {req} will be " + f"ignored as it isn't standard compliant." + ), + replacement=( + "set or update constraints to select another version " + "or contact the package author to fix the version number" + ), + issue=12063, + gone_in="24.1", + ) diff --git a/venv/lib/python3.12/site-packages/pip/_internal/req/req_uninstall.py b/venv/lib/python3.12/site-packages/pip/_internal/req/req_uninstall.py new file mode 100644 index 0000000..707fde1 --- /dev/null +++ b/venv/lib/python3.12/site-packages/pip/_internal/req/req_uninstall.py @@ -0,0 +1,649 @@ +import functools +import os +import sys +import sysconfig +from importlib.util import cache_from_source +from typing import Any, Callable, Dict, Generator, Iterable, List, Optional, Set, Tuple + +from pip._internal.exceptions import UninstallationError +from pip._internal.locations import get_bin_prefix, get_bin_user +from pip._internal.metadata import BaseDistribution +from pip._internal.utils.compat import WINDOWS +from pip._internal.utils.egg_link import egg_link_path_from_location +from pip._internal.utils.logging import getLogger, indent_log +from pip._internal.utils.misc import ask, normalize_path, renames, rmtree +from pip._internal.utils.temp_dir import AdjacentTempDirectory, TempDirectory +from pip._internal.utils.virtualenv import running_under_virtualenv + +logger = getLogger(__name__) + + +def _script_names( + bin_dir: str, script_name: str, is_gui: bool +) -> Generator[str, None, None]: + """Create the fully qualified name of the files created by + {console,gui}_scripts for the given ``dist``. + Returns the list of file names + """ + exe_name = os.path.join(bin_dir, script_name) + yield exe_name + if not WINDOWS: + return + yield f"{exe_name}.exe" + yield f"{exe_name}.exe.manifest" + if is_gui: + yield f"{exe_name}-script.pyw" + else: + yield f"{exe_name}-script.py" + + +def _unique( + fn: Callable[..., Generator[Any, None, None]] +) -> Callable[..., Generator[Any, None, None]]: + @functools.wraps(fn) + def unique(*args: Any, **kw: Any) -> Generator[Any, None, None]: + seen: Set[Any] = set() + for item in fn(*args, **kw): + if item not in seen: + seen.add(item) + yield item + + return unique + + +@_unique +def uninstallation_paths(dist: BaseDistribution) -> Generator[str, None, None]: + """ + Yield all the uninstallation paths for dist based on RECORD-without-.py[co] + + Yield paths to all the files in RECORD. For each .py file in RECORD, add + the .pyc and .pyo in the same directory. + + UninstallPathSet.add() takes care of the __pycache__ .py[co]. + + If RECORD is not found, raises UninstallationError, + with possible information from the INSTALLER file. + + https://packaging.python.org/specifications/recording-installed-packages/ + """ + location = dist.location + assert location is not None, "not installed" + + entries = dist.iter_declared_entries() + if entries is None: + msg = f"Cannot uninstall {dist}, RECORD file not found." + installer = dist.installer + if not installer or installer == "pip": + dep = f"{dist.raw_name}=={dist.version}" + msg += ( + " You might be able to recover from this via: " + f"'pip install --force-reinstall --no-deps {dep}'." + ) + else: + msg += f" Hint: The package was installed by {installer}." + raise UninstallationError(msg) + + for entry in entries: + path = os.path.join(location, entry) + yield path + if path.endswith(".py"): + dn, fn = os.path.split(path) + base = fn[:-3] + path = os.path.join(dn, base + ".pyc") + yield path + path = os.path.join(dn, base + ".pyo") + yield path + + +def compact(paths: Iterable[str]) -> Set[str]: + """Compact a path set to contain the minimal number of paths + necessary to contain all paths in the set. If /a/path/ and + /a/path/to/a/file.txt are both in the set, leave only the + shorter path.""" + + sep = os.path.sep + short_paths: Set[str] = set() + for path in sorted(paths, key=len): + should_skip = any( + path.startswith(shortpath.rstrip("*")) + and path[len(shortpath.rstrip("*").rstrip(sep))] == sep + for shortpath in short_paths + ) + if not should_skip: + short_paths.add(path) + return short_paths + + +def compress_for_rename(paths: Iterable[str]) -> Set[str]: + """Returns a set containing the paths that need to be renamed. + + This set may include directories when the original sequence of paths + included every file on disk. + """ + case_map = {os.path.normcase(p): p for p in paths} + remaining = set(case_map) + unchecked = sorted({os.path.split(p)[0] for p in case_map.values()}, key=len) + wildcards: Set[str] = set() + + def norm_join(*a: str) -> str: + return os.path.normcase(os.path.join(*a)) + + for root in unchecked: + if any(os.path.normcase(root).startswith(w) for w in wildcards): + # This directory has already been handled. + continue + + all_files: Set[str] = set() + all_subdirs: Set[str] = set() + for dirname, subdirs, files in os.walk(root): + all_subdirs.update(norm_join(root, dirname, d) for d in subdirs) + all_files.update(norm_join(root, dirname, f) for f in files) + # If all the files we found are in our remaining set of files to + # remove, then remove them from the latter set and add a wildcard + # for the directory. + if not (all_files - remaining): + remaining.difference_update(all_files) + wildcards.add(root + os.sep) + + return set(map(case_map.__getitem__, remaining)) | wildcards + + +def compress_for_output_listing(paths: Iterable[str]) -> Tuple[Set[str], Set[str]]: + """Returns a tuple of 2 sets of which paths to display to user + + The first set contains paths that would be deleted. Files of a package + are not added and the top-level directory of the package has a '*' added + at the end - to signify that all it's contents are removed. + + The second set contains files that would have been skipped in the above + folders. + """ + + will_remove = set(paths) + will_skip = set() + + # Determine folders and files + folders = set() + files = set() + for path in will_remove: + if path.endswith(".pyc"): + continue + if path.endswith("__init__.py") or ".dist-info" in path: + folders.add(os.path.dirname(path)) + files.add(path) + + _normcased_files = set(map(os.path.normcase, files)) + + folders = compact(folders) + + # This walks the tree using os.walk to not miss extra folders + # that might get added. + for folder in folders: + for dirpath, _, dirfiles in os.walk(folder): + for fname in dirfiles: + if fname.endswith(".pyc"): + continue + + file_ = os.path.join(dirpath, fname) + if ( + os.path.isfile(file_) + and os.path.normcase(file_) not in _normcased_files + ): + # We are skipping this file. Add it to the set. + will_skip.add(file_) + + will_remove = files | {os.path.join(folder, "*") for folder in folders} + + return will_remove, will_skip + + +class StashedUninstallPathSet: + """A set of file rename operations to stash files while + tentatively uninstalling them.""" + + def __init__(self) -> None: + # Mapping from source file root to [Adjacent]TempDirectory + # for files under that directory. + self._save_dirs: Dict[str, TempDirectory] = {} + # (old path, new path) tuples for each move that may need + # to be undone. + self._moves: List[Tuple[str, str]] = [] + + def _get_directory_stash(self, path: str) -> str: + """Stashes a directory. + + Directories are stashed adjacent to their original location if + possible, or else moved/copied into the user's temp dir.""" + + try: + save_dir: TempDirectory = AdjacentTempDirectory(path) + except OSError: + save_dir = TempDirectory(kind="uninstall") + self._save_dirs[os.path.normcase(path)] = save_dir + + return save_dir.path + + def _get_file_stash(self, path: str) -> str: + """Stashes a file. + + If no root has been provided, one will be created for the directory + in the user's temp directory.""" + path = os.path.normcase(path) + head, old_head = os.path.dirname(path), None + save_dir = None + + while head != old_head: + try: + save_dir = self._save_dirs[head] + break + except KeyError: + pass + head, old_head = os.path.dirname(head), head + else: + # Did not find any suitable root + head = os.path.dirname(path) + save_dir = TempDirectory(kind="uninstall") + self._save_dirs[head] = save_dir + + relpath = os.path.relpath(path, head) + if relpath and relpath != os.path.curdir: + return os.path.join(save_dir.path, relpath) + return save_dir.path + + def stash(self, path: str) -> str: + """Stashes the directory or file and returns its new location. + Handle symlinks as files to avoid modifying the symlink targets. + """ + path_is_dir = os.path.isdir(path) and not os.path.islink(path) + if path_is_dir: + new_path = self._get_directory_stash(path) + else: + new_path = self._get_file_stash(path) + + self._moves.append((path, new_path)) + if path_is_dir and os.path.isdir(new_path): + # If we're moving a directory, we need to + # remove the destination first or else it will be + # moved to inside the existing directory. + # We just created new_path ourselves, so it will + # be removable. + os.rmdir(new_path) + renames(path, new_path) + return new_path + + def commit(self) -> None: + """Commits the uninstall by removing stashed files.""" + for save_dir in self._save_dirs.values(): + save_dir.cleanup() + self._moves = [] + self._save_dirs = {} + + def rollback(self) -> None: + """Undoes the uninstall by moving stashed files back.""" + for p in self._moves: + logger.info("Moving to %s\n from %s", *p) + + for new_path, path in self._moves: + try: + logger.debug("Replacing %s from %s", new_path, path) + if os.path.isfile(new_path) or os.path.islink(new_path): + os.unlink(new_path) + elif os.path.isdir(new_path): + rmtree(new_path) + renames(path, new_path) + except OSError as ex: + logger.error("Failed to restore %s", new_path) + logger.debug("Exception: %s", ex) + + self.commit() + + @property + def can_rollback(self) -> bool: + return bool(self._moves) + + +class UninstallPathSet: + """A set of file paths to be removed in the uninstallation of a + requirement.""" + + def __init__(self, dist: BaseDistribution) -> None: + self._paths: Set[str] = set() + self._refuse: Set[str] = set() + self._pth: Dict[str, UninstallPthEntries] = {} + self._dist = dist + self._moved_paths = StashedUninstallPathSet() + # Create local cache of normalize_path results. Creating an UninstallPathSet + # can result in hundreds/thousands of redundant calls to normalize_path with + # the same args, which hurts performance. + self._normalize_path_cached = functools.lru_cache()(normalize_path) + + def _permitted(self, path: str) -> bool: + """ + Return True if the given path is one we are permitted to + remove/modify, False otherwise. + + """ + # aka is_local, but caching normalized sys.prefix + if not running_under_virtualenv(): + return True + return path.startswith(self._normalize_path_cached(sys.prefix)) + + def add(self, path: str) -> None: + head, tail = os.path.split(path) + + # we normalize the head to resolve parent directory symlinks, but not + # the tail, since we only want to uninstall symlinks, not their targets + path = os.path.join(self._normalize_path_cached(head), os.path.normcase(tail)) + + if not os.path.exists(path): + return + if self._permitted(path): + self._paths.add(path) + else: + self._refuse.add(path) + + # __pycache__ files can show up after 'installed-files.txt' is created, + # due to imports + if os.path.splitext(path)[1] == ".py": + self.add(cache_from_source(path)) + + def add_pth(self, pth_file: str, entry: str) -> None: + pth_file = self._normalize_path_cached(pth_file) + if self._permitted(pth_file): + if pth_file not in self._pth: + self._pth[pth_file] = UninstallPthEntries(pth_file) + self._pth[pth_file].add(entry) + else: + self._refuse.add(pth_file) + + def remove(self, auto_confirm: bool = False, verbose: bool = False) -> None: + """Remove paths in ``self._paths`` with confirmation (unless + ``auto_confirm`` is True).""" + + if not self._paths: + logger.info( + "Can't uninstall '%s'. No files were found to uninstall.", + self._dist.raw_name, + ) + return + + dist_name_version = f"{self._dist.raw_name}-{self._dist.version}" + logger.info("Uninstalling %s:", dist_name_version) + + with indent_log(): + if auto_confirm or self._allowed_to_proceed(verbose): + moved = self._moved_paths + + for_rename = compress_for_rename(self._paths) + + for path in sorted(compact(for_rename)): + moved.stash(path) + logger.verbose("Removing file or directory %s", path) + + for pth in self._pth.values(): + pth.remove() + + logger.info("Successfully uninstalled %s", dist_name_version) + + def _allowed_to_proceed(self, verbose: bool) -> bool: + """Display which files would be deleted and prompt for confirmation""" + + def _display(msg: str, paths: Iterable[str]) -> None: + if not paths: + return + + logger.info(msg) + with indent_log(): + for path in sorted(compact(paths)): + logger.info(path) + + if not verbose: + will_remove, will_skip = compress_for_output_listing(self._paths) + else: + # In verbose mode, display all the files that are going to be + # deleted. + will_remove = set(self._paths) + will_skip = set() + + _display("Would remove:", will_remove) + _display("Would not remove (might be manually added):", will_skip) + _display("Would not remove (outside of prefix):", self._refuse) + if verbose: + _display("Will actually move:", compress_for_rename(self._paths)) + + return ask("Proceed (Y/n)? ", ("y", "n", "")) != "n" + + def rollback(self) -> None: + """Rollback the changes previously made by remove().""" + if not self._moved_paths.can_rollback: + logger.error( + "Can't roll back %s; was not uninstalled", + self._dist.raw_name, + ) + return + logger.info("Rolling back uninstall of %s", self._dist.raw_name) + self._moved_paths.rollback() + for pth in self._pth.values(): + pth.rollback() + + def commit(self) -> None: + """Remove temporary save dir: rollback will no longer be possible.""" + self._moved_paths.commit() + + @classmethod + def from_dist(cls, dist: BaseDistribution) -> "UninstallPathSet": + dist_location = dist.location + info_location = dist.info_location + if dist_location is None: + logger.info( + "Not uninstalling %s since it is not installed", + dist.canonical_name, + ) + return cls(dist) + + normalized_dist_location = normalize_path(dist_location) + if not dist.local: + logger.info( + "Not uninstalling %s at %s, outside environment %s", + dist.canonical_name, + normalized_dist_location, + sys.prefix, + ) + return cls(dist) + + if normalized_dist_location in { + p + for p in {sysconfig.get_path("stdlib"), sysconfig.get_path("platstdlib")} + if p + }: + logger.info( + "Not uninstalling %s at %s, as it is in the standard library.", + dist.canonical_name, + normalized_dist_location, + ) + return cls(dist) + + paths_to_remove = cls(dist) + develop_egg_link = egg_link_path_from_location(dist.raw_name) + + # Distribution is installed with metadata in a "flat" .egg-info + # directory. This means it is not a modern .dist-info installation, an + # egg, or legacy editable. + setuptools_flat_installation = ( + dist.installed_with_setuptools_egg_info + and info_location is not None + and os.path.exists(info_location) + # If dist is editable and the location points to a ``.egg-info``, + # we are in fact in the legacy editable case. + and not info_location.endswith(f"{dist.setuptools_filename}.egg-info") + ) + + # Uninstall cases order do matter as in the case of 2 installs of the + # same package, pip needs to uninstall the currently detected version + if setuptools_flat_installation: + if info_location is not None: + paths_to_remove.add(info_location) + installed_files = dist.iter_declared_entries() + if installed_files is not None: + for installed_file in installed_files: + paths_to_remove.add(os.path.join(dist_location, installed_file)) + # FIXME: need a test for this elif block + # occurs with --single-version-externally-managed/--record outside + # of pip + elif dist.is_file("top_level.txt"): + try: + namespace_packages = dist.read_text("namespace_packages.txt") + except FileNotFoundError: + namespaces = [] + else: + namespaces = namespace_packages.splitlines(keepends=False) + for top_level_pkg in [ + p + for p in dist.read_text("top_level.txt").splitlines() + if p and p not in namespaces + ]: + path = os.path.join(dist_location, top_level_pkg) + paths_to_remove.add(path) + paths_to_remove.add(f"{path}.py") + paths_to_remove.add(f"{path}.pyc") + paths_to_remove.add(f"{path}.pyo") + + elif dist.installed_by_distutils: + raise UninstallationError( + "Cannot uninstall {!r}. It is a distutils installed project " + "and thus we cannot accurately determine which files belong " + "to it which would lead to only a partial uninstall.".format( + dist.raw_name, + ) + ) + + elif dist.installed_as_egg: + # package installed by easy_install + # We cannot match on dist.egg_name because it can slightly vary + # i.e. setuptools-0.6c11-py2.6.egg vs setuptools-0.6rc11-py2.6.egg + paths_to_remove.add(dist_location) + easy_install_egg = os.path.split(dist_location)[1] + easy_install_pth = os.path.join( + os.path.dirname(dist_location), + "easy-install.pth", + ) + paths_to_remove.add_pth(easy_install_pth, "./" + easy_install_egg) + + elif dist.installed_with_dist_info: + for path in uninstallation_paths(dist): + paths_to_remove.add(path) + + elif develop_egg_link: + # PEP 660 modern editable is handled in the ``.dist-info`` case + # above, so this only covers the setuptools-style editable. + with open(develop_egg_link) as fh: + link_pointer = os.path.normcase(fh.readline().strip()) + normalized_link_pointer = paths_to_remove._normalize_path_cached( + link_pointer + ) + assert os.path.samefile( + normalized_link_pointer, normalized_dist_location + ), ( + f"Egg-link {develop_egg_link} (to {link_pointer}) does not match " + f"installed location of {dist.raw_name} (at {dist_location})" + ) + paths_to_remove.add(develop_egg_link) + easy_install_pth = os.path.join( + os.path.dirname(develop_egg_link), "easy-install.pth" + ) + paths_to_remove.add_pth(easy_install_pth, dist_location) + + else: + logger.debug( + "Not sure how to uninstall: %s - Check: %s", + dist, + dist_location, + ) + + if dist.in_usersite: + bin_dir = get_bin_user() + else: + bin_dir = get_bin_prefix() + + # find distutils scripts= scripts + try: + for script in dist.iter_distutils_script_names(): + paths_to_remove.add(os.path.join(bin_dir, script)) + if WINDOWS: + paths_to_remove.add(os.path.join(bin_dir, f"{script}.bat")) + except (FileNotFoundError, NotADirectoryError): + pass + + # find console_scripts and gui_scripts + def iter_scripts_to_remove( + dist: BaseDistribution, + bin_dir: str, + ) -> Generator[str, None, None]: + for entry_point in dist.iter_entry_points(): + if entry_point.group == "console_scripts": + yield from _script_names(bin_dir, entry_point.name, False) + elif entry_point.group == "gui_scripts": + yield from _script_names(bin_dir, entry_point.name, True) + + for s in iter_scripts_to_remove(dist, bin_dir): + paths_to_remove.add(s) + + return paths_to_remove + + +class UninstallPthEntries: + def __init__(self, pth_file: str) -> None: + self.file = pth_file + self.entries: Set[str] = set() + self._saved_lines: Optional[List[bytes]] = None + + def add(self, entry: str) -> None: + entry = os.path.normcase(entry) + # On Windows, os.path.normcase converts the entry to use + # backslashes. This is correct for entries that describe absolute + # paths outside of site-packages, but all the others use forward + # slashes. + # os.path.splitdrive is used instead of os.path.isabs because isabs + # treats non-absolute paths with drive letter markings like c:foo\bar + # as absolute paths. It also does not recognize UNC paths if they don't + # have more than "\\sever\share". Valid examples: "\\server\share\" or + # "\\server\share\folder". + if WINDOWS and not os.path.splitdrive(entry)[0]: + entry = entry.replace("\\", "/") + self.entries.add(entry) + + def remove(self) -> None: + logger.verbose("Removing pth entries from %s:", self.file) + + # If the file doesn't exist, log a warning and return + if not os.path.isfile(self.file): + logger.warning("Cannot remove entries from nonexistent file %s", self.file) + return + with open(self.file, "rb") as fh: + # windows uses '\r\n' with py3k, but uses '\n' with py2.x + lines = fh.readlines() + self._saved_lines = lines + if any(b"\r\n" in line for line in lines): + endline = "\r\n" + else: + endline = "\n" + # handle missing trailing newline + if lines and not lines[-1].endswith(endline.encode("utf-8")): + lines[-1] = lines[-1] + endline.encode("utf-8") + for entry in self.entries: + try: + logger.verbose("Removing entry: %s", entry) + lines.remove((entry + endline).encode("utf-8")) + except ValueError: + pass + with open(self.file, "wb") as fh: + fh.writelines(lines) + + def rollback(self) -> bool: + if self._saved_lines is None: + logger.error("Cannot roll back changes to %s, none were made", self.file) + return False + logger.debug("Rolling %s back to previous state", self.file) + with open(self.file, "wb") as fh: + fh.writelines(self._saved_lines) + return True diff --git a/venv/lib/python3.12/site-packages/pip/_internal/resolution/__init__.py b/venv/lib/python3.12/site-packages/pip/_internal/resolution/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/venv/lib/python3.12/site-packages/pip/_internal/resolution/__pycache__/__init__.cpython-312.pyc b/venv/lib/python3.12/site-packages/pip/_internal/resolution/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..7c015773ab959ab73e667a251c4a919e067ef1b3 GIT binary patch literal 194 zcmZ8aOA5j;5KXLt2t9}kJE&Xn2wow?HrQyI4EYp$63^gSJb`OZAl-H4Wb1=B^XBm$ z^D4^~BfKy1n)fGlD?ZN0X z;1FA9_tka>K}WSgS>NPE1wf4;G&Q`H2D}Q+q^O+*L9UKMR5(n_L+6@g)X^{KBPWI| Kz6Iyp7o>irKQ#RS literal 0 HcmV?d00001 diff --git a/venv/lib/python3.12/site-packages/pip/_internal/resolution/__pycache__/base.cpython-312.pyc b/venv/lib/python3.12/site-packages/pip/_internal/resolution/__pycache__/base.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..b20d9454020965813151c4a5ff8fa0a00c8676b4 GIT binary patch literal 1182 zcma)5OKTKC5bmDW&aQc&iO~oNt83In%=kK)Afkwf5=C!=GE8E<9$;;xur4onVj8W zjKJU#f(;h1fJZFmE{`==i*;A$#A%Tco32@4J+k7GTjC5j*r0J5Zn|Z6<8i4hiFYu$HW0NImN10tG^yQ ztuzKF>$IG_(Fwdpnn-viJwFSbE+kzi3Rj)1CtGQ9Y4O5ECl4i@%lyW=--O)B!p!kP zJRz{qj-VVnRCQ++Q(nw^s#I`Ycs{+i2#X_j3`Gpa(Y#f%cHB-cwt0OEP=FOBSbknUgF2#d8*=haT;_Y!egG-?)cGgMbLW?bf=WDnx>H`kv~P|D4NY-utJIal1ds&z?1zmulE)$WO!&WZ-X(cwOP2X;nhT3QM--Asm5>k3Dg*x`{Te~mP zZiodQ<~Bz^rs5U({<4>cHM=Tm$kDaVub|n{Ip-hQ*==_A3tRrcE`OR^cxT$L&-AAj gwkxOl#_4{2sc$TO)3tf6&yM}9l=;c;3{4UHH!s*S2><{9 literal 0 HcmV?d00001 diff --git a/venv/lib/python3.12/site-packages/pip/_internal/resolution/base.py b/venv/lib/python3.12/site-packages/pip/_internal/resolution/base.py new file mode 100644 index 0000000..42dade1 --- /dev/null +++ b/venv/lib/python3.12/site-packages/pip/_internal/resolution/base.py @@ -0,0 +1,20 @@ +from typing import Callable, List, Optional + +from pip._internal.req.req_install import InstallRequirement +from pip._internal.req.req_set import RequirementSet + +InstallRequirementProvider = Callable[ + [str, Optional[InstallRequirement]], InstallRequirement +] + + +class BaseResolver: + def resolve( + self, root_reqs: List[InstallRequirement], check_supported_wheels: bool + ) -> RequirementSet: + raise NotImplementedError() + + def get_installation_order( + self, req_set: RequirementSet + ) -> List[InstallRequirement]: + raise NotImplementedError() diff --git a/venv/lib/python3.12/site-packages/pip/_internal/resolution/legacy/__init__.py b/venv/lib/python3.12/site-packages/pip/_internal/resolution/legacy/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/venv/lib/python3.12/site-packages/pip/_internal/resolution/legacy/__pycache__/__init__.cpython-312.pyc b/venv/lib/python3.12/site-packages/pip/_internal/resolution/legacy/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..7a951ab2e9fd5585cda4614337195cc32aaf8332 GIT binary patch literal 201 zcmZ8a%MHRX3~eY#2&sc`01LPxMqq^~q*fD1lPI5xOu`Jz!UUX|0QJ@r$(1KP``PbV zel^Xi%6NC-TKcDye~k0Ic~q%dlk>B3vpkI@GYJr;N3cS=z#Y?nUyf09ze+p z*c61(hwW|;UIyG)#&4`c4^~>BGG92&6gc!o#UPCag&pGwXf|b_bZgVJJocuI3Qum4 PACpX9#J47dxH_vJQ;9dI literal 0 HcmV?d00001 diff --git a/venv/lib/python3.12/site-packages/pip/_internal/resolution/legacy/__pycache__/resolver.cpython-312.pyc b/venv/lib/python3.12/site-packages/pip/_internal/resolution/legacy/__pycache__/resolver.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..1ce22f28c6ce24cde5759b61cbd063528556aa38 GIT binary patch literal 22436 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 None: + """ + Check whether the given Python version is compatible with a distribution'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. + + :raises UnsupportedPythonVersion: When the given Python version isn't + compatible. + """ + # This idiosyncratically converts the SpecifierSet to str and let + # check_requires_python then parse it again into SpecifierSet. But this + # is the legacy resolver so I'm just not going to bother refactoring. + try: + requires_python = str(dist.requires_python) + except FileNotFoundError as e: + raise NoneMetadataError(dist, str(e)) + try: + is_compatible = check_requires_python( + requires_python, + version_info=version_info, + ) + except specifiers.InvalidSpecifier as exc: + logger.warning( + "Package %r has an invalid Requires-Python: %s", dist.raw_name, exc + ) + return + + if is_compatible: + return + + version = ".".join(map(str, version_info)) + if ignore_requires_python: + logger.debug( + "Ignoring failed Requires-Python check for package %r: %s not in %r", + dist.raw_name, + version, + requires_python, + ) + return + + raise UnsupportedPythonVersion( + "Package {!r} requires a different Python: {} not in {!r}".format( + dist.raw_name, version, requires_python + ) + ) + + +class Resolver(BaseResolver): + """Resolves which packages need to be installed/uninstalled to perform \ + the requested operation without breaking the requirements of any package. + """ + + _allowed_strategies = {"eager", "only-if-needed", "to-satisfy-only"} + + def __init__( + self, + preparer: RequirementPreparer, + finder: PackageFinder, + wheel_cache: Optional[WheelCache], + make_install_req: InstallRequirementProvider, + use_user_site: bool, + ignore_dependencies: bool, + ignore_installed: bool, + ignore_requires_python: bool, + force_reinstall: bool, + upgrade_strategy: str, + py_version_info: Optional[Tuple[int, ...]] = None, + ) -> None: + super().__init__() + assert upgrade_strategy in self._allowed_strategies + + if py_version_info is None: + py_version_info = sys.version_info[:3] + else: + py_version_info = normalize_version_info(py_version_info) + + self._py_version_info = py_version_info + + self.preparer = preparer + self.finder = finder + self.wheel_cache = wheel_cache + + self.upgrade_strategy = upgrade_strategy + self.force_reinstall = force_reinstall + self.ignore_dependencies = ignore_dependencies + self.ignore_installed = ignore_installed + self.ignore_requires_python = ignore_requires_python + self.use_user_site = use_user_site + self._make_install_req = make_install_req + + self._discovered_dependencies: DiscoveredDependencies = defaultdict(list) + + def resolve( + self, root_reqs: List[InstallRequirement], check_supported_wheels: bool + ) -> RequirementSet: + """Resolve what operations need to be done + + As a side-effect of this method, the packages (and their dependencies) + are downloaded, unpacked and prepared for installation. This + preparation is done by ``pip.operations.prepare``. + + Once PyPI has static dependency metadata available, it would be + possible to move the preparation to become a step separated from + dependency resolution. + """ + requirement_set = RequirementSet(check_supported_wheels=check_supported_wheels) + for req in root_reqs: + if req.constraint: + check_invalid_constraint_type(req) + self._add_requirement_to_set(requirement_set, req) + + # Actually prepare the files, and collect any exceptions. Most hash + # exceptions cannot be checked ahead of time, because + # _populate_link() needs to be called before we can make decisions + # based on link type. + discovered_reqs: List[InstallRequirement] = [] + hash_errors = HashErrors() + for req in chain(requirement_set.all_requirements, discovered_reqs): + try: + discovered_reqs.extend(self._resolve_one(requirement_set, req)) + except HashError as exc: + exc.req = req + hash_errors.append(exc) + + if hash_errors: + raise hash_errors + + return requirement_set + + def _add_requirement_to_set( + self, + requirement_set: RequirementSet, + install_req: InstallRequirement, + parent_req_name: Optional[str] = None, + extras_requested: Optional[Iterable[str]] = None, + ) -> Tuple[List[InstallRequirement], Optional[InstallRequirement]]: + """Add install_req as a requirement to install. + + :param parent_req_name: The name of the requirement that needed this + added. The name is used because when multiple unnamed requirements + resolve to the same name, we could otherwise end up with dependency + links that point outside the Requirements set. parent_req must + already be added. Note that None implies that this is a user + supplied requirement, vs an inferred one. + :param extras_requested: an iterable of extras used to evaluate the + environment markers. + :return: Additional requirements to scan. That is either [] if + the requirement is not applicable, or [install_req] if the + requirement is applicable and has just been added. + """ + # If the markers do not match, ignore this requirement. + if not install_req.match_markers(extras_requested): + logger.info( + "Ignoring %s: markers '%s' don't match your environment", + install_req.name, + install_req.markers, + ) + return [], None + + # If the wheel is not supported, raise an error. + # Should check this after filtering out based on environment markers to + # allow specifying different wheels based on the environment/OS, in a + # single requirements file. + if install_req.link and install_req.link.is_wheel: + wheel = Wheel(install_req.link.filename) + tags = compatibility_tags.get_supported() + if requirement_set.check_supported_wheels and not wheel.supported(tags): + raise InstallationError( + f"{wheel.filename} is not a supported wheel on this platform." + ) + + # This next bit is really a sanity check. + assert ( + not install_req.user_supplied or parent_req_name is None + ), "a user supplied req shouldn't have a parent" + + # Unnamed requirements are scanned again and the requirement won't be + # added as a dependency until after scanning. + if not install_req.name: + requirement_set.add_unnamed_requirement(install_req) + return [install_req], None + + try: + existing_req: Optional[ + InstallRequirement + ] = requirement_set.get_requirement(install_req.name) + except KeyError: + existing_req = None + + has_conflicting_requirement = ( + parent_req_name is None + and existing_req + and not existing_req.constraint + and existing_req.extras == install_req.extras + and existing_req.req + and install_req.req + and existing_req.req.specifier != install_req.req.specifier + ) + if has_conflicting_requirement: + raise InstallationError( + "Double requirement given: {} (already in {}, name={!r})".format( + install_req, existing_req, install_req.name + ) + ) + + # When no existing requirement exists, add the requirement as a + # dependency and it will be scanned again after. + if not existing_req: + requirement_set.add_named_requirement(install_req) + # We'd want to rescan this requirement later + return [install_req], install_req + + # Assume there's no need to scan, and that we've already + # encountered this for scanning. + if install_req.constraint or not existing_req.constraint: + return [], existing_req + + does_not_satisfy_constraint = install_req.link and not ( + existing_req.link and install_req.link.path == existing_req.link.path + ) + if does_not_satisfy_constraint: + raise InstallationError( + f"Could not satisfy constraints for '{install_req.name}': " + "installation from path or url cannot be " + "constrained to a version" + ) + # If we're now installing a constraint, mark the existing + # object for real installation. + existing_req.constraint = False + # If we're now installing a user supplied requirement, + # mark the existing object as such. + if install_req.user_supplied: + existing_req.user_supplied = True + existing_req.extras = tuple( + sorted(set(existing_req.extras) | set(install_req.extras)) + ) + logger.debug( + "Setting %s extras to: %s", + existing_req, + existing_req.extras, + ) + # Return the existing requirement for addition to the parent and + # scanning again. + return [existing_req], existing_req + + def _is_upgrade_allowed(self, req: InstallRequirement) -> bool: + if self.upgrade_strategy == "to-satisfy-only": + return False + elif self.upgrade_strategy == "eager": + return True + else: + assert self.upgrade_strategy == "only-if-needed" + return req.user_supplied or req.constraint + + def _set_req_to_reinstall(self, req: InstallRequirement) -> None: + """ + Set a requirement to be installed. + """ + # Don't uninstall the conflict if doing a user install and the + # conflict is not a user install. + if not self.use_user_site or req.satisfied_by.in_usersite: + req.should_reinstall = True + req.satisfied_by = None + + def _check_skip_installed( + self, req_to_install: InstallRequirement + ) -> Optional[str]: + """Check if req_to_install should be skipped. + + This will check if the req is installed, and whether we should upgrade + or reinstall it, taking into account all the relevant user options. + + After calling this req_to_install will only have satisfied_by set to + None if the req_to_install is to be upgraded/reinstalled etc. Any + other value will be a dist recording the current thing installed that + satisfies the requirement. + + Note that for vcs urls and the like we can't assess skipping in this + routine - we simply identify that we need to pull the thing down, + then later on it is pulled down and introspected to assess upgrade/ + reinstalls etc. + + :return: A text reason for why it was skipped, or None. + """ + if self.ignore_installed: + return None + + req_to_install.check_if_exists(self.use_user_site) + if not req_to_install.satisfied_by: + return None + + if self.force_reinstall: + self._set_req_to_reinstall(req_to_install) + return None + + if not self._is_upgrade_allowed(req_to_install): + if self.upgrade_strategy == "only-if-needed": + return "already satisfied, skipping upgrade" + return "already satisfied" + + # Check for the possibility of an upgrade. For link-based + # requirements we have to pull the tree down and inspect to assess + # the version #, so it's handled way down. + if not req_to_install.link: + try: + self.finder.find_requirement(req_to_install, upgrade=True) + except BestVersionAlreadyInstalled: + # Then the best version is installed. + return "already up-to-date" + except DistributionNotFound: + # No distribution found, so we squash the error. It will + # be raised later when we re-try later to do the install. + # Why don't we just raise here? + pass + + self._set_req_to_reinstall(req_to_install) + return None + + def _find_requirement_link(self, req: InstallRequirement) -> Optional[Link]: + upgrade = self._is_upgrade_allowed(req) + best_candidate = self.finder.find_requirement(req, upgrade) + if not best_candidate: + return None + + # Log a warning per PEP 592 if necessary before returning. + link = best_candidate.link + if link.is_yanked: + reason = link.yanked_reason or "" + msg = ( + # Mark this as a unicode string to prevent + # "UnicodeEncodeError: 'ascii' codec can't encode character" + # in Python 2 when the reason contains non-ascii characters. + "The candidate selected for download or install is a " + f"yanked version: {best_candidate}\n" + f"Reason for being yanked: {reason}" + ) + logger.warning(msg) + + return link + + def _populate_link(self, req: InstallRequirement) -> None: + """Ensure that if a link can be found for this, that it is found. + + Note that req.link may still be None - if the requirement is already + installed and not needed to be upgraded based on the return value of + _is_upgrade_allowed(). + + If preparer.require_hashes is True, don't use the wheel cache, because + cached wheels, always built locally, have different hashes than the + files downloaded from the index server and thus throw false hash + mismatches. Furthermore, cached wheels at present have undeterministic + contents due to file modification times. + """ + if req.link is None: + req.link = self._find_requirement_link(req) + + if self.wheel_cache is None or self.preparer.require_hashes: + return + cache_entry = self.wheel_cache.get_cache_entry( + link=req.link, + package_name=req.name, + supported_tags=get_supported(), + ) + if cache_entry is not None: + logger.debug("Using cached wheel link: %s", cache_entry.link) + if req.link is req.original_link and cache_entry.persistent: + req.cached_wheel_source_link = req.link + if cache_entry.origin is not None: + req.download_info = cache_entry.origin + else: + # Legacy cache entry that does not have origin.json. + # download_info may miss the archive_info.hashes field. + req.download_info = direct_url_from_link( + req.link, link_is_in_wheel_cache=cache_entry.persistent + ) + req.link = cache_entry.link + + def _get_dist_for(self, req: InstallRequirement) -> BaseDistribution: + """Takes a InstallRequirement and returns a single AbstractDist \ + representing a prepared variant of the same. + """ + if req.editable: + return self.preparer.prepare_editable_requirement(req) + + # satisfied_by is only evaluated by calling _check_skip_installed, + # so it must be None here. + assert req.satisfied_by is None + skip_reason = self._check_skip_installed(req) + + if req.satisfied_by: + return self.preparer.prepare_installed_requirement(req, skip_reason) + + # We eagerly populate the link, since that's our "legacy" behavior. + self._populate_link(req) + dist = self.preparer.prepare_linked_requirement(req) + + # NOTE + # The following portion is for determining if a certain package is + # going to be re-installed/upgraded or not and reporting to the user. + # This should probably get cleaned up in a future refactor. + + # req.req is only avail after unpack for URL + # pkgs repeat check_if_exists to uninstall-on-upgrade + # (#14) + if not self.ignore_installed: + req.check_if_exists(self.use_user_site) + + if req.satisfied_by: + should_modify = ( + self.upgrade_strategy != "to-satisfy-only" + or self.force_reinstall + or self.ignore_installed + or req.link.scheme == "file" + ) + if should_modify: + self._set_req_to_reinstall(req) + else: + logger.info( + "Requirement already satisfied (use --upgrade to upgrade): %s", + req, + ) + return dist + + def _resolve_one( + self, + requirement_set: RequirementSet, + req_to_install: InstallRequirement, + ) -> List[InstallRequirement]: + """Prepare a single requirements file. + + :return: A list of additional InstallRequirements to also install. + """ + # Tell user what we are doing for this requirement: + # obtain (editable), skipping, processing (local url), collecting + # (remote url or package name) + if req_to_install.constraint or req_to_install.prepared: + return [] + + req_to_install.prepared = True + + # Parse and return dependencies + dist = self._get_dist_for(req_to_install) + # This will raise UnsupportedPythonVersion if the given Python + # version isn't compatible with the distribution's Requires-Python. + _check_dist_requires_python( + dist, + version_info=self._py_version_info, + ignore_requires_python=self.ignore_requires_python, + ) + + more_reqs: List[InstallRequirement] = [] + + def add_req(subreq: Requirement, extras_requested: Iterable[str]) -> None: + # This idiosyncratically converts the Requirement to str and let + # make_install_req then parse it again into Requirement. But this is + # the legacy resolver so I'm just not going to bother refactoring. + sub_install_req = self._make_install_req(str(subreq), req_to_install) + parent_req_name = req_to_install.name + to_scan_again, add_to_parent = self._add_requirement_to_set( + requirement_set, + sub_install_req, + parent_req_name=parent_req_name, + extras_requested=extras_requested, + ) + if parent_req_name and add_to_parent: + self._discovered_dependencies[parent_req_name].append(add_to_parent) + more_reqs.extend(to_scan_again) + + with indent_log(): + # We add req_to_install before its dependencies, so that we + # can refer to it when adding dependencies. + if not requirement_set.has_requirement(req_to_install.name): + # 'unnamed' requirements will get added here + # 'unnamed' requirements can only come from being directly + # provided by the user. + assert req_to_install.user_supplied + self._add_requirement_to_set( + requirement_set, req_to_install, parent_req_name=None + ) + + if not self.ignore_dependencies: + if req_to_install.extras: + logger.debug( + "Installing extra requirements: %r", + ",".join(req_to_install.extras), + ) + missing_requested = sorted( + set(req_to_install.extras) - set(dist.iter_provided_extras()) + ) + for missing in missing_requested: + logger.warning( + "%s %s does not provide the extra '%s'", + dist.raw_name, + dist.version, + missing, + ) + + available_requested = sorted( + set(dist.iter_provided_extras()) & set(req_to_install.extras) + ) + for subreq in dist.iter_dependencies(available_requested): + add_req(subreq, extras_requested=available_requested) + + return more_reqs + + def get_installation_order( + self, req_set: RequirementSet + ) -> List[InstallRequirement]: + """Create the installation order. + + The installation order is topological - requirements are installed + before the requiring thing. We break cycles at an arbitrary point, + and make no other guarantees. + """ + # The current implementation, which we may change at any point + # installs the user specified things in the order given, except when + # dependencies must come earlier to achieve topological order. + order = [] + ordered_reqs: Set[InstallRequirement] = set() + + def schedule(req: InstallRequirement) -> None: + if req.satisfied_by or req in ordered_reqs: + return + if req.constraint: + return + ordered_reqs.add(req) + for dep in self._discovered_dependencies[req.name]: + schedule(dep) + order.append(req) + + for install_req in req_set.requirements.values(): + schedule(install_req) + return order diff --git a/venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__init__.py b/venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/__init__.cpython-312.pyc b/venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..f1cd3c103390f7448d79573a85b2054f931dbaee GIT binary patch literal 205 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 literal 0 HcmV?d00001 diff --git a/venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/candidates.cpython-312.pyc b/venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/candidates.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..0dc683a2272ed42c20476095a5816eabc2684642 GIT binary patch literal 30395 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 QspF(wXM4br%lhH}1(cIP9{>OV literal 0 HcmV?d00001 diff --git a/venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/found_candidates.cpython-312.pyc b/venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/found_candidates.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..9f8d5176eeaed984549655e033ead7d0b08ed5c0 GIT binary patch literal 6205 zcmcIoTWlN06`kdCNs6K#v_(B)uVp1RZCSMCG)-dJsG~eAE0BZ6Z4n~Ddc_?|YcILX z>{2!j8dhBcl^p|d(1+DOp${~!TEO{AzKZbFp+x zAT&awG&n(raP#g1*q29MJmz`q*6mrb7uL}@MT}ROO4Q2 z%khBP2IJlTWjqSwaSwTcsO^`D8l#=dUT62|EhSH~L;1Zx$agGF*DQ^il4VG`a$eI* zQif5*qLPwVr8&*iEGYw3O@%&F${NMIIuZ_#BaN1yX;Sey9JLe>TyYkJP0mtAvj(HE$zleW!-kjy zV!q5mnYH#cPfE2CT_^chD`%@ zg@TQQKSq5{B?Vi2nZ916Ab&DwM^C=;(sT0ovFFAoC#GJoy+`vUTO0?`m1&*Y;)I1t zFqkc#DBu|>y6t_LTDJdWv7l4n)h0iqnDo2Of*%7$2y}+V8yK+tT0U!-c7Rc<$nqH^ zX#9Lo*$Mx(G8B_U01LC+@#Q+z1))ryC9fq3dDTP613n71 zyl`zx+4oc7h9Ho#aJr7)IwSrmdzR}f2;|ycA1MjH^PUxwp7YC%jdB&AI`upv*WHDA z>J*?@g5SwmK&n`y2uXcmqA^SYyBhfTl|ZQvtE4LzH1E>9M^gD8Z|!YSPczVQY4KUFW9Ejm{3% z+qN%T%xCOSrlAqj59G*3`oc=h!kVc+AbZt6S09+gS zgChq_AYmXF4c0|VWlhH~omH=TM zg}?a{6n`h5&67{tNOE}DKR;FN-S!Cy`iHJW7lPO0)kxR%d?hkeZHs>xPyFclg-|sT zUx^GryV~A!HC7e3u8MsXv2XF4ABa02#9-p*CL-+8(_;WgR|6S9k^6HIcon)F1eQr1 zKjgGa)~w757XW?h@aVnZD+3~3Jo;Qb`pbTfM}M84rzIY}%PsM!OhWh914*tJ0E1Kj zUj}B%y+<9G``lyUz;gA(o#fPsljz@yg&C%(bOfLexNZQs>A4W=09MCQayE(%9?z6Y z8r4-Wj;zK^%W-4w0(GDKrNHNWHh>=;eufq-$vmSK3hS+|4s{+xHd!2J1t!DdphngO z#mxZ2=*jJdbz_YWZNVC30K^PH!7W5$Jy5m#)*)6tt68%$oMnN6)v9a&2%f-6uR_5A zT#J)P{L+bPa&$HMbS3%p%I-s73z$)=OGkyHUZFLH{|)0`>O~#Yey{FDA3|-JoL+Ae zzy*J0?-|$;+wR(f=QKKw4ZqfNmt9PQhu&xrO;3C!P+tt2%3 zxblzxqusc+0Or9_waJPa{(rrjcd`!$=?bI?X^<`KGoasvDtAm|0GEA&EI~Z%FwP3{4sA}+L9BuKuehs%?F%ZQCks+ZIc!+xJ(t@4wr2;41{GS`YBA4G^(&HJGRb6HD!t;0Oe? zH)1s}5mTS@om@J4=;&b~1M<1QP`$SH8>rkMl)#OIq&=#T_NpH0gZqS^2AVes)k}j^ zt=W6;K|YA2OPQOG?8q5iOBNx$tgsh(v!Km;eA4`OX66wMUZ ziQl3O(=|($&nGs3Z=^9&#A(Q2p48e&|ImW(TCCc)lYa&eF8J<>+p9YcEciYUx2*vc z!FvrP?JNfMhr%&#lOGahw(Bo6s?acvOTtah)cL4tDy}iO6_*kVxlXSN)rJ}T)jAZpS9CE5BrK@AyUW z*0ZaRAFn)q{PwQnKNc#n$g}U|dXk9r*DZ zrijbqTL2gNR0D}rZCrfhhrr4_3B_mgq}ma`5qm3kr(?&0zZ&a)^WxQu_j(4G zzHz4~dF5C&+PNAXx*Z+5*K^?3(7UO3Qt!jS#Fb-z>)C%R{_gg7w!i=Aot|S0$Nm_b zTzv9wY;r}M+zjNeWP&V(o7@k@O~FwFV!du%L0N_z1-8_)SqXdqa|MQ&;j6PYsKK*G zFsGa|we$2Lbh*+T2O{vAE$@{q+B(l=klC&?C(>{s9K$J z%9%C{y|r?jksCM#l|4`HM`Ejy!P}9+CF|E0e}1vr-E%M2b^Y--N-JW5Z*(ddw}E9| z$x&Gbr!6}#Y*25L<<}vS)kom`R3jtH4DFraE2`Z!f&Oy55zHqb4l#rxi{hvcWnt(C zY%j!ewiidxjj&NH4qoVJC-rv@d#czjl4OcOlKHk z$_`ki0wmbXhjjd`+|zbW7LSvKk@OLGs~M5uNk=u?A9yxw&Hw-a literal 0 HcmV?d00001 diff --git a/venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/provider.cpython-312.pyc b/venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/provider.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..6b475f6fa27b8e1a59d6f9118c6260b066c77c32 GIT binary patch literal 10375 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 literal 0 HcmV?d00001 diff --git a/venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/requirements.cpython-312.pyc b/venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/requirements.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..b13ab8742cebd0685202b4745e221772a055be1d GIT binary patch literal 11426 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 YzZl-&@VfCbzn$+a{qWylAY0l01fJtOtN;K2 literal 0 HcmV?d00001 diff --git a/venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/resolver.cpython-312.pyc b/venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/resolver.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..cf348bf19945a19dcf6fee687ad823f8d5a121cf GIT binary patch literal 12348 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 literal 0 HcmV?d00001 diff --git a/venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/base.py b/venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/base.py new file mode 100644 index 0000000..9c0ef5c --- /dev/null +++ b/venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/base.py @@ -0,0 +1,141 @@ +from typing import FrozenSet, Iterable, Optional, Tuple, Union + +from pip._vendor.packaging.specifiers import SpecifierSet +from pip._vendor.packaging.utils import NormalizedName +from pip._vendor.packaging.version import LegacyVersion, Version + +from pip._internal.models.link import Link, links_equivalent +from pip._internal.req.req_install import InstallRequirement +from pip._internal.utils.hashes import Hashes + +CandidateLookup = Tuple[Optional["Candidate"], Optional[InstallRequirement]] +CandidateVersion = Union[LegacyVersion, Version] + + +def format_name(project: NormalizedName, extras: FrozenSet[NormalizedName]) -> str: + if not extras: + return project + extras_expr = ",".join(sorted(extras)) + return f"{project}[{extras_expr}]" + + +class Constraint: + def __init__( + self, specifier: SpecifierSet, hashes: Hashes, links: FrozenSet[Link] + ) -> None: + self.specifier = specifier + self.hashes = hashes + self.links = links + + @classmethod + def empty(cls) -> "Constraint": + return Constraint(SpecifierSet(), Hashes(), frozenset()) + + @classmethod + def from_ireq(cls, ireq: InstallRequirement) -> "Constraint": + links = frozenset([ireq.link]) if ireq.link else frozenset() + return Constraint(ireq.specifier, ireq.hashes(trust_internet=False), links) + + def __bool__(self) -> bool: + return bool(self.specifier) or bool(self.hashes) or bool(self.links) + + def __and__(self, other: InstallRequirement) -> "Constraint": + if not isinstance(other, InstallRequirement): + return NotImplemented + specifier = self.specifier & other.specifier + hashes = self.hashes & other.hashes(trust_internet=False) + links = self.links + if other.link: + links = links.union([other.link]) + return Constraint(specifier, hashes, links) + + def is_satisfied_by(self, candidate: "Candidate") -> bool: + # Reject if there are any mismatched URL constraints on this package. + if self.links and not all(_match_link(link, candidate) for link in self.links): + return False + # We can safely always allow prereleases here since PackageFinder + # already implements the prerelease logic, and would have filtered out + # prerelease candidates if the user does not expect them. + return self.specifier.contains(candidate.version, prereleases=True) + + +class Requirement: + @property + def project_name(self) -> NormalizedName: + """The "project name" of a requirement. + + This is different from ``name`` if this requirement contains extras, + in which case ``name`` would contain the ``[...]`` part, while this + refers to the name of the project. + """ + raise NotImplementedError("Subclass should override") + + @property + def name(self) -> str: + """The name identifying this requirement in the resolver. + + This is different from ``project_name`` if this requirement contains + extras, where ``project_name`` would not contain the ``[...]`` part. + """ + raise NotImplementedError("Subclass should override") + + def is_satisfied_by(self, candidate: "Candidate") -> bool: + return False + + def get_candidate_lookup(self) -> CandidateLookup: + raise NotImplementedError("Subclass should override") + + def format_for_error(self) -> str: + raise NotImplementedError("Subclass should override") + + +def _match_link(link: Link, candidate: "Candidate") -> bool: + if candidate.source_link: + return links_equivalent(link, candidate.source_link) + return False + + +class Candidate: + @property + def project_name(self) -> NormalizedName: + """The "project name" of the candidate. + + This is different from ``name`` if this candidate contains extras, + in which case ``name`` would contain the ``[...]`` part, while this + refers to the name of the project. + """ + raise NotImplementedError("Override in subclass") + + @property + def name(self) -> str: + """The name identifying this candidate in the resolver. + + This is different from ``project_name`` if this candidate contains + extras, where ``project_name`` would not contain the ``[...]`` part. + """ + raise NotImplementedError("Override in subclass") + + @property + def version(self) -> CandidateVersion: + raise NotImplementedError("Override in subclass") + + @property + def is_installed(self) -> bool: + raise NotImplementedError("Override in subclass") + + @property + def is_editable(self) -> bool: + raise NotImplementedError("Override in subclass") + + @property + def source_link(self) -> Optional[Link]: + raise NotImplementedError("Override in subclass") + + def iter_dependencies(self, with_requires: bool) -> Iterable[Optional[Requirement]]: + raise NotImplementedError("Override in subclass") + + def get_install_requirement(self) -> Optional[InstallRequirement]: + raise NotImplementedError("Override in subclass") + + def format_for_error(self) -> str: + raise NotImplementedError("Subclass should override") diff --git a/venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/candidates.py b/venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/candidates.py new file mode 100644 index 0000000..4125cda --- /dev/null +++ b/venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/candidates.py @@ -0,0 +1,597 @@ +import logging +import sys +from typing import TYPE_CHECKING, Any, FrozenSet, Iterable, Optional, Tuple, Union, cast + +from pip._vendor.packaging.utils import NormalizedName, canonicalize_name +from pip._vendor.packaging.version import Version + +from pip._internal.exceptions import ( + HashError, + InstallationSubprocessError, + MetadataInconsistent, +) +from pip._internal.metadata import BaseDistribution +from pip._internal.models.link import Link, links_equivalent +from pip._internal.models.wheel import Wheel +from pip._internal.req.constructors import ( + install_req_from_editable, + install_req_from_line, +) +from pip._internal.req.req_install import InstallRequirement +from pip._internal.utils.direct_url_helpers import direct_url_from_link +from pip._internal.utils.misc import normalize_version_info + +from .base import Candidate, CandidateVersion, Requirement, format_name + +if TYPE_CHECKING: + from .factory import Factory + +logger = logging.getLogger(__name__) + +BaseCandidate = Union[ + "AlreadyInstalledCandidate", + "EditableCandidate", + "LinkCandidate", +] + +# Avoid conflicting with the PyPI package "Python". +REQUIRES_PYTHON_IDENTIFIER = cast(NormalizedName, "") + + +def as_base_candidate(candidate: Candidate) -> Optional[BaseCandidate]: + """The runtime version of BaseCandidate.""" + base_candidate_classes = ( + AlreadyInstalledCandidate, + EditableCandidate, + LinkCandidate, + ) + if isinstance(candidate, base_candidate_classes): + return candidate + return None + + +def make_install_req_from_link( + link: Link, template: InstallRequirement +) -> InstallRequirement: + assert not template.editable, "template is editable" + if template.req: + line = str(template.req) + else: + line = link.url + ireq = install_req_from_line( + line, + user_supplied=template.user_supplied, + comes_from=template.comes_from, + use_pep517=template.use_pep517, + isolated=template.isolated, + constraint=template.constraint, + global_options=template.global_options, + hash_options=template.hash_options, + config_settings=template.config_settings, + ) + ireq.original_link = template.original_link + ireq.link = link + ireq.extras = template.extras + return ireq + + +def make_install_req_from_editable( + link: Link, template: InstallRequirement +) -> InstallRequirement: + assert template.editable, "template not editable" + ireq = install_req_from_editable( + link.url, + user_supplied=template.user_supplied, + comes_from=template.comes_from, + use_pep517=template.use_pep517, + isolated=template.isolated, + constraint=template.constraint, + permit_editable_wheels=template.permit_editable_wheels, + global_options=template.global_options, + hash_options=template.hash_options, + config_settings=template.config_settings, + ) + ireq.extras = template.extras + return ireq + + +def _make_install_req_from_dist( + dist: BaseDistribution, template: InstallRequirement +) -> InstallRequirement: + if template.req: + line = str(template.req) + elif template.link: + line = f"{dist.canonical_name} @ {template.link.url}" + else: + line = f"{dist.canonical_name}=={dist.version}" + ireq = install_req_from_line( + line, + user_supplied=template.user_supplied, + comes_from=template.comes_from, + use_pep517=template.use_pep517, + isolated=template.isolated, + constraint=template.constraint, + global_options=template.global_options, + hash_options=template.hash_options, + config_settings=template.config_settings, + ) + ireq.satisfied_by = dist + return ireq + + +class _InstallRequirementBackedCandidate(Candidate): + """A candidate backed by an ``InstallRequirement``. + + This represents a package request with the target not being already + in the environment, and needs to be fetched and installed. The backing + ``InstallRequirement`` is responsible for most of the leg work; this + class exposes appropriate information to the resolver. + + :param link: The link passed to the ``InstallRequirement``. The backing + ``InstallRequirement`` will use this link to fetch the distribution. + :param source_link: The link this candidate "originates" from. This is + different from ``link`` when the link is found in the wheel cache. + ``link`` would point to the wheel cache, while this points to the + found remote link (e.g. from pypi.org). + """ + + dist: BaseDistribution + is_installed = False + + def __init__( + self, + link: Link, + source_link: Link, + ireq: InstallRequirement, + factory: "Factory", + name: Optional[NormalizedName] = None, + version: Optional[CandidateVersion] = None, + ) -> None: + self._link = link + self._source_link = source_link + self._factory = factory + self._ireq = ireq + self._name = name + self._version = version + self.dist = self._prepare() + + def __str__(self) -> str: + return f"{self.name} {self.version}" + + def __repr__(self) -> str: + return f"{self.__class__.__name__}({str(self._link)!r})" + + def __hash__(self) -> int: + return hash((self.__class__, self._link)) + + def __eq__(self, other: Any) -> bool: + if isinstance(other, self.__class__): + return links_equivalent(self._link, other._link) + return False + + @property + def source_link(self) -> Optional[Link]: + return self._source_link + + @property + def project_name(self) -> NormalizedName: + """The normalised name of the project the candidate refers to""" + if self._name is None: + self._name = self.dist.canonical_name + return self._name + + @property + def name(self) -> str: + return self.project_name + + @property + def version(self) -> CandidateVersion: + if self._version is None: + self._version = self.dist.version + return self._version + + def format_for_error(self) -> str: + return "{} {} (from {})".format( + self.name, + self.version, + self._link.file_path if self._link.is_file else self._link, + ) + + def _prepare_distribution(self) -> BaseDistribution: + raise NotImplementedError("Override in subclass") + + def _check_metadata_consistency(self, dist: BaseDistribution) -> None: + """Check for consistency of project name and version of dist.""" + if self._name is not None and self._name != dist.canonical_name: + raise MetadataInconsistent( + self._ireq, + "name", + self._name, + dist.canonical_name, + ) + if self._version is not None and self._version != dist.version: + raise MetadataInconsistent( + self._ireq, + "version", + str(self._version), + str(dist.version), + ) + + def _prepare(self) -> BaseDistribution: + try: + dist = self._prepare_distribution() + except HashError as e: + # Provide HashError the underlying ireq that caused it. This + # provides context for the resulting error message to show the + # offending line to the user. + e.req = self._ireq + raise + except InstallationSubprocessError as exc: + # The output has been presented already, so don't duplicate it. + exc.context = "See above for output." + raise + + self._check_metadata_consistency(dist) + return dist + + def iter_dependencies(self, with_requires: bool) -> Iterable[Optional[Requirement]]: + requires = self.dist.iter_dependencies() if with_requires else () + for r in requires: + yield from self._factory.make_requirements_from_spec(str(r), self._ireq) + yield self._factory.make_requires_python_requirement(self.dist.requires_python) + + def get_install_requirement(self) -> Optional[InstallRequirement]: + return self._ireq + + +class LinkCandidate(_InstallRequirementBackedCandidate): + is_editable = False + + def __init__( + self, + link: Link, + template: InstallRequirement, + factory: "Factory", + name: Optional[NormalizedName] = None, + version: Optional[CandidateVersion] = None, + ) -> None: + source_link = link + cache_entry = factory.get_wheel_cache_entry(source_link, name) + if cache_entry is not None: + logger.debug("Using cached wheel link: %s", cache_entry.link) + link = cache_entry.link + ireq = make_install_req_from_link(link, template) + assert ireq.link == link + if ireq.link.is_wheel and not ireq.link.is_file: + wheel = Wheel(ireq.link.filename) + wheel_name = canonicalize_name(wheel.name) + assert name == wheel_name, f"{name!r} != {wheel_name!r} for wheel" + # Version may not be present for PEP 508 direct URLs + if version is not None: + wheel_version = Version(wheel.version) + assert version == wheel_version, "{!r} != {!r} for wheel {}".format( + version, wheel_version, name + ) + + if cache_entry is not None: + assert ireq.link.is_wheel + assert ireq.link.is_file + if cache_entry.persistent and template.link is template.original_link: + ireq.cached_wheel_source_link = source_link + if cache_entry.origin is not None: + ireq.download_info = cache_entry.origin + else: + # Legacy cache entry that does not have origin.json. + # download_info may miss the archive_info.hashes field. + ireq.download_info = direct_url_from_link( + source_link, link_is_in_wheel_cache=cache_entry.persistent + ) + + super().__init__( + link=link, + source_link=source_link, + ireq=ireq, + factory=factory, + name=name, + version=version, + ) + + def _prepare_distribution(self) -> BaseDistribution: + preparer = self._factory.preparer + return preparer.prepare_linked_requirement(self._ireq, parallel_builds=True) + + +class EditableCandidate(_InstallRequirementBackedCandidate): + is_editable = True + + def __init__( + self, + link: Link, + template: InstallRequirement, + factory: "Factory", + name: Optional[NormalizedName] = None, + version: Optional[CandidateVersion] = None, + ) -> None: + super().__init__( + link=link, + source_link=link, + ireq=make_install_req_from_editable(link, template), + factory=factory, + name=name, + version=version, + ) + + def _prepare_distribution(self) -> BaseDistribution: + return self._factory.preparer.prepare_editable_requirement(self._ireq) + + +class AlreadyInstalledCandidate(Candidate): + is_installed = True + source_link = None + + def __init__( + self, + dist: BaseDistribution, + template: InstallRequirement, + factory: "Factory", + ) -> None: + self.dist = dist + self._ireq = _make_install_req_from_dist(dist, template) + self._factory = factory + self._version = None + + # This is just logging some messages, so we can do it eagerly. + # The returned dist would be exactly the same as self.dist because we + # set satisfied_by in _make_install_req_from_dist. + # TODO: Supply reason based on force_reinstall and upgrade_strategy. + skip_reason = "already satisfied" + factory.preparer.prepare_installed_requirement(self._ireq, skip_reason) + + def __str__(self) -> str: + return str(self.dist) + + def __repr__(self) -> str: + return f"{self.__class__.__name__}({self.dist!r})" + + def __hash__(self) -> int: + return hash((self.__class__, self.name, self.version)) + + def __eq__(self, other: Any) -> bool: + if isinstance(other, self.__class__): + return self.name == other.name and self.version == other.version + return False + + @property + def project_name(self) -> NormalizedName: + return self.dist.canonical_name + + @property + def name(self) -> str: + return self.project_name + + @property + def version(self) -> CandidateVersion: + if self._version is None: + self._version = self.dist.version + return self._version + + @property + def is_editable(self) -> bool: + return self.dist.editable + + def format_for_error(self) -> str: + return f"{self.name} {self.version} (Installed)" + + def iter_dependencies(self, with_requires: bool) -> Iterable[Optional[Requirement]]: + if not with_requires: + return + for r in self.dist.iter_dependencies(): + yield from self._factory.make_requirements_from_spec(str(r), self._ireq) + + def get_install_requirement(self) -> Optional[InstallRequirement]: + return None + + +class ExtrasCandidate(Candidate): + """A candidate that has 'extras', indicating additional dependencies. + + Requirements can be for a project with dependencies, something like + foo[extra]. The extras don't affect the project/version being installed + directly, but indicate that we need additional dependencies. We model that + by having an artificial ExtrasCandidate that wraps the "base" candidate. + + The ExtrasCandidate differs from the base in the following ways: + + 1. It has a unique name, of the form foo[extra]. This causes the resolver + to treat it as a separate node in the dependency graph. + 2. When we're getting the candidate's dependencies, + a) We specify that we want the extra dependencies as well. + b) We add a dependency on the base candidate. + See below for why this is needed. + 3. We return None for the underlying InstallRequirement, as the base + candidate will provide it, and we don't want to end up with duplicates. + + The dependency on the base candidate is needed so that the resolver can't + decide that it should recommend foo[extra1] version 1.0 and foo[extra2] + version 2.0. Having those candidates depend on foo=1.0 and foo=2.0 + respectively forces the resolver to recognise that this is a conflict. + """ + + def __init__( + self, + base: BaseCandidate, + extras: FrozenSet[str], + *, + comes_from: Optional[InstallRequirement] = None, + ) -> None: + """ + :param comes_from: the InstallRequirement that led to this candidate if it + differs from the base's InstallRequirement. This will often be the + case in the sense that this candidate's requirement has the extras + while the base's does not. Unlike the InstallRequirement backed + candidates, this requirement is used solely for reporting purposes, + it does not do any leg work. + """ + self.base = base + self.extras = frozenset(canonicalize_name(e) for e in extras) + # If any extras are requested in their non-normalized forms, keep track + # of their raw values. This is needed when we look up dependencies + # since PEP 685 has not been implemented for marker-matching, and using + # the non-normalized extra for lookup ensures the user can select a + # non-normalized extra in a package with its non-normalized form. + # TODO: Remove this attribute when packaging is upgraded to support the + # marker comparison logic specified in PEP 685. + self._unnormalized_extras = extras.difference(self.extras) + self._comes_from = comes_from if comes_from is not None else self.base._ireq + + def __str__(self) -> str: + name, rest = str(self.base).split(" ", 1) + return "{}[{}] {}".format(name, ",".join(self.extras), rest) + + def __repr__(self) -> str: + return f"{self.__class__.__name__}(base={self.base!r}, extras={self.extras!r})" + + def __hash__(self) -> int: + return hash((self.base, self.extras)) + + def __eq__(self, other: Any) -> bool: + if isinstance(other, self.__class__): + return self.base == other.base and self.extras == other.extras + return False + + @property + def project_name(self) -> NormalizedName: + return self.base.project_name + + @property + def name(self) -> str: + """The normalised name of the project the candidate refers to""" + return format_name(self.base.project_name, self.extras) + + @property + def version(self) -> CandidateVersion: + return self.base.version + + def format_for_error(self) -> str: + return "{} [{}]".format( + self.base.format_for_error(), ", ".join(sorted(self.extras)) + ) + + @property + def is_installed(self) -> bool: + return self.base.is_installed + + @property + def is_editable(self) -> bool: + return self.base.is_editable + + @property + def source_link(self) -> Optional[Link]: + return self.base.source_link + + def _warn_invalid_extras( + self, + requested: FrozenSet[str], + valid: FrozenSet[str], + ) -> None: + """Emit warnings for invalid extras being requested. + + This emits a warning for each requested extra that is not in the + candidate's ``Provides-Extra`` list. + """ + invalid_extras_to_warn = frozenset( + extra + for extra in requested + if extra not in valid + # If an extra is requested in an unnormalized form, skip warning + # about the normalized form being missing. + and extra in self.extras + ) + if not invalid_extras_to_warn: + return + for extra in sorted(invalid_extras_to_warn): + logger.warning( + "%s %s does not provide the extra '%s'", + self.base.name, + self.version, + extra, + ) + + def _calculate_valid_requested_extras(self) -> FrozenSet[str]: + """Get a list of valid extras requested by this candidate. + + The user (or upstream dependant) may have specified extras that the + candidate doesn't support. Any unsupported extras are dropped, and each + cause a warning to be logged here. + """ + requested_extras = self.extras.union(self._unnormalized_extras) + valid_extras = frozenset( + extra + for extra in requested_extras + if self.base.dist.is_extra_provided(extra) + ) + self._warn_invalid_extras(requested_extras, valid_extras) + return valid_extras + + def iter_dependencies(self, with_requires: bool) -> Iterable[Optional[Requirement]]: + factory = self.base._factory + + # Add a dependency on the exact base + # (See note 2b in the class docstring) + yield factory.make_requirement_from_candidate(self.base) + if not with_requires: + return + + valid_extras = self._calculate_valid_requested_extras() + for r in self.base.dist.iter_dependencies(valid_extras): + yield from factory.make_requirements_from_spec( + str(r), + self._comes_from, + valid_extras, + ) + + def get_install_requirement(self) -> Optional[InstallRequirement]: + # We don't return anything here, because we always + # depend on the base candidate, and we'll get the + # install requirement from that. + return None + + +class RequiresPythonCandidate(Candidate): + is_installed = False + source_link = None + + def __init__(self, py_version_info: Optional[Tuple[int, ...]]) -> None: + if py_version_info is not None: + version_info = normalize_version_info(py_version_info) + else: + version_info = sys.version_info[:3] + self._version = Version(".".join(str(c) for c in version_info)) + + # We don't need to implement __eq__() and __ne__() since there is always + # only one RequiresPythonCandidate in a resolution, i.e. the host Python. + # The built-in object.__eq__() and object.__ne__() do exactly what we want. + + def __str__(self) -> str: + return f"Python {self._version}" + + @property + def project_name(self) -> NormalizedName: + return REQUIRES_PYTHON_IDENTIFIER + + @property + def name(self) -> str: + return REQUIRES_PYTHON_IDENTIFIER + + @property + def version(self) -> CandidateVersion: + return self._version + + def format_for_error(self) -> str: + return f"Python {self.version}" + + def iter_dependencies(self, with_requires: bool) -> Iterable[Optional[Requirement]]: + return () + + def get_install_requirement(self) -> Optional[InstallRequirement]: + return None diff --git a/venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/factory.py b/venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/factory.py new file mode 100644 index 0000000..4adeb43 --- /dev/null +++ b/venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/factory.py @@ -0,0 +1,812 @@ +import contextlib +import functools +import logging +from typing import ( + TYPE_CHECKING, + Dict, + FrozenSet, + Iterable, + Iterator, + List, + Mapping, + NamedTuple, + Optional, + Sequence, + Set, + Tuple, + TypeVar, + cast, +) + +from pip._vendor.packaging.requirements import InvalidRequirement +from pip._vendor.packaging.specifiers import SpecifierSet +from pip._vendor.packaging.utils import NormalizedName, canonicalize_name +from pip._vendor.resolvelib import ResolutionImpossible + +from pip._internal.cache import CacheEntry, WheelCache +from pip._internal.exceptions import ( + DistributionNotFound, + InstallationError, + MetadataInconsistent, + UnsupportedPythonVersion, + UnsupportedWheel, +) +from pip._internal.index.package_finder import PackageFinder +from pip._internal.metadata import BaseDistribution, get_default_environment +from pip._internal.models.link import Link +from pip._internal.models.wheel import Wheel +from pip._internal.operations.prepare import RequirementPreparer +from pip._internal.req.constructors import ( + install_req_drop_extras, + install_req_from_link_and_ireq, +) +from pip._internal.req.req_install import ( + InstallRequirement, + check_invalid_constraint_type, +) +from pip._internal.resolution.base import InstallRequirementProvider +from pip._internal.utils.compatibility_tags import get_supported +from pip._internal.utils.hashes import Hashes +from pip._internal.utils.packaging import get_requirement +from pip._internal.utils.virtualenv import running_under_virtualenv + +from .base import Candidate, CandidateVersion, Constraint, Requirement +from .candidates import ( + AlreadyInstalledCandidate, + BaseCandidate, + EditableCandidate, + ExtrasCandidate, + LinkCandidate, + RequiresPythonCandidate, + as_base_candidate, +) +from .found_candidates import FoundCandidates, IndexCandidateInfo +from .requirements import ( + ExplicitRequirement, + RequiresPythonRequirement, + SpecifierRequirement, + SpecifierWithoutExtrasRequirement, + UnsatisfiableRequirement, +) + +if TYPE_CHECKING: + from typing import Protocol + + class ConflictCause(Protocol): + requirement: RequiresPythonRequirement + parent: Candidate + + +logger = logging.getLogger(__name__) + +C = TypeVar("C") +Cache = Dict[Link, C] + + +class CollectedRootRequirements(NamedTuple): + requirements: List[Requirement] + constraints: Dict[str, Constraint] + user_requested: Dict[str, int] + + +class Factory: + def __init__( + self, + finder: PackageFinder, + preparer: RequirementPreparer, + make_install_req: InstallRequirementProvider, + wheel_cache: Optional[WheelCache], + use_user_site: bool, + force_reinstall: bool, + ignore_installed: bool, + ignore_requires_python: bool, + py_version_info: Optional[Tuple[int, ...]] = None, + ) -> None: + self._finder = finder + self.preparer = preparer + self._wheel_cache = wheel_cache + self._python_candidate = RequiresPythonCandidate(py_version_info) + self._make_install_req_from_spec = make_install_req + self._use_user_site = use_user_site + self._force_reinstall = force_reinstall + self._ignore_requires_python = ignore_requires_python + + self._build_failures: Cache[InstallationError] = {} + self._link_candidate_cache: Cache[LinkCandidate] = {} + self._editable_candidate_cache: Cache[EditableCandidate] = {} + self._installed_candidate_cache: Dict[str, AlreadyInstalledCandidate] = {} + self._extras_candidate_cache: Dict[ + Tuple[int, FrozenSet[NormalizedName]], ExtrasCandidate + ] = {} + + if not ignore_installed: + env = get_default_environment() + self._installed_dists = { + dist.canonical_name: dist + for dist in env.iter_installed_distributions(local_only=False) + } + else: + self._installed_dists = {} + + @property + def force_reinstall(self) -> bool: + return self._force_reinstall + + def _fail_if_link_is_unsupported_wheel(self, link: Link) -> None: + if not link.is_wheel: + return + wheel = Wheel(link.filename) + if wheel.supported(self._finder.target_python.get_unsorted_tags()): + return + msg = f"{link.filename} is not a supported wheel on this platform." + raise UnsupportedWheel(msg) + + def _make_extras_candidate( + self, + base: BaseCandidate, + extras: FrozenSet[str], + *, + comes_from: Optional[InstallRequirement] = None, + ) -> ExtrasCandidate: + cache_key = (id(base), frozenset(canonicalize_name(e) for e in extras)) + try: + candidate = self._extras_candidate_cache[cache_key] + except KeyError: + candidate = ExtrasCandidate(base, extras, comes_from=comes_from) + self._extras_candidate_cache[cache_key] = candidate + return candidate + + def _make_candidate_from_dist( + self, + dist: BaseDistribution, + extras: FrozenSet[str], + template: InstallRequirement, + ) -> Candidate: + try: + base = self._installed_candidate_cache[dist.canonical_name] + except KeyError: + base = AlreadyInstalledCandidate(dist, template, factory=self) + self._installed_candidate_cache[dist.canonical_name] = base + if not extras: + return base + return self._make_extras_candidate(base, extras, comes_from=template) + + def _make_candidate_from_link( + self, + link: Link, + extras: FrozenSet[str], + template: InstallRequirement, + name: Optional[NormalizedName], + version: Optional[CandidateVersion], + ) -> Optional[Candidate]: + base: Optional[BaseCandidate] = self._make_base_candidate_from_link( + link, template, name, version + ) + if not extras or base is None: + return base + return self._make_extras_candidate(base, extras, comes_from=template) + + def _make_base_candidate_from_link( + self, + link: Link, + template: InstallRequirement, + name: Optional[NormalizedName], + version: Optional[CandidateVersion], + ) -> Optional[BaseCandidate]: + # TODO: Check already installed candidate, and use it if the link and + # editable flag match. + + if link in self._build_failures: + # We already tried this candidate before, and it does not build. + # Don't bother trying again. + return None + + if template.editable: + if link not in self._editable_candidate_cache: + try: + self._editable_candidate_cache[link] = EditableCandidate( + link, + template, + factory=self, + name=name, + version=version, + ) + except MetadataInconsistent as e: + logger.info( + "Discarding [blue underline]%s[/]: [yellow]%s[reset]", + link, + e, + extra={"markup": True}, + ) + self._build_failures[link] = e + return None + + return self._editable_candidate_cache[link] + else: + if link not in self._link_candidate_cache: + try: + self._link_candidate_cache[link] = LinkCandidate( + link, + template, + factory=self, + name=name, + version=version, + ) + except MetadataInconsistent as e: + logger.info( + "Discarding [blue underline]%s[/]: [yellow]%s[reset]", + link, + e, + extra={"markup": True}, + ) + self._build_failures[link] = e + return None + return self._link_candidate_cache[link] + + def _iter_found_candidates( + self, + ireqs: Sequence[InstallRequirement], + specifier: SpecifierSet, + hashes: Hashes, + prefers_installed: bool, + incompatible_ids: Set[int], + ) -> Iterable[Candidate]: + if not ireqs: + return () + + # The InstallRequirement implementation requires us to give it a + # "template". Here we just choose the first requirement to represent + # all of them. + # Hopefully the Project model can correct this mismatch in the future. + template = ireqs[0] + assert template.req, "Candidates found on index must be PEP 508" + name = canonicalize_name(template.req.name) + + extras: FrozenSet[str] = frozenset() + for ireq in ireqs: + assert ireq.req, "Candidates found on index must be PEP 508" + specifier &= ireq.req.specifier + hashes &= ireq.hashes(trust_internet=False) + extras |= frozenset(ireq.extras) + + def _get_installed_candidate() -> Optional[Candidate]: + """Get the candidate for the currently-installed version.""" + # If --force-reinstall is set, we want the version from the index + # instead, so we "pretend" there is nothing installed. + if self._force_reinstall: + return None + try: + installed_dist = self._installed_dists[name] + except KeyError: + return None + # Don't use the installed distribution if its version does not fit + # the current dependency graph. + if not specifier.contains(installed_dist.version, prereleases=True): + return None + candidate = self._make_candidate_from_dist( + dist=installed_dist, + extras=extras, + template=template, + ) + # The candidate is a known incompatibility. Don't use it. + if id(candidate) in incompatible_ids: + return None + return candidate + + def iter_index_candidate_infos() -> Iterator[IndexCandidateInfo]: + result = self._finder.find_best_candidate( + project_name=name, + specifier=specifier, + hashes=hashes, + ) + icans = list(result.iter_applicable()) + + # PEP 592: Yanked releases are ignored unless the specifier + # explicitly pins a version (via '==' or '===') that can be + # solely satisfied by a yanked release. + all_yanked = all(ican.link.is_yanked for ican in icans) + + def is_pinned(specifier: SpecifierSet) -> bool: + for sp in specifier: + if sp.operator == "===": + return True + if sp.operator != "==": + continue + if sp.version.endswith(".*"): + continue + return True + return False + + pinned = is_pinned(specifier) + + # PackageFinder returns earlier versions first, so we reverse. + for ican in reversed(icans): + if not (all_yanked and pinned) and ican.link.is_yanked: + continue + func = functools.partial( + self._make_candidate_from_link, + link=ican.link, + extras=extras, + template=template, + name=name, + version=ican.version, + ) + yield ican.version, func + + return FoundCandidates( + iter_index_candidate_infos, + _get_installed_candidate(), + prefers_installed, + incompatible_ids, + ) + + def _iter_explicit_candidates_from_base( + self, + base_requirements: Iterable[Requirement], + extras: FrozenSet[str], + ) -> Iterator[Candidate]: + """Produce explicit candidates from the base given an extra-ed package. + + :param base_requirements: Requirements known to the resolver. The + requirements are guaranteed to not have extras. + :param extras: The extras to inject into the explicit requirements' + candidates. + """ + for req in base_requirements: + lookup_cand, _ = req.get_candidate_lookup() + if lookup_cand is None: # Not explicit. + continue + # We've stripped extras from the identifier, and should always + # get a BaseCandidate here, unless there's a bug elsewhere. + base_cand = as_base_candidate(lookup_cand) + assert base_cand is not None, "no extras here" + yield self._make_extras_candidate(base_cand, extras) + + def _iter_candidates_from_constraints( + self, + identifier: str, + constraint: Constraint, + template: InstallRequirement, + ) -> Iterator[Candidate]: + """Produce explicit candidates from constraints. + + This creates "fake" InstallRequirement objects that are basically clones + of what "should" be the template, but with original_link set to link. + """ + for link in constraint.links: + self._fail_if_link_is_unsupported_wheel(link) + candidate = self._make_base_candidate_from_link( + link, + template=install_req_from_link_and_ireq(link, template), + name=canonicalize_name(identifier), + version=None, + ) + if candidate: + yield candidate + + def find_candidates( + self, + identifier: str, + requirements: Mapping[str, Iterable[Requirement]], + incompatibilities: Mapping[str, Iterator[Candidate]], + constraint: Constraint, + prefers_installed: bool, + ) -> Iterable[Candidate]: + # Collect basic lookup information from the requirements. + explicit_candidates: Set[Candidate] = set() + ireqs: List[InstallRequirement] = [] + for req in requirements[identifier]: + cand, ireq = req.get_candidate_lookup() + if cand is not None: + explicit_candidates.add(cand) + if ireq is not None: + ireqs.append(ireq) + + # If the current identifier contains extras, add requires and explicit + # candidates from entries from extra-less identifier. + with contextlib.suppress(InvalidRequirement): + parsed_requirement = get_requirement(identifier) + if parsed_requirement.name != identifier: + explicit_candidates.update( + self._iter_explicit_candidates_from_base( + requirements.get(parsed_requirement.name, ()), + frozenset(parsed_requirement.extras), + ), + ) + for req in requirements.get(parsed_requirement.name, []): + _, ireq = req.get_candidate_lookup() + if ireq is not None: + ireqs.append(ireq) + + # Add explicit candidates from constraints. We only do this if there are + # known ireqs, which represent requirements not already explicit. If + # there are no ireqs, we're constraining already-explicit requirements, + # which is handled later when we return the explicit candidates. + if ireqs: + try: + explicit_candidates.update( + self._iter_candidates_from_constraints( + identifier, + constraint, + template=ireqs[0], + ), + ) + except UnsupportedWheel: + # If we're constrained to install a wheel incompatible with the + # target architecture, no candidates will ever be valid. + return () + + # Since we cache all the candidates, incompatibility identification + # can be made quicker by comparing only the id() values. + incompat_ids = {id(c) for c in incompatibilities.get(identifier, ())} + + # If none of the requirements want an explicit candidate, we can ask + # the finder for candidates. + if not explicit_candidates: + return self._iter_found_candidates( + ireqs, + constraint.specifier, + constraint.hashes, + prefers_installed, + incompat_ids, + ) + + return ( + c + for c in explicit_candidates + if id(c) not in incompat_ids + and constraint.is_satisfied_by(c) + and all(req.is_satisfied_by(c) for req in requirements[identifier]) + ) + + def _make_requirements_from_install_req( + self, ireq: InstallRequirement, requested_extras: Iterable[str] + ) -> Iterator[Requirement]: + """ + Returns requirement objects associated with the given InstallRequirement. In + most cases this will be a single object but the following special cases exist: + - the InstallRequirement has markers that do not apply -> result is empty + - the InstallRequirement has both a constraint (or link) and extras + -> result is split in two requirement objects: one with the constraint + (or link) and one with the extra. This allows centralized constraint + handling for the base, resulting in fewer candidate rejections. + """ + if not ireq.match_markers(requested_extras): + logger.info( + "Ignoring %s: markers '%s' don't match your environment", + ireq.name, + ireq.markers, + ) + elif not ireq.link: + if ireq.extras and ireq.req is not None and ireq.req.specifier: + yield SpecifierWithoutExtrasRequirement(ireq) + yield SpecifierRequirement(ireq) + else: + self._fail_if_link_is_unsupported_wheel(ireq.link) + # Always make the link candidate for the base requirement to make it + # available to `find_candidates` for explicit candidate lookup for any + # set of extras. + # The extras are required separately via a second requirement. + cand = self._make_base_candidate_from_link( + ireq.link, + template=install_req_drop_extras(ireq) if ireq.extras else ireq, + name=canonicalize_name(ireq.name) if ireq.name else None, + version=None, + ) + if cand is None: + # There's no way we can satisfy a URL requirement if the underlying + # candidate fails to build. An unnamed URL must be user-supplied, so + # we fail eagerly. If the URL is named, an unsatisfiable requirement + # can make the resolver do the right thing, either backtrack (and + # maybe find some other requirement that's buildable) or raise a + # ResolutionImpossible eventually. + if not ireq.name: + raise self._build_failures[ireq.link] + yield UnsatisfiableRequirement(canonicalize_name(ireq.name)) + else: + # require the base from the link + yield self.make_requirement_from_candidate(cand) + if ireq.extras: + # require the extras on top of the base candidate + yield self.make_requirement_from_candidate( + self._make_extras_candidate(cand, frozenset(ireq.extras)) + ) + + def collect_root_requirements( + self, root_ireqs: List[InstallRequirement] + ) -> CollectedRootRequirements: + collected = CollectedRootRequirements([], {}, {}) + for i, ireq in enumerate(root_ireqs): + if ireq.constraint: + # Ensure we only accept valid constraints + problem = check_invalid_constraint_type(ireq) + if problem: + raise InstallationError(problem) + if not ireq.match_markers(): + continue + assert ireq.name, "Constraint must be named" + name = canonicalize_name(ireq.name) + if name in collected.constraints: + collected.constraints[name] &= ireq + else: + collected.constraints[name] = Constraint.from_ireq(ireq) + else: + reqs = list( + self._make_requirements_from_install_req( + ireq, + requested_extras=(), + ) + ) + if not reqs: + continue + template = reqs[0] + if ireq.user_supplied and template.name not in collected.user_requested: + collected.user_requested[template.name] = i + collected.requirements.extend(reqs) + # Put requirements with extras at the end of the root requires. This does not + # affect resolvelib's picking preference but it does affect its initial criteria + # population: by putting extras at the end we enable the candidate finder to + # present resolvelib with a smaller set of candidates to resolvelib, already + # taking into account any non-transient constraints on the associated base. This + # means resolvelib will have fewer candidates to visit and reject. + # Python's list sort is stable, meaning relative order is kept for objects with + # the same key. + collected.requirements.sort(key=lambda r: r.name != r.project_name) + return collected + + def make_requirement_from_candidate( + self, candidate: Candidate + ) -> ExplicitRequirement: + return ExplicitRequirement(candidate) + + def make_requirements_from_spec( + self, + specifier: str, + comes_from: Optional[InstallRequirement], + requested_extras: Iterable[str] = (), + ) -> Iterator[Requirement]: + """ + Returns requirement objects associated with the given specifier. In most cases + this will be a single object but the following special cases exist: + - the specifier has markers that do not apply -> result is empty + - the specifier has both a constraint and extras -> result is split + in two requirement objects: one with the constraint and one with the + extra. This allows centralized constraint handling for the base, + resulting in fewer candidate rejections. + """ + ireq = self._make_install_req_from_spec(specifier, comes_from) + return self._make_requirements_from_install_req(ireq, requested_extras) + + def make_requires_python_requirement( + self, + specifier: SpecifierSet, + ) -> Optional[Requirement]: + if self._ignore_requires_python: + return None + # Don't bother creating a dependency for an empty Requires-Python. + if not str(specifier): + return None + return RequiresPythonRequirement(specifier, self._python_candidate) + + def get_wheel_cache_entry( + self, link: Link, name: Optional[str] + ) -> Optional[CacheEntry]: + """Look up the link in the wheel cache. + + If ``preparer.require_hashes`` is True, don't use the wheel cache, + because cached wheels, always built locally, have different hashes + than the files downloaded from the index server and thus throw false + hash mismatches. Furthermore, cached wheels at present have + nondeterministic contents due to file modification times. + """ + if self._wheel_cache is None: + return None + return self._wheel_cache.get_cache_entry( + link=link, + package_name=name, + supported_tags=get_supported(), + ) + + def get_dist_to_uninstall(self, candidate: Candidate) -> Optional[BaseDistribution]: + # TODO: Are there more cases this needs to return True? Editable? + dist = self._installed_dists.get(candidate.project_name) + if dist is None: # Not installed, no uninstallation required. + return None + + # We're installing into global site. The current installation must + # be uninstalled, no matter it's in global or user site, because the + # user site installation has precedence over global. + if not self._use_user_site: + return dist + + # We're installing into user site. Remove the user site installation. + if dist.in_usersite: + return dist + + # We're installing into user site, but the installed incompatible + # package is in global site. We can't uninstall that, and would let + # the new user installation to "shadow" it. But shadowing won't work + # in virtual environments, so we error out. + if running_under_virtualenv() and dist.in_site_packages: + message = ( + f"Will not install to the user site because it will lack " + f"sys.path precedence to {dist.raw_name} in {dist.location}" + ) + raise InstallationError(message) + return None + + def _report_requires_python_error( + self, causes: Sequence["ConflictCause"] + ) -> UnsupportedPythonVersion: + assert causes, "Requires-Python error reported with no cause" + + version = self._python_candidate.version + + if len(causes) == 1: + specifier = str(causes[0].requirement.specifier) + message = ( + f"Package {causes[0].parent.name!r} requires a different " + f"Python: {version} not in {specifier!r}" + ) + return UnsupportedPythonVersion(message) + + message = f"Packages require a different Python. {version} not in:" + for cause in causes: + package = cause.parent.format_for_error() + specifier = str(cause.requirement.specifier) + message += f"\n{specifier!r} (required by {package})" + return UnsupportedPythonVersion(message) + + def _report_single_requirement_conflict( + self, req: Requirement, parent: Optional[Candidate] + ) -> DistributionNotFound: + if parent is None: + req_disp = str(req) + else: + req_disp = f"{req} (from {parent.name})" + + cands = self._finder.find_all_candidates(req.project_name) + skipped_by_requires_python = self._finder.requires_python_skipped_reasons() + + versions_set: Set[CandidateVersion] = set() + yanked_versions_set: Set[CandidateVersion] = set() + for c in cands: + is_yanked = c.link.is_yanked if c.link else False + if is_yanked: + yanked_versions_set.add(c.version) + else: + versions_set.add(c.version) + + versions = [str(v) for v in sorted(versions_set)] + yanked_versions = [str(v) for v in sorted(yanked_versions_set)] + + if yanked_versions: + # Saying "version X is yanked" isn't entirely accurate. + # https://github.com/pypa/pip/issues/11745#issuecomment-1402805842 + logger.critical( + "Ignored the following yanked versions: %s", + ", ".join(yanked_versions) or "none", + ) + if skipped_by_requires_python: + logger.critical( + "Ignored the following versions that require a different python " + "version: %s", + "; ".join(skipped_by_requires_python) or "none", + ) + logger.critical( + "Could not find a version that satisfies the requirement %s " + "(from versions: %s)", + req_disp, + ", ".join(versions) or "none", + ) + if str(req) == "requirements.txt": + logger.info( + "HINT: You are attempting to install a package literally " + 'named "requirements.txt" (which cannot exist). Consider ' + "using the '-r' flag to install the packages listed in " + "requirements.txt" + ) + + return DistributionNotFound(f"No matching distribution found for {req}") + + def get_installation_error( + self, + e: "ResolutionImpossible[Requirement, Candidate]", + constraints: Dict[str, Constraint], + ) -> InstallationError: + assert e.causes, "Installation error reported with no cause" + + # If one of the things we can't solve is "we need Python X.Y", + # that is what we report. + requires_python_causes = [ + cause + for cause in e.causes + if isinstance(cause.requirement, RequiresPythonRequirement) + and not cause.requirement.is_satisfied_by(self._python_candidate) + ] + if requires_python_causes: + # The comprehension above makes sure all Requirement instances are + # RequiresPythonRequirement, so let's cast for convenience. + return self._report_requires_python_error( + cast("Sequence[ConflictCause]", requires_python_causes), + ) + + # Otherwise, we have a set of causes which can't all be satisfied + # at once. + + # The simplest case is when we have *one* cause that can't be + # satisfied. We just report that case. + if len(e.causes) == 1: + req, parent = e.causes[0] + if req.name not in constraints: + return self._report_single_requirement_conflict(req, parent) + + # OK, we now have a list of requirements that can't all be + # satisfied at once. + + # A couple of formatting helpers + def text_join(parts: List[str]) -> str: + if len(parts) == 1: + return parts[0] + + return ", ".join(parts[:-1]) + " and " + parts[-1] + + def describe_trigger(parent: Candidate) -> str: + ireq = parent.get_install_requirement() + if not ireq or not ireq.comes_from: + return f"{parent.name}=={parent.version}" + if isinstance(ireq.comes_from, InstallRequirement): + return str(ireq.comes_from.name) + return str(ireq.comes_from) + + triggers = set() + for req, parent in e.causes: + if parent is None: + # This is a root requirement, so we can report it directly + trigger = req.format_for_error() + else: + trigger = describe_trigger(parent) + triggers.add(trigger) + + if triggers: + info = text_join(sorted(triggers)) + else: + info = "the requested packages" + + msg = ( + f"Cannot install {info} because these package versions " + "have conflicting dependencies." + ) + logger.critical(msg) + msg = "\nThe conflict is caused by:" + + relevant_constraints = set() + for req, parent in e.causes: + if req.name in constraints: + relevant_constraints.add(req.name) + msg = msg + "\n " + if parent: + msg = msg + f"{parent.name} {parent.version} depends on " + else: + msg = msg + "The user requested " + msg = msg + req.format_for_error() + for key in relevant_constraints: + spec = constraints[key].specifier + msg += f"\n The user requested (constraint) {key}{spec}" + + msg = ( + msg + + "\n\n" + + "To fix this you could try to:\n" + + "1. loosen the range of package versions you've specified\n" + + "2. remove package versions to allow pip attempt to solve " + + "the dependency conflict\n" + ) + + logger.info(msg) + + return DistributionNotFound( + "ResolutionImpossible: for help visit " + "https://pip.pypa.io/en/latest/topics/dependency-resolution/" + "#dealing-with-dependency-conflicts" + ) diff --git a/venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/found_candidates.py b/venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/found_candidates.py new file mode 100644 index 0000000..8663097 --- /dev/null +++ b/venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/found_candidates.py @@ -0,0 +1,155 @@ +"""Utilities to lazily create and visit candidates found. + +Creating and visiting a candidate is a *very* costly operation. It involves +fetching, extracting, potentially building modules from source, and verifying +distribution metadata. It is therefore crucial for performance to keep +everything here lazy all the way down, so we only touch candidates that we +absolutely need, and not "download the world" when we only need one version of +something. +""" + +import functools +from collections.abc import Sequence +from typing import TYPE_CHECKING, Any, Callable, Iterator, Optional, Set, Tuple + +from pip._vendor.packaging.version import _BaseVersion + +from .base import Candidate + +IndexCandidateInfo = Tuple[_BaseVersion, Callable[[], Optional[Candidate]]] + +if TYPE_CHECKING: + SequenceCandidate = Sequence[Candidate] +else: + # For compatibility: Python before 3.9 does not support using [] on the + # Sequence class. + # + # >>> from collections.abc import Sequence + # >>> Sequence[str] + # Traceback (most recent call last): + # File "", line 1, in + # TypeError: 'ABCMeta' object is not subscriptable + # + # TODO: Remove this block after dropping Python 3.8 support. + SequenceCandidate = Sequence + + +def _iter_built(infos: Iterator[IndexCandidateInfo]) -> Iterator[Candidate]: + """Iterator for ``FoundCandidates``. + + This iterator is used when the package is not already installed. Candidates + from index come later in their normal ordering. + """ + versions_found: Set[_BaseVersion] = set() + for version, func in infos: + if version in versions_found: + continue + candidate = func() + if candidate is None: + continue + yield candidate + versions_found.add(version) + + +def _iter_built_with_prepended( + installed: Candidate, infos: Iterator[IndexCandidateInfo] +) -> Iterator[Candidate]: + """Iterator for ``FoundCandidates``. + + This iterator is used when the resolver prefers the already-installed + candidate and NOT to upgrade. The installed candidate is therefore + always yielded first, and candidates from index come later in their + normal ordering, except skipped when the version is already installed. + """ + yield installed + versions_found: Set[_BaseVersion] = {installed.version} + for version, func in infos: + if version in versions_found: + continue + candidate = func() + if candidate is None: + continue + yield candidate + versions_found.add(version) + + +def _iter_built_with_inserted( + installed: Candidate, infos: Iterator[IndexCandidateInfo] +) -> Iterator[Candidate]: + """Iterator for ``FoundCandidates``. + + This iterator is used when the resolver prefers to upgrade an + already-installed package. Candidates from index are returned in their + normal ordering, except replaced when the version is already installed. + + The implementation iterates through and yields other candidates, inserting + the installed candidate exactly once before we start yielding older or + equivalent candidates, or after all other candidates if they are all newer. + """ + versions_found: Set[_BaseVersion] = set() + for version, func in infos: + if version in versions_found: + continue + # If the installed candidate is better, yield it first. + if installed.version >= version: + yield installed + versions_found.add(installed.version) + candidate = func() + if candidate is None: + continue + yield candidate + versions_found.add(version) + + # If the installed candidate is older than all other candidates. + if installed.version not in versions_found: + yield installed + + +class FoundCandidates(SequenceCandidate): + """A lazy sequence to provide candidates to the resolver. + + The intended usage is to return this from `find_matches()` so the resolver + can iterate through the sequence multiple times, but only access the index + page when remote packages are actually needed. This improve performances + when suitable candidates are already installed on disk. + """ + + def __init__( + self, + get_infos: Callable[[], Iterator[IndexCandidateInfo]], + installed: Optional[Candidate], + prefers_installed: bool, + incompatible_ids: Set[int], + ): + self._get_infos = get_infos + self._installed = installed + self._prefers_installed = prefers_installed + self._incompatible_ids = incompatible_ids + + def __getitem__(self, index: Any) -> Any: + # Implemented to satisfy the ABC check. This is not needed by the + # resolver, and should not be used by the provider either (for + # performance reasons). + raise NotImplementedError("don't do this") + + def __iter__(self) -> Iterator[Candidate]: + infos = self._get_infos() + if not self._installed: + iterator = _iter_built(infos) + elif self._prefers_installed: + iterator = _iter_built_with_prepended(self._installed, infos) + else: + iterator = _iter_built_with_inserted(self._installed, infos) + return (c for c in iterator if id(c) not in self._incompatible_ids) + + def __len__(self) -> int: + # Implemented to satisfy the ABC check. This is not needed by the + # resolver, and should not be used by the provider either (for + # performance reasons). + raise NotImplementedError("don't do this") + + @functools.lru_cache(maxsize=1) + def __bool__(self) -> bool: + if self._prefers_installed and self._installed: + return True + return any(self) diff --git a/venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/provider.py b/venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/provider.py new file mode 100644 index 0000000..315fb9c --- /dev/null +++ b/venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/provider.py @@ -0,0 +1,255 @@ +import collections +import math +from typing import ( + TYPE_CHECKING, + Dict, + Iterable, + Iterator, + Mapping, + Sequence, + TypeVar, + Union, +) + +from pip._vendor.resolvelib.providers import AbstractProvider + +from .base import Candidate, Constraint, Requirement +from .candidates import REQUIRES_PYTHON_IDENTIFIER +from .factory import Factory + +if TYPE_CHECKING: + from pip._vendor.resolvelib.providers import Preference + from pip._vendor.resolvelib.resolvers import RequirementInformation + + PreferenceInformation = RequirementInformation[Requirement, Candidate] + + _ProviderBase = AbstractProvider[Requirement, Candidate, str] +else: + _ProviderBase = AbstractProvider + +# Notes on the relationship between the provider, the factory, and the +# candidate and requirement classes. +# +# The provider is a direct implementation of the resolvelib class. Its role +# is to deliver the API that resolvelib expects. +# +# Rather than work with completely abstract "requirement" and "candidate" +# concepts as resolvelib does, pip has concrete classes implementing these two +# ideas. The API of Requirement and Candidate objects are defined in the base +# classes, but essentially map fairly directly to the equivalent provider +# methods. In particular, `find_matches` and `is_satisfied_by` are +# requirement methods, and `get_dependencies` is a candidate method. +# +# The factory is the interface to pip's internal mechanisms. It is stateless, +# and is created by the resolver and held as a property of the provider. It is +# responsible for creating Requirement and Candidate objects, and provides +# services to those objects (access to pip's finder and preparer). + + +D = TypeVar("D") +V = TypeVar("V") + + +def _get_with_identifier( + mapping: Mapping[str, V], + identifier: str, + default: D, +) -> Union[D, V]: + """Get item from a package name lookup mapping with a resolver identifier. + + This extra logic is needed when the target mapping is keyed by package + name, which cannot be directly looked up with an identifier (which may + contain requested extras). Additional logic is added to also look up a value + by "cleaning up" the extras from the identifier. + """ + if identifier in mapping: + return mapping[identifier] + # HACK: Theoretically we should check whether this identifier is a valid + # "NAME[EXTRAS]" format, and parse out the name part with packaging or + # some regular expression. But since pip's resolver only spits out three + # kinds of identifiers: normalized PEP 503 names, normalized names plus + # extras, and Requires-Python, we can cheat a bit here. + name, open_bracket, _ = identifier.partition("[") + if open_bracket and name in mapping: + return mapping[name] + return default + + +class PipProvider(_ProviderBase): + """Pip's provider implementation for resolvelib. + + :params constraints: A mapping of constraints specified by the user. Keys + are canonicalized project names. + :params ignore_dependencies: Whether the user specified ``--no-deps``. + :params upgrade_strategy: The user-specified upgrade strategy. + :params user_requested: A set of canonicalized package names that the user + supplied for pip to install/upgrade. + """ + + def __init__( + self, + factory: Factory, + constraints: Dict[str, Constraint], + ignore_dependencies: bool, + upgrade_strategy: str, + user_requested: Dict[str, int], + ) -> None: + self._factory = factory + self._constraints = constraints + self._ignore_dependencies = ignore_dependencies + self._upgrade_strategy = upgrade_strategy + self._user_requested = user_requested + self._known_depths: Dict[str, float] = collections.defaultdict(lambda: math.inf) + + def identify(self, requirement_or_candidate: Union[Requirement, Candidate]) -> str: + return requirement_or_candidate.name + + def get_preference( + self, + identifier: str, + resolutions: Mapping[str, Candidate], + candidates: Mapping[str, Iterator[Candidate]], + information: Mapping[str, Iterable["PreferenceInformation"]], + backtrack_causes: Sequence["PreferenceInformation"], + ) -> "Preference": + """Produce a sort key for given requirement based on preference. + + The lower the return value is, the more preferred this group of + arguments is. + + Currently pip considers the following in order: + + * Prefer if any of the known requirements is "direct", e.g. points to an + explicit URL. + * If equal, prefer if any requirement is "pinned", i.e. contains + operator ``===`` or ``==``. + * If equal, calculate an approximate "depth" and resolve requirements + closer to the user-specified requirements first. If the depth cannot + by determined (eg: due to no matching parents), it is considered + infinite. + * Order user-specified requirements by the order they are specified. + * If equal, prefers "non-free" requirements, i.e. contains at least one + operator, such as ``>=`` or ``<``. + * If equal, order alphabetically for consistency (helps debuggability). + """ + try: + next(iter(information[identifier])) + except StopIteration: + # There is no information for this identifier, so there's no known + # candidates. + has_information = False + else: + has_information = True + + if has_information: + lookups = (r.get_candidate_lookup() for r, _ in information[identifier]) + candidate, ireqs = zip(*lookups) + else: + candidate, ireqs = None, () + + operators = [ + specifier.operator + for specifier_set in (ireq.specifier for ireq in ireqs if ireq) + for specifier in specifier_set + ] + + direct = candidate is not None + pinned = any(op[:2] == "==" for op in operators) + unfree = bool(operators) + + try: + requested_order: Union[int, float] = self._user_requested[identifier] + except KeyError: + requested_order = math.inf + if has_information: + parent_depths = ( + self._known_depths[parent.name] if parent is not None else 0.0 + for _, parent in information[identifier] + ) + inferred_depth = min(d for d in parent_depths) + 1.0 + else: + inferred_depth = math.inf + else: + inferred_depth = 1.0 + self._known_depths[identifier] = inferred_depth + + requested_order = self._user_requested.get(identifier, math.inf) + + # Requires-Python has only one candidate and the check is basically + # free, so we always do it first to avoid needless work if it fails. + requires_python = identifier == REQUIRES_PYTHON_IDENTIFIER + + # Prefer the causes of backtracking on the assumption that the problem + # resolving the dependency tree is related to the failures that caused + # the backtracking + backtrack_cause = self.is_backtrack_cause(identifier, backtrack_causes) + + return ( + not requires_python, + not direct, + not pinned, + not backtrack_cause, + inferred_depth, + requested_order, + not unfree, + identifier, + ) + + def find_matches( + self, + identifier: str, + requirements: Mapping[str, Iterator[Requirement]], + incompatibilities: Mapping[str, Iterator[Candidate]], + ) -> Iterable[Candidate]: + def _eligible_for_upgrade(identifier: str) -> bool: + """Are upgrades allowed for this project? + + This checks the upgrade strategy, and whether the project was one + that the user specified in the command line, in order to decide + whether we should upgrade if there's a newer version available. + + (Note that we don't need access to the `--upgrade` flag, because + an upgrade strategy of "to-satisfy-only" means that `--upgrade` + was not specified). + """ + if self._upgrade_strategy == "eager": + return True + elif self._upgrade_strategy == "only-if-needed": + user_order = _get_with_identifier( + self._user_requested, + identifier, + default=None, + ) + return user_order is not None + return False + + constraint = _get_with_identifier( + self._constraints, + identifier, + default=Constraint.empty(), + ) + return self._factory.find_candidates( + identifier=identifier, + requirements=requirements, + constraint=constraint, + prefers_installed=(not _eligible_for_upgrade(identifier)), + incompatibilities=incompatibilities, + ) + + def is_satisfied_by(self, requirement: Requirement, candidate: Candidate) -> bool: + return requirement.is_satisfied_by(candidate) + + def get_dependencies(self, candidate: Candidate) -> Sequence[Requirement]: + with_requires = not self._ignore_dependencies + return [r for r in candidate.iter_dependencies(with_requires) if r is not None] + + @staticmethod + def is_backtrack_cause( + identifier: str, backtrack_causes: Sequence["PreferenceInformation"] + ) -> bool: + for backtrack_cause in backtrack_causes: + if identifier == backtrack_cause.requirement.name: + return True + if backtrack_cause.parent and identifier == backtrack_cause.parent.name: + return True + return False diff --git a/venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/reporter.py b/venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/reporter.py new file mode 100644 index 0000000..12adeff --- /dev/null +++ b/venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/reporter.py @@ -0,0 +1,80 @@ +from collections import defaultdict +from logging import getLogger +from typing import Any, DefaultDict + +from pip._vendor.resolvelib.reporters import BaseReporter + +from .base import Candidate, Requirement + +logger = getLogger(__name__) + + +class PipReporter(BaseReporter): + def __init__(self) -> None: + self.reject_count_by_package: DefaultDict[str, int] = defaultdict(int) + + self._messages_at_reject_count = { + 1: ( + "pip is looking at multiple versions of {package_name} to " + "determine which version is compatible with other " + "requirements. This could take a while." + ), + 8: ( + "pip is still looking at multiple versions of {package_name} to " + "determine which version is compatible with other " + "requirements. This could take a while." + ), + 13: ( + "This is taking longer than usual. You might need to provide " + "the dependency resolver with stricter constraints to reduce " + "runtime. See https://pip.pypa.io/warnings/backtracking for " + "guidance. If you want to abort this run, press Ctrl + C." + ), + } + + def rejecting_candidate(self, criterion: Any, candidate: Candidate) -> None: + self.reject_count_by_package[candidate.name] += 1 + + count = self.reject_count_by_package[candidate.name] + if count not in self._messages_at_reject_count: + return + + message = self._messages_at_reject_count[count] + logger.info("INFO: %s", message.format(package_name=candidate.name)) + + msg = "Will try a different candidate, due to conflict:" + for req_info in criterion.information: + req, parent = req_info.requirement, req_info.parent + # Inspired by Factory.get_installation_error + msg += "\n " + if parent: + msg += f"{parent.name} {parent.version} depends on " + else: + msg += "The user requested " + msg += req.format_for_error() + logger.debug(msg) + + +class PipDebuggingReporter(BaseReporter): + """A reporter that does an info log for every event it sees.""" + + def starting(self) -> None: + logger.info("Reporter.starting()") + + def starting_round(self, index: int) -> None: + logger.info("Reporter.starting_round(%r)", index) + + def ending_round(self, index: int, state: Any) -> None: + logger.info("Reporter.ending_round(%r, state)", index) + + def ending(self, state: Any) -> None: + logger.info("Reporter.ending(%r)", state) + + def adding_requirement(self, requirement: Requirement, parent: Candidate) -> None: + logger.info("Reporter.adding_requirement(%r, %r)", requirement, parent) + + def rejecting_candidate(self, criterion: Any, candidate: Candidate) -> None: + logger.info("Reporter.rejecting_candidate(%r, %r)", criterion, candidate) + + def pinning(self, candidate: Candidate) -> None: + logger.info("Reporter.pinning(%r)", candidate) diff --git a/venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/requirements.py b/venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/requirements.py new file mode 100644 index 0000000..4af4a9f --- /dev/null +++ b/venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/requirements.py @@ -0,0 +1,166 @@ +from pip._vendor.packaging.specifiers import SpecifierSet +from pip._vendor.packaging.utils import NormalizedName, canonicalize_name + +from pip._internal.req.constructors import install_req_drop_extras +from pip._internal.req.req_install import InstallRequirement + +from .base import Candidate, CandidateLookup, Requirement, format_name + + +class ExplicitRequirement(Requirement): + def __init__(self, candidate: Candidate) -> None: + self.candidate = candidate + + def __str__(self) -> str: + return str(self.candidate) + + def __repr__(self) -> str: + return f"{self.__class__.__name__}({self.candidate!r})" + + @property + def project_name(self) -> NormalizedName: + # No need to canonicalize - the candidate did this + return self.candidate.project_name + + @property + def name(self) -> str: + # No need to canonicalize - the candidate did this + return self.candidate.name + + def format_for_error(self) -> str: + return self.candidate.format_for_error() + + def get_candidate_lookup(self) -> CandidateLookup: + return self.candidate, None + + def is_satisfied_by(self, candidate: Candidate) -> bool: + return candidate == self.candidate + + +class SpecifierRequirement(Requirement): + def __init__(self, ireq: InstallRequirement) -> None: + assert ireq.link is None, "This is a link, not a specifier" + self._ireq = ireq + self._extras = frozenset(canonicalize_name(e) for e in self._ireq.extras) + + def __str__(self) -> str: + return str(self._ireq.req) + + def __repr__(self) -> str: + return f"{self.__class__.__name__}({str(self._ireq.req)!r})" + + @property + def project_name(self) -> NormalizedName: + assert self._ireq.req, "Specifier-backed ireq is always PEP 508" + return canonicalize_name(self._ireq.req.name) + + @property + def name(self) -> str: + return format_name(self.project_name, self._extras) + + def format_for_error(self) -> str: + # Convert comma-separated specifiers into "A, B, ..., F and G" + # This makes the specifier a bit more "human readable", without + # risking a change in meaning. (Hopefully! Not all edge cases have + # been checked) + parts = [s.strip() for s in str(self).split(",")] + if len(parts) == 0: + return "" + elif len(parts) == 1: + return parts[0] + + return ", ".join(parts[:-1]) + " and " + parts[-1] + + def get_candidate_lookup(self) -> CandidateLookup: + return None, self._ireq + + def is_satisfied_by(self, candidate: Candidate) -> bool: + assert candidate.name == self.name, ( + f"Internal issue: Candidate is not for this requirement " + f"{candidate.name} vs {self.name}" + ) + # We can safely always allow prereleases here since PackageFinder + # already implements the prerelease logic, and would have filtered out + # prerelease candidates if the user does not expect them. + assert self._ireq.req, "Specifier-backed ireq is always PEP 508" + spec = self._ireq.req.specifier + return spec.contains(candidate.version, prereleases=True) + + +class SpecifierWithoutExtrasRequirement(SpecifierRequirement): + """ + Requirement backed by an install requirement on a base package. + Trims extras from its install requirement if there are any. + """ + + def __init__(self, ireq: InstallRequirement) -> None: + assert ireq.link is None, "This is a link, not a specifier" + self._ireq = install_req_drop_extras(ireq) + self._extras = frozenset(canonicalize_name(e) for e in self._ireq.extras) + + +class RequiresPythonRequirement(Requirement): + """A requirement representing Requires-Python metadata.""" + + def __init__(self, specifier: SpecifierSet, match: Candidate) -> None: + self.specifier = specifier + self._candidate = match + + def __str__(self) -> str: + return f"Python {self.specifier}" + + def __repr__(self) -> str: + return f"{self.__class__.__name__}({str(self.specifier)!r})" + + @property + def project_name(self) -> NormalizedName: + return self._candidate.project_name + + @property + def name(self) -> str: + return self._candidate.name + + def format_for_error(self) -> str: + return str(self) + + def get_candidate_lookup(self) -> CandidateLookup: + if self.specifier.contains(self._candidate.version, prereleases=True): + return self._candidate, None + return None, None + + def is_satisfied_by(self, candidate: Candidate) -> bool: + assert candidate.name == self._candidate.name, "Not Python candidate" + # We can safely always allow prereleases here since PackageFinder + # already implements the prerelease logic, and would have filtered out + # prerelease candidates if the user does not expect them. + return self.specifier.contains(candidate.version, prereleases=True) + + +class UnsatisfiableRequirement(Requirement): + """A requirement that cannot be satisfied.""" + + def __init__(self, name: NormalizedName) -> None: + self._name = name + + def __str__(self) -> str: + return f"{self._name} (unavailable)" + + def __repr__(self) -> str: + return f"{self.__class__.__name__}({str(self._name)!r})" + + @property + def project_name(self) -> NormalizedName: + return self._name + + @property + def name(self) -> str: + return self._name + + def format_for_error(self) -> str: + return str(self) + + def get_candidate_lookup(self) -> CandidateLookup: + return None, None + + def is_satisfied_by(self, candidate: Candidate) -> bool: + return False diff --git a/venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/resolver.py b/venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/resolver.py new file mode 100644 index 0000000..c12beef --- /dev/null +++ b/venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/resolver.py @@ -0,0 +1,317 @@ +import contextlib +import functools +import logging +import os +from typing import TYPE_CHECKING, Dict, List, Optional, Set, Tuple, cast + +from pip._vendor.packaging.utils import canonicalize_name +from pip._vendor.resolvelib import BaseReporter, ResolutionImpossible +from pip._vendor.resolvelib import Resolver as RLResolver +from pip._vendor.resolvelib.structs import DirectedGraph + +from pip._internal.cache import WheelCache +from pip._internal.index.package_finder import PackageFinder +from pip._internal.operations.prepare import RequirementPreparer +from pip._internal.req.constructors import install_req_extend_extras +from pip._internal.req.req_install import InstallRequirement +from pip._internal.req.req_set import RequirementSet +from pip._internal.resolution.base import BaseResolver, InstallRequirementProvider +from pip._internal.resolution.resolvelib.provider import PipProvider +from pip._internal.resolution.resolvelib.reporter import ( + PipDebuggingReporter, + PipReporter, +) +from pip._internal.utils.packaging import get_requirement + +from .base import Candidate, Requirement +from .factory import Factory + +if TYPE_CHECKING: + from pip._vendor.resolvelib.resolvers import Result as RLResult + + Result = RLResult[Requirement, Candidate, str] + + +logger = logging.getLogger(__name__) + + +class Resolver(BaseResolver): + _allowed_strategies = {"eager", "only-if-needed", "to-satisfy-only"} + + def __init__( + self, + preparer: RequirementPreparer, + finder: PackageFinder, + wheel_cache: Optional[WheelCache], + make_install_req: InstallRequirementProvider, + use_user_site: bool, + ignore_dependencies: bool, + ignore_installed: bool, + ignore_requires_python: bool, + force_reinstall: bool, + upgrade_strategy: str, + py_version_info: Optional[Tuple[int, ...]] = None, + ): + super().__init__() + assert upgrade_strategy in self._allowed_strategies + + self.factory = Factory( + finder=finder, + preparer=preparer, + make_install_req=make_install_req, + wheel_cache=wheel_cache, + use_user_site=use_user_site, + force_reinstall=force_reinstall, + ignore_installed=ignore_installed, + ignore_requires_python=ignore_requires_python, + py_version_info=py_version_info, + ) + self.ignore_dependencies = ignore_dependencies + self.upgrade_strategy = upgrade_strategy + self._result: Optional[Result] = None + + def resolve( + self, root_reqs: List[InstallRequirement], check_supported_wheels: bool + ) -> RequirementSet: + collected = self.factory.collect_root_requirements(root_reqs) + provider = PipProvider( + factory=self.factory, + constraints=collected.constraints, + ignore_dependencies=self.ignore_dependencies, + upgrade_strategy=self.upgrade_strategy, + user_requested=collected.user_requested, + ) + if "PIP_RESOLVER_DEBUG" in os.environ: + reporter: BaseReporter = PipDebuggingReporter() + else: + reporter = PipReporter() + resolver: RLResolver[Requirement, Candidate, str] = RLResolver( + provider, + reporter, + ) + + try: + limit_how_complex_resolution_can_be = 200000 + result = self._result = resolver.resolve( + collected.requirements, max_rounds=limit_how_complex_resolution_can_be + ) + + except ResolutionImpossible as e: + error = self.factory.get_installation_error( + cast("ResolutionImpossible[Requirement, Candidate]", e), + collected.constraints, + ) + raise error from e + + req_set = RequirementSet(check_supported_wheels=check_supported_wheels) + # process candidates with extras last to ensure their base equivalent is + # already in the req_set if appropriate. + # Python's sort is stable so using a binary key function keeps relative order + # within both subsets. + for candidate in sorted( + result.mapping.values(), key=lambda c: c.name != c.project_name + ): + ireq = candidate.get_install_requirement() + if ireq is None: + if candidate.name != candidate.project_name: + # extend existing req's extras + with contextlib.suppress(KeyError): + req = req_set.get_requirement(candidate.project_name) + req_set.add_named_requirement( + install_req_extend_extras( + req, get_requirement(candidate.name).extras + ) + ) + continue + + # Check if there is already an installation under the same name, + # and set a flag for later stages to uninstall it, if needed. + installed_dist = self.factory.get_dist_to_uninstall(candidate) + if installed_dist is None: + # There is no existing installation -- nothing to uninstall. + ireq.should_reinstall = False + elif self.factory.force_reinstall: + # The --force-reinstall flag is set -- reinstall. + ireq.should_reinstall = True + elif installed_dist.version != candidate.version: + # The installation is different in version -- reinstall. + ireq.should_reinstall = True + elif candidate.is_editable or installed_dist.editable: + # The incoming distribution is editable, or different in + # editable-ness to installation -- reinstall. + ireq.should_reinstall = True + elif candidate.source_link and candidate.source_link.is_file: + # The incoming distribution is under file:// + if candidate.source_link.is_wheel: + # is a local wheel -- do nothing. + logger.info( + "%s is already installed with the same version as the " + "provided wheel. Use --force-reinstall to force an " + "installation of the wheel.", + ireq.name, + ) + continue + + # is a local sdist or path -- reinstall + ireq.should_reinstall = True + else: + continue + + link = candidate.source_link + if link and link.is_yanked: + # The reason can contain non-ASCII characters, Unicode + # is required for Python 2. + msg = ( + "The candidate selected for download or install is a " + "yanked version: {name!r} candidate (version {version} " + "at {link})\nReason for being yanked: {reason}" + ).format( + name=candidate.name, + version=candidate.version, + link=link, + reason=link.yanked_reason or "", + ) + logger.warning(msg) + + req_set.add_named_requirement(ireq) + + reqs = req_set.all_requirements + self.factory.preparer.prepare_linked_requirements_more(reqs) + for req in reqs: + req.prepared = True + req.needs_more_preparation = False + return req_set + + def get_installation_order( + self, req_set: RequirementSet + ) -> List[InstallRequirement]: + """Get order for installation of requirements in RequirementSet. + + The returned list contains a requirement before another that depends on + it. This helps ensure that the environment is kept consistent as they + get installed one-by-one. + + The current implementation creates a topological ordering of the + dependency graph, giving more weight to packages with less + or no dependencies, while breaking any cycles in the graph at + arbitrary points. We make no guarantees about where the cycle + would be broken, other than it *would* be broken. + """ + assert self._result is not None, "must call resolve() first" + + if not req_set.requirements: + # Nothing is left to install, so we do not need an order. + return [] + + graph = self._result.graph + weights = get_topological_weights(graph, set(req_set.requirements.keys())) + + sorted_items = sorted( + req_set.requirements.items(), + key=functools.partial(_req_set_item_sorter, weights=weights), + reverse=True, + ) + return [ireq for _, ireq in sorted_items] + + +def get_topological_weights( + graph: "DirectedGraph[Optional[str]]", requirement_keys: Set[str] +) -> Dict[Optional[str], int]: + """Assign weights to each node based on how "deep" they are. + + This implementation may change at any point in the future without prior + notice. + + We first simplify the dependency graph by pruning any leaves and giving them + the highest weight: a package without any dependencies should be installed + first. This is done again and again in the same way, giving ever less weight + to the newly found leaves. The loop stops when no leaves are left: all + remaining packages have at least one dependency left in the graph. + + Then we continue with the remaining graph, by taking the length for the + longest path to any node from root, ignoring any paths that contain a single + node twice (i.e. cycles). This is done through a depth-first search through + the graph, while keeping track of the path to the node. + + Cycles in the graph result would result in node being revisited while also + being on its own path. In this case, take no action. This helps ensure we + don't get stuck in a cycle. + + When assigning weight, the longer path (i.e. larger length) is preferred. + + We are only interested in the weights of packages that are in the + requirement_keys. + """ + path: Set[Optional[str]] = set() + weights: Dict[Optional[str], int] = {} + + def visit(node: Optional[str]) -> None: + if node in path: + # We hit a cycle, so we'll break it here. + return + + # Time to visit the children! + path.add(node) + for child in graph.iter_children(node): + visit(child) + path.remove(node) + + if node not in requirement_keys: + return + + last_known_parent_count = weights.get(node, 0) + weights[node] = max(last_known_parent_count, len(path)) + + # Simplify the graph, pruning leaves that have no dependencies. + # This is needed for large graphs (say over 200 packages) because the + # `visit` function is exponentially slower then, taking minutes. + # See https://github.com/pypa/pip/issues/10557 + # We will loop until we explicitly break the loop. + while True: + leaves = set() + for key in graph: + if key is None: + continue + for _child in graph.iter_children(key): + # This means we have at least one child + break + else: + # No child. + leaves.add(key) + if not leaves: + # We are done simplifying. + break + # Calculate the weight for the leaves. + weight = len(graph) - 1 + for leaf in leaves: + if leaf not in requirement_keys: + continue + weights[leaf] = weight + # Remove the leaves from the graph, making it simpler. + for leaf in leaves: + graph.remove(leaf) + + # Visit the remaining graph. + # `None` is guaranteed to be the root node by resolvelib. + visit(None) + + # Sanity check: all requirement keys should be in the weights, + # and no other keys should be in the weights. + difference = set(weights.keys()).difference(requirement_keys) + assert not difference, difference + + return weights + + +def _req_set_item_sorter( + item: Tuple[str, InstallRequirement], + weights: Dict[Optional[str], int], +) -> Tuple[int, str]: + """Key function used to sort install requirements for installation. + + Based on the "weight" mapping calculated in ``get_installation_order()``. + The canonical package name is returned as the second member as a tie- + breaker to ensure the result is predictable, which is useful in tests. + """ + name = canonicalize_name(item[0]) + return weights[name], name diff --git a/venv/lib/python3.12/site-packages/pip/_internal/self_outdated_check.py b/venv/lib/python3.12/site-packages/pip/_internal/self_outdated_check.py new file mode 100644 index 0000000..0f64ae0 --- /dev/null +++ b/venv/lib/python3.12/site-packages/pip/_internal/self_outdated_check.py @@ -0,0 +1,248 @@ +import datetime +import functools +import hashlib +import json +import logging +import optparse +import os.path +import sys +from dataclasses import dataclass +from typing import Any, Callable, Dict, Optional + +from pip._vendor.packaging.version import parse as parse_version +from pip._vendor.rich.console import Group +from pip._vendor.rich.markup import escape +from pip._vendor.rich.text import Text + +from pip._internal.index.collector import LinkCollector +from pip._internal.index.package_finder import PackageFinder +from pip._internal.metadata import get_default_environment +from pip._internal.metadata.base import DistributionVersion +from pip._internal.models.selection_prefs import SelectionPreferences +from pip._internal.network.session import PipSession +from pip._internal.utils.compat import WINDOWS +from pip._internal.utils.entrypoints import ( + get_best_invocation_for_this_pip, + get_best_invocation_for_this_python, +) +from pip._internal.utils.filesystem import adjacent_tmp_file, check_path_owner, replace +from pip._internal.utils.misc import ensure_dir + +_WEEK = datetime.timedelta(days=7) + +logger = logging.getLogger(__name__) + + +def _get_statefile_name(key: str) -> str: + key_bytes = key.encode() + name = hashlib.sha224(key_bytes).hexdigest() + return name + + +def _convert_date(isodate: str) -> datetime.datetime: + """Convert an ISO format string to a date. + + Handles the format 2020-01-22T14:24:01Z (trailing Z) + which is not supported by older versions of fromisoformat. + """ + return datetime.datetime.fromisoformat(isodate.replace("Z", "+00:00")) + + +class SelfCheckState: + def __init__(self, cache_dir: str) -> None: + self._state: Dict[str, Any] = {} + self._statefile_path = None + + # Try to load the existing state + if cache_dir: + self._statefile_path = os.path.join( + cache_dir, "selfcheck", _get_statefile_name(self.key) + ) + try: + with open(self._statefile_path, encoding="utf-8") as statefile: + self._state = json.load(statefile) + except (OSError, ValueError, KeyError): + # Explicitly suppressing exceptions, since we don't want to + # error out if the cache file is invalid. + pass + + @property + def key(self) -> str: + return sys.prefix + + def get(self, current_time: datetime.datetime) -> Optional[str]: + """Check if we have a not-outdated version loaded already.""" + if not self._state: + return None + + if "last_check" not in self._state: + return None + + if "pypi_version" not in self._state: + return None + + # Determine if we need to refresh the state + last_check = _convert_date(self._state["last_check"]) + time_since_last_check = current_time - last_check + if time_since_last_check > _WEEK: + return None + + return self._state["pypi_version"] + + def set(self, pypi_version: str, current_time: datetime.datetime) -> None: + # If we do not have a path to cache in, don't bother saving. + if not self._statefile_path: + return + + # Check to make sure that we own the directory + if not check_path_owner(os.path.dirname(self._statefile_path)): + return + + # Now that we've ensured the directory is owned by this user, we'll go + # ahead and make sure that all our directories are created. + ensure_dir(os.path.dirname(self._statefile_path)) + + state = { + # Include the key so it's easy to tell which pip wrote the + # file. + "key": self.key, + "last_check": current_time.isoformat(), + "pypi_version": pypi_version, + } + + text = json.dumps(state, sort_keys=True, separators=(",", ":")) + + with adjacent_tmp_file(self._statefile_path) as f: + f.write(text.encode()) + + try: + # Since we have a prefix-specific state file, we can just + # overwrite whatever is there, no need to check. + replace(f.name, self._statefile_path) + except OSError: + # Best effort. + pass + + +@dataclass +class UpgradePrompt: + old: str + new: str + + def __rich__(self) -> Group: + if WINDOWS: + pip_cmd = f"{get_best_invocation_for_this_python()} -m pip" + else: + pip_cmd = get_best_invocation_for_this_pip() + + notice = "[bold][[reset][blue]notice[reset][bold]][reset]" + return Group( + Text(), + Text.from_markup( + f"{notice} A new release of pip is available: " + f"[red]{self.old}[reset] -> [green]{self.new}[reset]" + ), + Text.from_markup( + f"{notice} To update, run: " + f"[green]{escape(pip_cmd)} install --upgrade pip" + ), + ) + + +def was_installed_by_pip(pkg: str) -> bool: + """Checks whether pkg was installed by pip + + This is used not to display the upgrade message when pip is in fact + installed by system package manager, such as dnf on Fedora. + """ + dist = get_default_environment().get_distribution(pkg) + return dist is not None and "pip" == dist.installer + + +def _get_current_remote_pip_version( + session: PipSession, options: optparse.Values +) -> Optional[str]: + # Lets use PackageFinder to see what the latest pip version is + link_collector = LinkCollector.create( + session, + options=options, + suppress_no_index=True, + ) + + # Pass allow_yanked=False so we don't suggest upgrading to a + # yanked version. + selection_prefs = SelectionPreferences( + allow_yanked=False, + allow_all_prereleases=False, # Explicitly set to False + ) + + finder = PackageFinder.create( + link_collector=link_collector, + selection_prefs=selection_prefs, + ) + best_candidate = finder.find_best_candidate("pip").best_candidate + if best_candidate is None: + return None + + return str(best_candidate.version) + + +def _self_version_check_logic( + *, + state: SelfCheckState, + current_time: datetime.datetime, + local_version: DistributionVersion, + get_remote_version: Callable[[], Optional[str]], +) -> Optional[UpgradePrompt]: + remote_version_str = state.get(current_time) + if remote_version_str is None: + remote_version_str = get_remote_version() + if remote_version_str is None: + logger.debug("No remote pip version found") + return None + state.set(remote_version_str, current_time) + + remote_version = parse_version(remote_version_str) + logger.debug("Remote version of pip: %s", remote_version) + logger.debug("Local version of pip: %s", local_version) + + pip_installed_by_pip = was_installed_by_pip("pip") + logger.debug("Was pip installed by pip? %s", pip_installed_by_pip) + if not pip_installed_by_pip: + return None # Only suggest upgrade if pip is installed by pip. + + local_version_is_older = ( + local_version < remote_version + and local_version.base_version != remote_version.base_version + ) + if local_version_is_older: + return UpgradePrompt(old=str(local_version), new=remote_version_str) + + return None + + +def pip_self_version_check(session: PipSession, options: optparse.Values) -> None: + """Check for an update for pip. + + Limit the frequency of checks to once per week. State is stored either in + the active virtualenv or in the user's USER_CACHE_DIR keyed off the prefix + of the pip script path. + """ + installed_dist = get_default_environment().get_distribution("pip") + if not installed_dist: + return + + try: + upgrade_prompt = _self_version_check_logic( + state=SelfCheckState(cache_dir=options.cache_dir), + current_time=datetime.datetime.now(datetime.timezone.utc), + local_version=installed_dist.version, + get_remote_version=functools.partial( + _get_current_remote_pip_version, session, options + ), + ) + if upgrade_prompt is not None: + logger.warning("%s", upgrade_prompt, extra={"rich": True}) + except Exception: + logger.warning("There was an error checking the latest version of pip.") + logger.debug("See below for error", exc_info=True) diff --git a/venv/lib/python3.12/site-packages/pip/_internal/utils/__init__.py b/venv/lib/python3.12/site-packages/pip/_internal/utils/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/__init__.cpython-312.pyc b/venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..aeb7b9733eeab1acec0a04aa46136c7443925d0b GIT binary patch literal 189 zcmX@j%ge<81UJ)5vOx4>5P=Rpvj9b=GgLBYGWxA#C}INgK7-W!iqX%=&rQ`YD9z9> zPA*M}PtMOPNv$Y}Pb|pPFH6lU)6dCF(l4ki$;i($)-yEHFU~AU)h$R&&Q45EE!Ho{ zEYOe71nMZtOU%(PEy>I&){h4YWR}Fo>lIY~;;_lhPbtkwwJTx;TE+;(#UREH)c^nh literal 0 HcmV?d00001 diff --git a/venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/_jaraco_text.cpython-312.pyc b/venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/_jaraco_text.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..ff3fcea752dceb22b5d2baea4d6ad7f847d60521 GIT binary patch literal 4530 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 literal 0 HcmV?d00001 diff --git a/venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/_log.cpython-312.pyc b/venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/_log.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..70830208b64bef1d9e4b082bf6964ccdef842e53 GIT binary patch literal 1860 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 literal 0 HcmV?d00001 diff --git a/venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/compat.cpython-312.pyc b/venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/compat.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..3abc5ea3ea28e8ed4ea90c39520a2a06ca48b1b2 GIT binary patch literal 2207 zcmaJCO>7iZ_|44z%+Bsw+^x12iGv`p0=t#UkEJ0>fLLw1wTrCXkW8jKv%9mMoteD% zmhF-jD=~p4BrRgn8Z{cdNHF2*QBEGbw3MV_=z*vgJ*^ZI!^!W>cA=EUm(2U#`~Khe zH@`-s5`uNNNXut~2>s43t>s%gto{XuIi#T+(m0Jbxg6&~KF51d$O%QH3Ey!!ACGjd z>}hN%X+k}4gKM60LCvR&1zz)i>dS?+fG)v3T<~c@xJODz6TjzjQC%p%{ImvkE5GtA zP7Ad(k8?!k(B_hwG`0t!aSpcu2Va&q(GzAIx##PAB69xy46POlGA*f8){H_y$3!-) zwWDrPd8kfHwk4kff?-=kRxM3-OqCXFT#+<`P;87=DI+ESWVQwqf*UF7RB=>VQmTgL zh6&Y7V^nd*io^|O`v*^?vl%ylby~$%e!YJz4FY_teXz};5K96w(Il$#I}qhttUD1F zI5dJRUk!~5BdErbB$#|fnB+J#!DUdwH;5Vg=>+FS`ZLPVNP6hxU?ww=@VP#P5Yr9! zR~#GDlNj6B?Q{$$shra-&BnEBK$8wQhD@!0EOrViOw>M=Z1A2nz3bRl3QnKljfS>S}jm!kKC{(`E}APa2wVW zX{ZuDv)=118(865jz5c=KrQ=Z`#M|g|Hrwxr=ICZWcl zC>_-+K&NV&skeF#?tmuFR|)HG1t09`KHS~i)6_p?s(D?5*8yhOrJ^*45YK?Q%^}8m9vIv zdVy-r92P=|8E&a0iHO&9Dy7)vZQ}ZDN4H!ttqh+?4-SlARvoUtK&VRH0HNMg^XE;Q z=$Mt68!!k9yzBEgf@?2G2u&(q&|I-#m^zaqtdqcB%<31ji??ls1Gx&@6nfZ+#I`GV zw(m|*UWvBNWT&&Ur@uPz&CxH8{usNt?fSOGt%sJPhcELh@fYTfTs<;>{94~~eAi-p z*JW`G@L&uYR!5HM|tdEJQM^;1oK>9CZWDf#wElq-bEh;EF0PIw~f* zE7T0j74oLx@)k|R+@PXpc3x53plKJ2hE>Edra>Te_ys5mq#tM@_)QD|S;wxZD3)5$ z0U2Ndfbosmw&{&Pkb=AjFfW_&ViU*}TmK+ef}mqcYEa^?k14@yxLrqh8vrlNkHo%; ztyN9^7(M_vHtWbG*kE#U+}}LM#a07|YrBU+_mK3P^yXBs5kS(`%N@(1uEkK-{E?;5 z&Z$5nAaR|u?W+htqpOo^pCt_hV4kcp@ZfC@wRKO0A(r9iX7)|*Tb8yjO54AEZAsd5 mTgv{Bxq0^b*`GdK+<*M`{xd)0Uuw5%3&Uq_ef&w#bM!yj{ucWH literal 0 HcmV?d00001 diff --git a/venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/compatibility_tags.cpython-312.pyc b/venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/compatibility_tags.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..99defa203cc30d537078e06cd0e1b24954304a9e GIT binary patch literal 5555 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 literal 0 HcmV?d00001 diff --git a/venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/datetime.cpython-312.pyc b/venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/datetime.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..078526803eafd73063816595074dd34b7db52c56 GIT binary patch literal 678 zcmZuvJ#W-N5Z$%ccUJJBNJ#-zjG(|m-14DxKtn>8G;}8<%keH}-}!87y}n@NNLSFL zf-Wgjg3?g(A80@+5Gx8KD!PNCO2w@42?;UM%$pg{?7SKIeXqBIKt2!U=qKPe9W2Fe zoyB!? z{*jTf^#0;VSN|iYZG2!#y!`aP-Wt`oHcs2w2c$M@GTuVyG4k-PXDVASp%+j@d&-g- zaP};rI|R{2PZ#>U${NN~o)$XcYB_&Gqin)yUPiPCOXi2LHGd}kAde|jPH7VF(Y%sT zmfr2(zC(*x@|$@Oj)NgDD4do0F?5JDNN6eJq@YVW{k&3Z4HrKy`~;{8Uq(SHdN8~T zTHFFNLtmWrmpg|$pPY@4&c>N@WwzaBj<20qC&ig_W48VE!s@Hd!}}k|r3LgL&r)6A zXIbd`LjN1e1P+SqWm(d^{sxJQkQNS@bNk*TV`ai0h&2fHshh!b6Jz|tz?dvL2(QjN Z1YbT5=Lq2S)dt=^Y~bD2FP&^&{0&d8qk;ec literal 0 HcmV?d00001 diff --git a/venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/deprecation.cpython-312.pyc b/venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/deprecation.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..893126341f5b4194c3119da85de224c00dd5a480 GIT binary patch literal 4180 zcmai1UyKvS8J}IR*X#e>`R?E#2g831oSg*n4?!9P1W<#C!bM4~M5{gT*xt)}cRRDb z;|`y6L`V%%q+DLYNo^$_`jCoL%3~h-fYhpr)E8fYa@`{Jq9#)FW^z2VJoTGhd+m^@ z9m}&bv)_E*%?p2-@Fj?#!VKLjUBGUdwg|80D*~sL%y=VFPWa=fnQWxWX&B4pjEK%6J$4Q03d!Dz z1d_^|bWs~35*gOx$6+ZBKYgp7AV5QMRdF2F^dyOqtUpSToSr5ldWJ-a?5|{Dl=DZx zshZJ;u0_kE`Zj&|np7UsMfl}@CF&!vZ#1MF3rCy7(H0nugnUx^_%*q_d0xyvwNOf& z#0^_-ngqLb&BaE;F-e11F2k;En}$_`CnlCQ4HQIU^LS397A!NYP1{Wu>%^g?qPd1` zu|ncoe(_R1>P1dk^PY0i;p>{|$y4OAd;X#)P0c&Ri@s^Wa$fMFjz$@QK~hy`31zUV zstf7UXI_8f%&C)8=P#Cy;RxOf>f10;~bC&WE zPf=A%YY>97RD)6{drR}gEzlL8=UcDwOF?sr06v3MOJC*YQ?r(IJ&AiMsb!{ zvqjUGE;{pW-L{Sto_V&&43|tgTID^hMp)4?oT6&L4hokpHeJJH#Q}f{&OA+m6u;X9 z0~Uqu8d{SS%BTLiH>%pys2RXPWp#V5i?dhoYM7v!2JvLj6tQei z;wzrSXP!)n+oV=S2F|^vzhV&2VW?G+nsWm9Z$d~5Jqr4mA z-Dcixfe!HYH!yxz95gz_U!(?gMlmdLdd7`-33WChCDo2?evriNWxkWr6#|Q=a$di-G1b5{OBVY4UgX++O;~gtG)XtcZOd1KweWaA7!p* zmgnv%JHA#XR%$mdf4=35=WieVa^#*;@~!B54#N%1SNI1oxG@0dOjlvB95#JGp}P24 zq!-5o|pd8VWa|yj1dHI;m<+)13nEmo>*BmY$bAr59bi z6!Sw7*fV%j;5EJ;lLJ2C<4bv158TJsz?fk%S2Inu%SsJYMfU^QVfeG>p<6;Pd*{A2ukbo{5%;h<$+O#S`YBAjTLL$LkkV1O0 ztz-U}&w0v$_}*Q|+-@w+&aD&NWWYK|U~~0(STfl6dE&apLQd0!Sp8Gz1$?P)H%%Q+ z6RhEi%~PgJFoUc~tO_Y~PZL_f50Au}5N_Zmw)H=b1=(2R#&1D#oh9L6zISzgnR#5% zEPkUvaM$7ngu;Eh$ramG451S1Hi7*9!%G83{9X_c0kwubOLS~l0b7pf8=ApjBS-_6 zv?(@xZu=RoG%1DKhhhND8mI#f4^n^}XbI1?0DpK7E z_~E(ksy1!l$w|2IWOwI@D}yW+IR$n(zE&+1*K|NpKVmxkUcLkOC7n`dwsB$O|Q&h`4QOE|iR7;b|{AtC&k#Peicp$B0?5Alv?$$rA} zVg^%rQ1Q~;3RH!v-DQ4-#JFq##BV_bl;}f2Pr%z3;Lm;!9n?R^Pj6tsO;8;vfrJ7{NT7$$35w?9k|2^WR6^ziZvE2ox^ucmP)!dKQauyVc8iSh~P zIXm2m`9lSzH+ACvFoBY}<>yxuTRTaAp5pT(*C#tZPf)v@*vRrX8wV8Oa0jE^``5PZ z_%3}?5Y7whsca|ekAVB|)|K5KPjq6zTtS(!<;wMUJMmziK)G!zM?RkHB!hVhrAC%d ST|dzYIQfDeW&L-)+W!laC`yq4 literal 0 HcmV?d00001 diff --git a/venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/direct_url_helpers.cpython-312.pyc b/venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/direct_url_helpers.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..35bd431ffe7a2a33411f4ffaa453841fc10fc653 GIT binary patch literal 3557 zcma)8T}&g_6~5yc+hco-Z7}}f&u+k*m~F5LTSbbpO}g1sf+V1Jw{7H98X3<85Ak2` zj7b1HLQ&MRFAcO0u!^cBQlz9>9>`N(`&g+jOrWxN#7dD`sp^{%Jn__X#~#~@yrNh3 zJ?Gwg&bjBFd+vAUA8xl3L3^^SuKZp==wEbTHb;v&{}V8~NJ0{mLwP2}FqF6CEO|D? z=D8G?x2CLlTgqn4vpIX7Pw@uN3Z+K$2H-V;<%i><+{JQXlq$2DijZp3kf)-WLGna z?vxBwI;C@kbRO$Ag4Hr9WGr;oR8vW%*% zN;QoJdYs93s7kFH?Qv^QGF!1omKF12%w?dxEvy)q+a=bNgp0n~o}=G)RSu!YEw9(z z^c;olYfs@dZM0AEPQ?QI_3)x;^Etlsn|3;s{G!6H40gsQ_y1dX+`2CY6>eU8l7MO7 zJc(kNL!UC&o+f1KbtoC@?YYE)?>*#c)^vQWup|hXz)9AX;f_s{tFWdd)oR7mau3CA z>&dr@g;h+{Xgb<{8d0?f!;)Nz68yU|WPKhN)Tp8oxv)I7&PLyiuJaq!n;X?PH>&Gy zrM%dD8AY;o`;r;IWNyU!bbd9RlcltZb*HSz1w~C4GFazicxS{8PUtpZ@@bXOgw$F3 zs2rJMJ};}HED@UfI+sl=S>2W{m2g2KH1&0%do!I|DawU7M_jN(X!7W;E{Ao;5=k#p z*A<1@i$c3xN@R<9oG6vE2_;jO#7wcE;*V7^U6K>4xUibY$%~27nwl*ZW~QcJNhq?4 zUoNFHAEuYFl7NsTL>V*)Kue;m$~h&`K?O03b0tiasnVJr>zYn0VhNXS-AanBNrIO! z!4MBJ27b}Es{lHpP4olTSL1>j7d+v@_5Q%#;LeXX->G~1H)l`nzU|4~#7^R?S5NFW z>-@m>dM)^p7JR8L1U_GQuuu~snh@C^`g-ikvBRP7BHu=8({tMN+&OCrInR*A;e6n_ zupy^^dv14OXW^?4P8`#QmEBKvKGFEtmaFa>{QQjvZ`53o?_H6)Fjx~tG+|^f^+s-o=Od-VRp_xI)F(WDkkYJ8IV5IEuj=MWI2JC$OYWH60crW-=r z0DA|dc9Gg%>wc_ex~o=di#CZlu$Z$4todBw32^iGX~Dpftfm)pIBp>nKF9!cah6bh zLT|{(zc@ppz$e!b4|ZKNWVC47A>&jA{z?S8O?2w=p9;Y}=dmz;>h|wRC+_hJ zD=XLG=GvS!L+#l}7&9 z2}!SN0=UwyCmmHYNL9ANw$O}yPJQW7OHA$Gf_GJ}YOUHT7GkehTb8U4W=&2P$gD5O9uiuY)J40cvb&aBL2vTJYD zt7@wB8^ma)&h>jrsLF%Xkg3_BRY%1^d=f&Ri)`D?wRnPjvIf54fM zyxz08bsn;vUMQh8P4A~biWL=0BEhSG;Kc&0w_gUKhreWQ!-JqfjC*w(BrJR-HQ_w4 zj8$*HAmK7BW76p)I@o><3BGNB6!)c?)#GPbfE4p0eaqw)NKzw89DrjJHEf6%{;=`s#%Um23naBb z^3ea?@VCRqf!kZIC!V1rerRi>9!u6@Z)>r)>w>o?#55rWP=3Ry@h@z#NAAeJ?~F&n z3uglI-#8LtM+32XX!61AnG^ZPj)c+e*Xp71S}3W7l7~abq1U%&Pd%Z!ci_|)s{11~ z|AgkBs1J?T$A5BR=lc5^PBb)D3(sibnF|l^bv6+1a5nmpv#;hD)f}TIj)lfjwddEJrLRcV4vBa_&WY&e1G_8;N`8m z&zc(9pE&Wo*u$CuigC;Q&*S~NOV^Q>HqRH!ilBDHPwD zpBv$xO2+k2Fx5lPt{b&|3KCK=&|mjGyWGxn7QTv%DsJGt&Mg*;IpecVPt?!>j)R Do_YdZ literal 0 HcmV?d00001 diff --git a/venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/egg_link.cpython-312.pyc b/venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/egg_link.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..1dc559f3b8fbbc2381f4ddfa0419c447e93906fa GIT binary patch literal 3220 zcmbVO&2JmW6`x%$KShalZCSG0SmP+E&DbJiD@YJGDOw~>>Oxh5I7JO6&SJGYB$rz5 z5;L=6DA0ipJxD+RRe(_iNQ(<^x=%|@LJGuY^9uwONt z?5~Z=*g%^cYIC41d`&w7+G8E9nEy9!a=xfX#+)l;lzFWs-N3gz(2NRKGP7mbi&l+^ zC>sjKP1Hf(BoBSx^=oG6JD^>1xeP6j`AgBsJ=ydFv*ra0mKS}W)oP~a`io#s*3Bvp znx^Oo)jG1%3v3H_5@op6Hhrtfq7-K`J+7p6Fm6%DtyURlzNB7IbL~=2 z8T%EZmL~$x1&g#AaEjXl->S{i3vE}{gHTdG;7v5HoL|J<3h;VM27xE&v(HnzZuvFl z3=i10I=C`=Ka?u#p3Sl=M94(>naj^USL`2q zdF-usemYaJW|p6xdA@Y(;v;QlIXiSVfKTTvN`O;~8XtiW3Jf}Z^me%(G+DV7*2}^U z9n%hc$=;Qw)pE;AfXuSzF2L$=OnO+w$$oG z1v74`ND2NuSQP)F1l0=p>LkgItf$sepA@FHPHffhXUZR6{Cnob?U56!PyOclCz-Ro zWFnvHkwh}J3p2<87^gsiu-x5&YCnttt^-Kl*5nY<4FiT9Dld~;^Mu^iyBbKZf|QVG zRh6U0H-N4Vm#*GT+#9TN+xV9G==wvYYs9-1+WRkc4O`a;{%;V2y#KmEfN=EXpDXOl z#W37|j}SEqn=KwRnB9k!x>#+?TZDT>fip_TAcG51OsO~k8ag5}up`m~kQ#yOM=4jJ z!D3ROBpN#yz$mMj2td$`Mh|pFnYbyCUXTqaKMoQ{m#OL;2;v>6An+M->dCE}_s2^s z^E=~{n>ROZeo2fZUCnMkcJWJ+$kNqc>`a{AY;UwTyBpoD>vwP8pLlWgXFG-C>+QAn z`g?2deNcZ`IKMqHb*J#3G>q>hV0te{^2hiISmJ1){25@eNooXOF#rf5_h2*@{-dte zKsX&LatNC^Od65tcu+iB%*jlw%dEYSdsJ#v$x9?i?0gup6 zboBxB4VjNm&=`xQy>A19d8l*~0Nxn-$#0pDVL4Q~$=DML`pKi9Z%x1g3jJ@WOr|Ip zQ8?t|AMJtgjsAe>L$+v2V{0X8MW! zyIDSHWOiVr!^Hn*W#9Jp_8cGVf)n`XG4(;3gM$sW89yhA{bcwG(y{;9Z~KfXSpDMB|9z13>^86BWXkvkjqQMTwWT+r|(j9M0EDx5S8vrdzVB-LODN5o2KP?rU@xV z@_rOl7C_hiktl*zx#3afg=XM{9{VvbLKkwfXhPLXXqxsZ$*N!OGji?=^1^@hgr@iM zB>DKZaSomZBl=3Zm(Odd59}U+&z5s{_7CnZioLTr?bzMv9)Zut7ydf?mziA@duJZ+ OtKrjEe?>r4+xZ_ZRv?c6 literal 0 HcmV?d00001 diff --git a/venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/encoding.cpython-312.pyc b/venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/encoding.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..42d4644c7e3d848665a4d67562b272e8cba96f57 GIT binary patch literal 2152 zcma)7&2JM&6rcUf#&+U><2p$pY)C0_P;3$t1Puj=eDp&!R0X8U1X-J%vAt%q>+X&r zjvO_uD%Ghfk*J4QY7aT|Kt&H6`#U-RCZ zeY5_vr^g2f{guJFZ61JssNj)w0QN640PKKU00PM9Alc$fl5u4=$-10Na)h%wzak`s z6)`C?0D)Yuw^@fnF3l24Uq|C1$h(%Kp4{P3a4r2EjfbG`t?pu4FF~kcfh)FU<}TBYn^j=(|KX3lN)ouM^=R=zl~`iBd8I11Jc4NHh<7 zzvGkrMJ5`2K~0NM*5R*dHg<%Yg}jc|gaS@aTv!t+n>@eP-Qp9=s11peYfVhGREep! zl|UUi{MGB9-LPr@stGkCbNho2?=0ElW49-k?#J$&i8?$~u;Pdo!UfAv4~nGK0D(Ll zdG`NxUofURm*&8oX#kd30M?mxwght2>wi>YyoPP&$AJ>SbT^ke7RU^NT$iWs@Dl6A zsw@L;03MJW-5tA!VA~HekQ)M|E`!v>l{m;lVF*C+?ic_he*n8XZ zJ^8l2>wJmdU_S-lG9^A2?Cj>DM+X4%bU+U46Lxud-BWzqlQ_f=AMvv04!a(bmuHo+ z`x$`4ZSO-ahF7;2a|1-X*M6AIBK5AU$je2HY}v*ZnI$=GT0})AOva|HnwEuBtQTd7 zFaa{oA{iO2vGe(4LJNwnFDqmp;;x&jqN7*_;k<>?h{QtAd5rkkC@SmPT_l@%WQ;{+ z(~v(e;;d;T7We6p`d*On0~TFgP}x=hpsERm+>mdzDM^0W@GYX+j%%qG4zEsh?D{CX*#HCIqPU&zL7wE$D9X<)R9Q%YWo z-$TZ|xUMb7^R3QflT&e9!)PK;&QQr9JD%6_@svg)EJM-b1+3|I+)EkD7ahM+z-Fq| zvo%bT(odw_B+CYPC4r&gmw*+fH+#xl`O7_j@WGYME0x4k|B1a&RYRkV z(0DC0{_sLQbnZ#uTvH$+O$i(c@A$TTmFarl$nMGA$!g!Jmp~ArWu9!b#cYj~FIM=v z|JbkZHbxS)k;LPe_h4po=DF0{kVb3L=rA3dKC9b&mbChMEd$w+oD&%VJ&1uC=hWmPX^keA2N&l z(E&#yQ=PhXbK!#1eSjvo!J28Dnk#utM;5)w?o0a(SSKhxPL|iwr4wX4&e}mzs2*kkmsc%wSnJPcLC-@sexF&?RR;#@1N&_`vpmL_lzki7IR-VnE zG{SE18?ZdR6|QhwLpA@gns|I4NDSNT2f@Me@`K!Ft~!{g_nzDEH^n|i+(J!2*e>^q IGPkq;00l+t%m4rY literal 0 HcmV?d00001 diff --git a/venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/entrypoints.cpython-312.pyc b/venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/entrypoints.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..69c024c3a5c4ddb38c5587353844f760a5de489e GIT binary patch literal 3987 zcmb7HU2GHC6}~eb|HS!moH$N4g>p%N$ZQz53segWNDxp$1OYX)w62gf@m$B_9nVbf z9Xl8~RVuBtpi)6rl>*wXHb^Uh#0!tSwyM;JzSv6Jz>um{TORsSWg)Fvo_g+#Ck`|% z?Um>L-*eABKi@h2RcB`uL3uiB7yr?Y(4Y9gFQI1VuAM|OqTA(h?1~OeFN)M@FHBt~WF%c0|#H~Gkk93jPL(vH-oQ3a7FGBN3 z4Ht*~eXX{J9)jd}Srl*fNw9k!WxCWZwT*;Gko3F*EBsTVq&F|A?H>g*3F!CaMYZE2 zDbv^NcS1i|6>_5BQkX-j*k3r&sg&qQ=QL(JkqefsnTDdL1V<_=4~;!b>#I` z!GExT?6AMy62mk~iOLJOa*P-@RdhT@70V(N=S_+gUB{-bV!l+hOwF*F9F1Zq6Yxfp zYB|_Z#qb(jP#AnFW~4$mnJq`KO7faPR2iQlIi<`9HuG3xtW20oOQ9Omj9HwgW(i+B zd1+!4vnrD<#V(BEQdze(ODFhZ)h?I@8^v~kXcPl4a8HiQ80Hj1#U+#3EpW`X61Yyp2^v*Vp}T_AhLyPJWFhky^>i0-o0mEGPz7hMN@17 zmuL)Ipjz*Ki<%Wp1v0oqas|cESjiRQoI(xGhj%S->N2TnlmPcI@A7H`VFQEYscBJ{ zx}_^Q;u0tj-5SMn1RLgDQ2^sHtV$}@7#ETyfgrKDkB+OvrC;loFcc*dtz zG>`xg%4=7fg2H7(B~-7vJaP+?qg*8wQ&XGjpyrGYy04mLoCDUqhct}`__Ygo5En$4MDomcIwVrl6LF)C?Yn}LUN13oB!{k=2;G6yUr_n|UNnEUvwYtH}| z>9VcqEWO2jWUJ~#vQ2f;I9%AzZytea0c{MRVC3V;A5N}HiH4L|7lUm>8-Z{zw9$<^ zx^GKAI$D?dUcy$CHlxM7 zxMkmV^4Nyw+9veY#0r`Z)B^Nldo#wKMpu3SaZ0jzxN%Eyn`l^*eBS4SZ{c7Yjno7< z?@K*Y3o_y62XCRW)90qu)G)MJoYWEDz)WR^eKiSP*nu5`NdCID#`#<{Ys0AM=tCY{z4Ly=mFR!!^i##)dG6H=iSBXqrSS7SW6_A#uvwz&Mlt%qWAvby}|l{<12|13+Fc? zs3)=1zu3PT-`$As{$l9<{(JlH%lG6*$;Uk_L&sL)$5-QHjriCvPW^K7XOk=O3k#EL z$$_QW#o5*5zD9E2^88Bj@Z-UHa%|zk({OTaAoT*Zx8ds(YrFP-Ub|a+FtM`haJ^&4 z8XmeIz8AjVaj)aSmB$k+_)NWH=O4SV&)L-CRDJl+ZxV-_6RU|mjl`ZO{I~aS!9ZWn zdK3-dPh#u+Kz(BeioLheb+F!f=+St+{a9T(Mtk7NuVE}l2^V933!SYPyItxAc)N)z zML)}jbABmudwrv{k~lzA_^05NVu#;rwJju?7i%INddpq0)=9rt6I=LA#hNgUYT&^s z;o7nP*-N*&r0Um~tFwG*8ma~K=V<3G`G&kOwib)un!7Q#8r#)~?OG13#P%#qY=qFjSC?vw zwdIMG{sUmGPs9B`J@xtc-SO2Oqm3P-V5^VWuXl_+iS=KPt%p!YY+=$>cS@K_^*e1m zC$LRZXCCh^vmSETRSPl|%Gsk_y-pIKO5Tk1a!%J|{@=h&DV)LA7u`gFr%2$_9z1n4 zGbQxUq5<&rElu*!N5DAKXk;` z1E{V2R`^EvcJRktF9I+Lna`IU2_bp={X3_Zd+(lY^zK_nFn%=rk~iz}fN=Z)^r2b* cM!OJuFuj4G`R9x83viloFZ_9QU`&wy1@C{y*8l(j literal 0 HcmV?d00001 diff --git a/venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/filesystem.cpython-312.pyc b/venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/filesystem.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..3b9e39cea092c3350325d4e98a28fa7aabebef41 GIT binary patch literal 7452 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 IWbE;O1N6^WrT_o{ literal 0 HcmV?d00001 diff --git a/venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/filetypes.cpython-312.pyc b/venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/filetypes.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..14cdcdbac9ab57dca545f90f326659632dd4f504 GIT binary patch literal 1158 zcmZ8fOK;Oa5Z?7GiQ71BP!XsX_i?~TwMC1N5EKMe5S36tZ3>koWZZbuxHz`8c3NWb z$bkchOW;C}96`PGXCT3$QIQBfApwWpA_5mq?7E?}U1`6Wo%v>Gc4j|hvmzkt%SyQV zkpbWvJ^Wi-Pw8$EdP-ae&7?ieB z7m2jedgh2dlh{SXml<6=;_FL%{d(UKdzRXfh=hpBz63KA^?pktS#u~`=B$CIoG#S| zm3(ykn(d&l?jzZD%O0+pq3yY<8Vg^AK?Xkv9a znk1HRIZ|Wksy=BHmWqYBh1r{P3kn~l63T;!GWO7kdPbsT60Z|g%{aTHABZIM$o6AN zpS^X!s<6G#mE^uXG;u5yugo8y#hhzaQ7m8-*05WG^dY^)5=nP=j=*aW?)x5s&7N*S zI+In(I6FJ4nvOz(|($6H4@&R?0IxjuWlaNunUgEN%Dk~swACjwdi zb62Z)Riyc~iWZb=mO)a{F&UeCT)|hFh#7~mkO3Cfqv3B1;mvF(Hl8aM@VRX4WA23gY*dWAl&M-{Z^}^)a28MwJ;=(BkX$lf$a?76QB!#~NI8V(3 z1pcHiRz0icpi6j|9O(>#R|GmNgzzT=A@^GV@Z=9L@il* literal 0 HcmV?d00001 diff --git a/venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/glibc.cpython-312.pyc b/venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/glibc.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..77ed08841bbf3d163e404a1a9bca8b459e8ab8d5 GIT binary patch literal 2336 zcmb7F-ER{|5Z}EI`|L|dAa()->MLK#0kQdbsG#&Cg_QD9QxQNVYHJPP*o~Hszi{GN`=%vpl^BZi@`{Qqf)8LOW$0Q2b8{a_Uub>$V*4s+1c5h zoxPdg&HUQg8AU*k$JvD5fzY3P5s=gp7F`f-pe)Mb0vc=1cnrf@COlK%;<0vSdrn2`$SoXd@M@D}QnKX)%MV@q&HH z)Gk|uf=7)qVwcAEY7WuTPRY{joK|v}R;HkB9!pJAgPy4abya_$o_sj;L4D|C zO*%<9EZPDrgTfE+FCajGfj4P_hkg}h@#G*v1XqLzV%*ZF3GQ+gWyO1~R86BQngNR{ znux4A1j`^@pMbY%JS|j(QM4T~AHDoE?i)ae#($#lA zB6iUr70oUJnu=D58601llWXR5RVG{Mc4)Gd(xfL(*`@!~>r)THuPt=- zGz3MC{no$r*5R9nYrEd8_aCV#8yD36n!0_Vr|)Te=cD+Z`|&;X_|VtUYxvq54Fz@d z%%oo|g;8h!56AC})zp2@ks!zZfV*UvmuW9}`o3>iL_hZcn-^olo5lG}7H4ZT(GzI@n_q&cSQUNPtw8=&fB`6#!1mQ$fZtp18->Cp_<8>y{!G7O zBnfw&_GE*awyj6KP*d-zCyK5^SQA9j(PO7i!>Tz=mg!_IT_Rh#$$FPKrbTI{WE3q5#m6EV*Q+npJ<78Th-^WU z$ANH`fI+_jHiH@=QI0)P;*D;!DRE1^sm>j%Z`5m2ydlVPY$37lQDWqNVx*>QX{&MGUZAg*FJiMZEgmIVd&E(Xtj)=%Nj6gypUF zMiY(lpanh1&=_xXydE`s3DpLn2J8*mlCDkVZ8HxS=8STI@w=^}%PPTX|1!IznFek8 zDmcz$+0}9ebcUqA3tbBl9lpVn{r;e1za{9{>ul>6l-K5FHa#V%Lu4-~(=ez8%&#(W zy&l^=^Wj1`Rts-g=<0jg-8Z|n)-_O52K-KutijJbxQK4-Arw@e>qzf}+2pZHHgZ8{ewcYkhAHuo$bu-{*#R}Nj*C|`@Y{f z5)!4&&K`#Ee*d2LdEfWbzj!=u0^et&#`ypE3Hf)-Vub z4SQLg1IF`(eUL5-SB?_Z`43#UiYKRu>bgNx_eZ?7l5jOED~GZQt@)gp~T|~Htwf1MFX5!PBlf1M8_tR6FOw2 z2=;)4b2xQgGbU-$bm(Ksp%-2Z2-FA5W7(dU53~4%?n6;)16EjOXEy&E5_gD3!kkLN zyvl_IwMi8;QIj->R;D=`p?-wN5dT$C&~YO`8)Lkzn#w<>DoBfRRoA$|mH z@C#R{F3q93;a}7|BM!A3T6*CeeOhJFI36giQoT5r>a%8n87g6hDyXSet2MtpqaX4$ zY7LIZR!|H1T39Ep(vj~8Gl^;))YP$Ad9@zW^{PW_V0lq(fPAC9+D1q>&G3O;rUMUB z(`S{F@)T9lX^qOpm}1CRCu4C{mlKn5BbJV9@)&C-Lrp3f)np~9%F!_`I-x^zEg>tT zN(`>eEyFjFOid-bMpG$OzNW+{HQmjMhfRkyi0Pp0%Az*b*rACKBFZ*LAh<(fWRA~p zf3-KmjdQHNB*>q1AGr*YbP2|p6Xrz2Mkyf~@guuehR+B`q3^9)kwBV63UdOI`Pmd( z87{gvtxzRlZ?jiEDXRcsIW;0H@zE5G8Dj}KsU$RAPN!l?18^!EDLD?X)~!bI)Rd+c zM#B-uv}qV*RD&jk@?n6!6f?Ah4!}%NLsLy>1h9^s1ClA~T6~1oz&6Vm|@=qlHqi?U5E+9+yxsy zJY|Fo*=dAp9OZ7+X2d@7o)qOrNtC}_2MClh($4KO0!sZg zqGK=VHh-%@gg($dkIf?@DZ(zF$L*RA^(%PEuLB;jf=R`FYF^lAmhT_G zdwjh)lx+^JHFrNDf@^@gd3OHPLfwY1da?a}*WIqHZ{J2`!$w=+U+eo9mF3r0+JDjY z^RADD?4iC-y83>^eNx{K?S=0T=E|`5Q<$u7A^L;ATy-}6;fX*R1~|O}mi5b;x>tF} zFFQpDqXoo31xgD;(;JW|Mw80j0Gx~$5CzrtH=ftS`2vWyu#rz~-A{lYE}0Sm*#rNZ zhafmhIG8p=E`vUr zm949K<~lm6CAH}^JwChFzAUR5@W5o!2p)~6qDovp9xSvw0ljtPmH#APT_>MZ4=kPj zo1TTKJ4dtC1AowQ+3(cWb3jglKAEskv=0g&atuW}9;*$LisG4O{X0yL1fk0iTqnQx zRl@|!#?R&+&aH<|WkaXdLjAw09$51YtU3oMHZomfpjjfwt)?3&Gh&S&EpR!sDcmFu z4Mz%+J`Snv-*|B!yE4O#l00Kv1AYi_vmwi1kf+8pWFXXE@@NcLvxu?fm=46xXgL_* z*@2kCsAhn5!NdwLnI48f$2mcaEE)2}^a$II-FLRmKA&ynuVPP>y6fb(AX69bU%q>J zy(O4!2`O5v0ki)WiN|+Lb7iZpFhO4o)<^TCi@;CR*61t!K;ZNzZq8yL)z$J_|tPAFK@ zh9_UAav9+s`MW~jcep7sExbvlK)hz(IfXWp%xohB3fL32q$g#bvo0cz}16+;PHb`|E&D=}S@5o~#zT8@p#Nf=XR7Isn7S^u|_%tB+f4l`5euCG{<^4YLfF1{MT`gC?f?4K(7IA#S=Z&ZMm*Er&XaBw;!x)36+k=^YSfZQ2rH z(-EP#tU#G1GcRLXaWrM<6vfAs*se?wCj;Sva@7B9cX@fLVJ2q8J|f%vpKZo{YI<;| z$^jTc{|y9SqIgMV^}M*z*mA$+Zp(UOXST6(t+DF~5nX4w`Jo&yc+PU4w+24!e9*ZZ zTWfuJL0owAeP2$(`dkI6+Xd!~t8Ko2qhZ(m^1J2tJWmMcXeIm0ovu9WOv*B@w?;q;@GeL=J5Q`f)3j5y}6rnKltua`-fc*x>j7-*4|Hiy`NRq zflcJ92Yu=CyjOm+e4+1CXX95-Yf0_y4_vGM{Wuk@u5RDz{$r0~kG`|oF|<~9X0`H6 z4kkRyJ=5{{A2ht$!~avybEm2#dIItkK}fw2l#m6|J0puAB#IT`&Pp)D3a#I|M z#kG>P7O4J3s7LL&llfm{EOB{i%Eyf2l|L-b6Y%Eh%n@0#z(s`H3_ zYH7t7D>*d>^kO$W28ogz=G4M%zJM+j*-=Rr$STUia{>J25x{}UY$M%Zx=w*9`X=Gv zZzfM?{IJQ>t6->zskD})Lojz_%AGaL{?&D7!2v*@{^lk_MKc1?E_C;~c z(~={ct9z*itj=}+{;Yrh^5HfA!7l|U{1R(GZd~2ZbY$vxt2%^bsk^M?qzd@D1T6qx zU*}$eLCxGteh!@h+|0HQRbu|Mz`$>W^WngrsiI{=9i zr0r->mq_J-ZRat>UJBqTVW#-W0G5vAjY_&F1Z1v+gvdvt9M9F5p-rwBOGXyxHC~o^EItYl7W!#Ij9cr2L zMxVzNdTe$Dnh2dx1ffA(QEIshQiSAp$mx3c= z^2h;~@nC?0sLToKj#?rEhS*4f*=%2{5lqZBkWUW%tpNXw>m3G%OB{zs9T2uIn96dL z%WXFYUwBN1m0^BTLGEY>8qc=c0vECD{>To#*LR^Edo^Lc7nmRQ)xT@#SQHk&v(ei1 zqztn7GO{}-k=lkkgSQ74qf0L?US6;1%n4ApQPcStW7|vH7vKUCMgM_@F=)V`;PulT z zw`<_-K}|&?5sJJ`k)y#8H7G@ckm9Qo4PcowO+nL8W5yKV^@^gCP0wS1TuBiyrgU}2 z&~!^Tqe((h#+hoO!|)CquJfZas(>=xn>ii&4wzeIk%TMyg8nePIHS<&`S_+ z3WcJagO`pk`*Q@MM{O+nxP23IIcKfZwEXf)|HD^u1d@-8O^k9uPCB@Fcu83Li=~Qe za~CK=>EO!#O^k95hjeslI!7Q{>D$C8SIJA=OF9nRy$mBjlygc_?NZHBbh&3~?7?$6 z0$FSgQO?UtZHsJvFk}TOv^bC>5G_GZh;nY1c(=y4^s;#}&4ryn1}@VBZVdhyU`f~P$M86v zq7w?U+D1~8c{<=OP3oG8etc4%()NKCO<28T#qw>ir6N=9?a3HrFJzXfH)P1sR3beI zKw-*Qi5dV!tBb9li~6vqZsy2Jj@9 za=x8v&vA1OQ=&VnIJp(7-cumU-WrbgrdsdwdpE?g)XgL85 zzs@;9PAgVM#c#eSgn#aBF0WAX4vRq1L8oZ@P{bo0fS_2jTJB2Cwr#On{vkGncM&8; zZ{uS7kLR*YUF%IRWt(1FYx>5Tw|CXq%XS3^hqpQ$aM8CQrV$LTV4z^YXbY)~Uc~^( z$n@A}9M$4ryTJ7%pp@A)C#=(sVN(p|u>wi&E94zXa(>|zr5AD)oOEOx2OL@150VP^3lTMqK1#jMD-W&`{h5G?!}5G(*%x12t9kmzh~Z^(W& z2!g~#nG>{iz3kXc&xMQUUmHHnAl84u;#0P}QJh}J0EzaQ^Qfg0j#Cr>;8~&%K>%(p z$Nd}e{)U`cCujbHyq+bm|C${9olyB}vE>UVk!1Jz*&+cTLXym|*zy QEy2efSs3_&K*Xl{Um!k|K%;&z_coH~ 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 R^TSpnpBzUoYUD!T{{o31j5h!P literal 0 HcmV?d00001 diff --git a/venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/misc.cpython-312.pyc b/venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/misc.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..a2c64385d4b2b293daaf26146a3ace9f3c851f0f GIT binary patch literal 34115 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 literal 0 HcmV?d00001 diff --git a/venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/setuptools_build.cpython-312.pyc b/venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/setuptools_build.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..d7ff2e571e046a05ca621a70bfb5551accd43040 GIT binary patch literal 4544 zcmaJ_&2JmW72hS7iuPsHU(p8?{71*A#s+ADX)M78j>9UxG|AF5 z1+UKHa<-hN1D_^VG7)t|OVe#GngJ=j)Y(t9mFxlP?s}5uU_EzW9d{iBO@tnFsM8zn z(`1m20PmpSJ=CE=-mZL|jsnflhMGV8FSK|u9}l&gmLG)rZ7;A~$FxIziG5OMPKlY- zgrcMgJnSJW&6M1lXW49KdU{$+PLk!SIv!Lz;u50^7$+T_8uMxu_CXoXY zRLy_@9jW`wCxJ_N-64W!&fAdkBB=(s5fH29xjgVCg^)^CS=r@`Sk9XJz;Y@b=2?`+ z9COuX#N+OLRsue;9kn_|M=A*GTscWdMx1+(jcW&3j_kb4iMth@XHS+{~Jao9TJ z#4}3|%!=47Fdb@g>d*CR3EQn%6zl;rZDw-9ICnXzG2b^UjI38#WTUhIpmJQW&G7?7 zi1x_>EPQg$-|**5URnG2?Ylywpvp+yp^V!bsK&iEV)tgH^bQ)`72>;*j-(ep>N4M% z4geX;c>paVeu-Nir~}&?rF(PIo#vWrQN)jtvTNJ!I&QmeatFTi9l3^=An{h9U5PIo2ji3l#&tA$7&zjYzxkDM;AE5(DFJh&a10+-CaHe_d9O zTTU<|=ur|r6W8zDxqWAzyk|PXKunE#zMmrxXo$W<(otK=LPWIZ7U zlkIg$ZIy}Z&v|B0MJayZ&$QR`T~tt@W7b$Nw*-gCytDq0v%zPB@;+Ck(XLSc_in^%&*S!N3(fY`;Ou`aeyt%b;Kk5;b6sfS53R< zin8p7gN|E-(#ZiSr)*Wik-D>5FP9l-wCL6YuO5U+4jIFpl7^K%dZ2P+^4soZ`P+mp{Yb6%(s65fo8f^(N zAu-;SxTNGY(*-6Gk3VKXp99?*)D}vh3f3_Rd>K=sQmk{+^H}6>S!u8UmP|al=A_H! zJ(HVJQNhSUH0PnV!QlWstnvbAICZeU3RPMPm31ZJ?gxLK{D@LZ9*;yWk;pH7T>UPZ zCpXGunb#pe;Hbg8_ld{2kB2Otf}BWK)}a^*^)Vr${r}6kJ;F>H)#ok|@!`-a3FDxU z$YRjOkJymMQq9enQHQs*nKKN>HBbiw>T6yL<4_dBw5(;QX*gV5y1xALpDo|MeRHX} z^phL6!Xy;uni=F1JPEGn7zkX)W&oN{gYA4DqYbSf-_k|sze zJ*%(=C9Ysws|9Z(sJhPOxr>(yz7;S-9=FUdz&)W*gwo46U{w%@bfKHEMNufhf#GpH ze2P6Q7$rqig&zV{F2d`749%AEW?ab)|8DWg;$G(D*20&mWBYn`XKW|=WN=&C*Yxe> zFGeT-Hu_d`^sPT${p;ut_pLlwB+zA595q>SgE#!Zv|U^e)fzEA}WeJ&dV!Tc~b!_ag+#^LI%gmA3)1KJ}|;(7we zK0wazLj$;uDcN)T`r+r!pS3sfST?z}&`K(af$h7y3(pIC*-K6B($)eZe5TOv0znH`tF$$POr3OY42YwV7!vx;KoXvz`!2OEjjXe+L3_cPhVKIUW z5i0FHanN2NKw5el2=Bt{Uw{TI)xX2iU+h%&vg1u{yw|!g>2X%J9)=p`L70PFljR!& zz0`I&n%yy-!{C|HNN}vdv7aixR{KMv5&K;2ghsNFqyR(&LlQVrFoU5Y0|aXLW1N9H z+?h!Tnj}qiW|9D&zL<|<2(vj%QMSfx*V`NrHG(qF-_#95T7!iny1g0@)|*K~6cMDA z1Xm^KsUFZpjTi^f{0ue(8{r77Am9jmq%%$(bVj6#bjKu+SK;+Pfo4nj=8!Tn{)h8> zT7EB+|7T_jVsQWHIrw{%(nJ(yF$zE0&Fp2Tn%dOX!q=%Brt*p15BG+rn)(#vZz{8w zI*OBLo=@!!PdD}HZSCvS7|tBqeWyM1suQwdmQ^ZHm&&e4>L^V?9YxXL#qsNF&>RS0 z^jj3{kK&CujYTJ6yrF_e;uOA-M_?7t#>KoUN^7XM_uEVx2K0?p6Kb}IYfVBt1>4Co zEHFhix`3WO2xwcJM06U6e+#dF85#)iGz9qbyMMa&Mdr@d!YfGGmF=5N?HEEgikO_* zZR`!tHuc$Ut&2%MzWDz8`C*Q~xI-OlJf5dvGT89o63-D6j#_by^Ds#ng)<$lDt-Vz zKKLL`#-Sf-tMJoNlq-%UhGX_|^f^a0Unrtxh&cIHzfyB)-DcN#0hTbAd=70ZuBz%+ zO8P5h=mfGe(>zwr|-66QwjZb{QOw#-|#;P@qx$Ze>2m%r7G%3>qAv3 zT;4xP_Qxl`891sA?~fj7#o_yE?9}crpO=1rw>fs9m4FGTYln}wQrOd#W2ah33|l1A z+mnw!dY!@1_l6>V_#*$((_5_s^nn#d?>)WRO5sRXjvQ|dV6V%LqbWUNhi``+`oJFT zlETrElMxwwQK{2npA?RCRB-@%X(e}fXX(kURt85|B{RBn`H9iW;b>49JJuS)-f&y+ i2#&5~Bf;=}b?C(I<)=m~0sY8w?CBB1n*kUJpZo_Liqks) literal 0 HcmV?d00001 diff --git a/venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/subprocess.cpython-312.pyc b/venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/subprocess.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..c4a198d4cd479376b9ed91f378415d4438eb83ed GIT binary patch literal 8712 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 literal 0 HcmV?d00001 diff --git a/venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/unpacking.cpython-312.pyc b/venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/unpacking.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..3a1b5c02fbb134be720c9f3de51e5333bc64b672 GIT binary patch literal 11102 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 MAl1=TO59Wb27GNGGXMYp literal 0 HcmV?d00001 diff --git a/venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/virtualenv.cpython-312.pyc b/venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/virtualenv.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..27508e0aa597487714eebcccd039de2fd32203a9 GIT binary patch literal 4474 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 list(yield_lines('')) + [] + >>> list(yield_lines(['foo', 'bar'])) + ['foo', 'bar'] + >>> list(yield_lines('foo\nbar')) + ['foo', 'bar'] + >>> list(yield_lines('\nfoo\n#bar\nbaz #comment')) + ['foo', 'baz #comment'] + >>> list(yield_lines(['foo\nbar', 'baz', 'bing\n\n\n'])) + ['foo', 'bar', 'baz', 'bing'] + """ + return itertools.chain.from_iterable(map(yield_lines, iterable)) + + +@yield_lines.register(str) +def _(text): + return filter(_nonblank, map(str.strip, text.splitlines())) + + +def drop_comment(line): + """ + Drop comments. + + >>> drop_comment('foo # bar') + 'foo' + + A hash without a space may be in a URL. + + >>> drop_comment('http://example.com/foo#bar') + 'http://example.com/foo#bar' + """ + return line.partition(" #")[0] + + +def join_continuation(lines): + r""" + Join lines continued by a trailing backslash. + + >>> list(join_continuation(['foo \\', 'bar', 'baz'])) + ['foobar', 'baz'] + >>> list(join_continuation(['foo \\', 'bar', 'baz'])) + ['foobar', 'baz'] + >>> list(join_continuation(['foo \\', 'bar \\', 'baz'])) + ['foobarbaz'] + + Not sure why, but... + The character preceeding the backslash is also elided. + + >>> list(join_continuation(['goo\\', 'dly'])) + ['godly'] + + A terrible idea, but... + If no line is available to continue, suppress the lines. + + >>> list(join_continuation(['foo', 'bar\\', 'baz\\'])) + ['foo'] + """ + lines = iter(lines) + for item in lines: + while item.endswith("\\"): + try: + item = item[:-2].strip() + next(lines) + except StopIteration: + return + yield item diff --git a/venv/lib/python3.12/site-packages/pip/_internal/utils/_log.py b/venv/lib/python3.12/site-packages/pip/_internal/utils/_log.py new file mode 100644 index 0000000..92c4c6a --- /dev/null +++ b/venv/lib/python3.12/site-packages/pip/_internal/utils/_log.py @@ -0,0 +1,38 @@ +"""Customize logging + +Defines custom logger class for the `logger.verbose(...)` method. + +init_logging() must be called before any other modules that call logging.getLogger. +""" + +import logging +from typing import Any, cast + +# custom log level for `--verbose` output +# between DEBUG and INFO +VERBOSE = 15 + + +class VerboseLogger(logging.Logger): + """Custom Logger, defining a verbose log-level + + VERBOSE is between INFO and DEBUG. + """ + + def verbose(self, msg: str, *args: Any, **kwargs: Any) -> None: + return self.log(VERBOSE, msg, *args, **kwargs) + + +def getLogger(name: str) -> VerboseLogger: + """logging.getLogger, but ensures our VerboseLogger class is returned""" + return cast(VerboseLogger, logging.getLogger(name)) + + +def init_logging() -> None: + """Register our VerboseLogger and VERBOSE log level. + + Should be called before any calls to getLogger(), + i.e. in pip._internal.__init__ + """ + logging.setLoggerClass(VerboseLogger) + logging.addLevelName(VERBOSE, "VERBOSE") diff --git a/venv/lib/python3.12/site-packages/pip/_internal/utils/appdirs.py b/venv/lib/python3.12/site-packages/pip/_internal/utils/appdirs.py new file mode 100644 index 0000000..16933bf --- /dev/null +++ b/venv/lib/python3.12/site-packages/pip/_internal/utils/appdirs.py @@ -0,0 +1,52 @@ +""" +This code wraps the vendored appdirs module to so the return values are +compatible for the current pip code base. + +The intention is to rewrite current usages gradually, keeping the tests pass, +and eventually drop this after all usages are changed. +""" + +import os +import sys +from typing import List + +from pip._vendor import platformdirs as _appdirs + + +def user_cache_dir(appname: str) -> str: + return _appdirs.user_cache_dir(appname, appauthor=False) + + +def _macos_user_config_dir(appname: str, roaming: bool = True) -> str: + # Use ~/Application Support/pip, if the directory exists. + path = _appdirs.user_data_dir(appname, appauthor=False, roaming=roaming) + if os.path.isdir(path): + return path + + # Use a Linux-like ~/.config/pip, by default. + linux_like_path = "~/.config/" + if appname: + linux_like_path = os.path.join(linux_like_path, appname) + + return os.path.expanduser(linux_like_path) + + +def user_config_dir(appname: str, roaming: bool = True) -> str: + if sys.platform == "darwin": + return _macos_user_config_dir(appname, roaming) + + return _appdirs.user_config_dir(appname, appauthor=False, roaming=roaming) + + +# for the discussion regarding site_config_dir locations +# see +def site_config_dirs(appname: str) -> List[str]: + if sys.platform == "darwin": + return [_appdirs.site_data_dir(appname, appauthor=False, multipath=True)] + + dirval = _appdirs.site_config_dir(appname, appauthor=False, multipath=True) + if sys.platform == "win32": + return [dirval] + + # Unix-y system. Look in /etc as well. + return dirval.split(os.pathsep) + ["/etc"] diff --git a/venv/lib/python3.12/site-packages/pip/_internal/utils/compat.py b/venv/lib/python3.12/site-packages/pip/_internal/utils/compat.py new file mode 100644 index 0000000..3f4d300 --- /dev/null +++ b/venv/lib/python3.12/site-packages/pip/_internal/utils/compat.py @@ -0,0 +1,63 @@ +"""Stuff that differs in different Python versions and platform +distributions.""" + +import logging +import os +import sys + +__all__ = ["get_path_uid", "stdlib_pkgs", "WINDOWS"] + + +logger = logging.getLogger(__name__) + + +def has_tls() -> bool: + try: + import _ssl # noqa: F401 # ignore unused + + return True + except ImportError: + pass + + from pip._vendor.urllib3.util import IS_PYOPENSSL + + return IS_PYOPENSSL + + +def get_path_uid(path: str) -> int: + """ + Return path's uid. + + Does not follow symlinks: + https://github.com/pypa/pip/pull/935#discussion_r5307003 + + Placed this function in compat due to differences on AIX and + Jython, that should eventually go away. + + :raises OSError: When path is a symlink or can't be read. + """ + if hasattr(os, "O_NOFOLLOW"): + fd = os.open(path, os.O_RDONLY | os.O_NOFOLLOW) + file_uid = os.fstat(fd).st_uid + os.close(fd) + else: # AIX and Jython + # WARNING: time of check vulnerability, but best we can do w/o NOFOLLOW + if not os.path.islink(path): + # older versions of Jython don't have `os.fstat` + file_uid = os.stat(path).st_uid + else: + # raise OSError for parity with os.O_NOFOLLOW above + raise OSError(f"{path} is a symlink; Will not return uid for symlinks") + return file_uid + + +# packages in the stdlib that may have installation metadata, but should not be +# considered 'installed'. this theoretically could be determined based on +# dist.location (py27:`sysconfig.get_paths()['stdlib']`, +# py26:sysconfig.get_config_vars('LIBDEST')), but fear platform variation may +# make this ineffective, so hard-coding +stdlib_pkgs = {"python", "wsgiref", "argparse"} + + +# windows detection, covers cpython and ironpython +WINDOWS = sys.platform.startswith("win") or (sys.platform == "cli" and os.name == "nt") diff --git a/venv/lib/python3.12/site-packages/pip/_internal/utils/compatibility_tags.py b/venv/lib/python3.12/site-packages/pip/_internal/utils/compatibility_tags.py new file mode 100644 index 0000000..b6ed9a7 --- /dev/null +++ b/venv/lib/python3.12/site-packages/pip/_internal/utils/compatibility_tags.py @@ -0,0 +1,165 @@ +"""Generate and work with PEP 425 Compatibility Tags. +""" + +import re +from typing import List, Optional, Tuple + +from pip._vendor.packaging.tags import ( + PythonVersion, + Tag, + compatible_tags, + cpython_tags, + generic_tags, + interpreter_name, + interpreter_version, + mac_platforms, +) + +_osx_arch_pat = re.compile(r"(.+)_(\d+)_(\d+)_(.+)") + + +def version_info_to_nodot(version_info: Tuple[int, ...]) -> str: + # Only use up to the first two numbers. + return "".join(map(str, version_info[:2])) + + +def _mac_platforms(arch: str) -> List[str]: + match = _osx_arch_pat.match(arch) + if match: + name, major, minor, actual_arch = match.groups() + mac_version = (int(major), int(minor)) + arches = [ + # Since we have always only checked that the platform starts + # with "macosx", for backwards-compatibility we extract the + # actual prefix provided by the user in case they provided + # something like "macosxcustom_". It may be good to remove + # this as undocumented or deprecate it in the future. + "{}_{}".format(name, arch[len("macosx_") :]) + for arch in mac_platforms(mac_version, actual_arch) + ] + else: + # arch pattern didn't match (?!) + arches = [arch] + return arches + + +def _custom_manylinux_platforms(arch: str) -> List[str]: + arches = [arch] + arch_prefix, arch_sep, arch_suffix = arch.partition("_") + if arch_prefix == "manylinux2014": + # manylinux1/manylinux2010 wheels run on most manylinux2014 systems + # with the exception of wheels depending on ncurses. PEP 599 states + # manylinux1/manylinux2010 wheels should be considered + # manylinux2014 wheels: + # https://www.python.org/dev/peps/pep-0599/#backwards-compatibility-with-manylinux2010-wheels + if arch_suffix in {"i686", "x86_64"}: + arches.append("manylinux2010" + arch_sep + arch_suffix) + arches.append("manylinux1" + arch_sep + arch_suffix) + elif arch_prefix == "manylinux2010": + # manylinux1 wheels run on most manylinux2010 systems with the + # exception of wheels depending on ncurses. PEP 571 states + # manylinux1 wheels should be considered manylinux2010 wheels: + # https://www.python.org/dev/peps/pep-0571/#backwards-compatibility-with-manylinux1-wheels + arches.append("manylinux1" + arch_sep + arch_suffix) + return arches + + +def _get_custom_platforms(arch: str) -> List[str]: + arch_prefix, arch_sep, arch_suffix = arch.partition("_") + if arch.startswith("macosx"): + arches = _mac_platforms(arch) + elif arch_prefix in ["manylinux2014", "manylinux2010"]: + arches = _custom_manylinux_platforms(arch) + else: + arches = [arch] + return arches + + +def _expand_allowed_platforms(platforms: Optional[List[str]]) -> Optional[List[str]]: + if not platforms: + return None + + seen = set() + result = [] + + for p in platforms: + if p in seen: + continue + additions = [c for c in _get_custom_platforms(p) if c not in seen] + seen.update(additions) + result.extend(additions) + + return result + + +def _get_python_version(version: str) -> PythonVersion: + if len(version) > 1: + return int(version[0]), int(version[1:]) + else: + return (int(version[0]),) + + +def _get_custom_interpreter( + implementation: Optional[str] = None, version: Optional[str] = None +) -> str: + if implementation is None: + implementation = interpreter_name() + if version is None: + version = interpreter_version() + return f"{implementation}{version}" + + +def get_supported( + version: Optional[str] = None, + platforms: Optional[List[str]] = None, + impl: Optional[str] = None, + abis: Optional[List[str]] = None, +) -> List[Tag]: + """Return a list of supported tags for each version specified in + `versions`. + + :param version: a string version, of the form "33" or "32", + or None. The version will be assumed to support our ABI. + :param platform: specify a list of platforms you want valid + tags for, or None. If None, use the local system platform. + :param impl: specify the exact implementation you want valid + tags for, or None. If None, use the local interpreter impl. + :param abis: specify a list of abis you want valid + tags for, or None. If None, use the local interpreter abi. + """ + supported: List[Tag] = [] + + python_version: Optional[PythonVersion] = None + if version is not None: + python_version = _get_python_version(version) + + interpreter = _get_custom_interpreter(impl, version) + + platforms = _expand_allowed_platforms(platforms) + + is_cpython = (impl or interpreter_name()) == "cp" + if is_cpython: + supported.extend( + cpython_tags( + python_version=python_version, + abis=abis, + platforms=platforms, + ) + ) + else: + supported.extend( + generic_tags( + interpreter=interpreter, + abis=abis, + platforms=platforms, + ) + ) + supported.extend( + compatible_tags( + python_version=python_version, + interpreter=interpreter, + platforms=platforms, + ) + ) + + return supported diff --git a/venv/lib/python3.12/site-packages/pip/_internal/utils/datetime.py b/venv/lib/python3.12/site-packages/pip/_internal/utils/datetime.py new file mode 100644 index 0000000..8668b3b --- /dev/null +++ b/venv/lib/python3.12/site-packages/pip/_internal/utils/datetime.py @@ -0,0 +1,11 @@ +"""For when pip wants to check the date or time. +""" + +import datetime + + +def today_is_later_than(year: int, month: int, day: int) -> bool: + today = datetime.date.today() + given = datetime.date(year, month, day) + + return today > given diff --git a/venv/lib/python3.12/site-packages/pip/_internal/utils/deprecation.py b/venv/lib/python3.12/site-packages/pip/_internal/utils/deprecation.py new file mode 100644 index 0000000..72bd6f2 --- /dev/null +++ b/venv/lib/python3.12/site-packages/pip/_internal/utils/deprecation.py @@ -0,0 +1,120 @@ +""" +A module that implements tooling to enable easy warnings about deprecations. +""" + +import logging +import warnings +from typing import Any, Optional, TextIO, Type, Union + +from pip._vendor.packaging.version import parse + +from pip import __version__ as current_version # NOTE: tests patch this name. + +DEPRECATION_MSG_PREFIX = "DEPRECATION: " + + +class PipDeprecationWarning(Warning): + pass + + +_original_showwarning: Any = None + + +# Warnings <-> Logging Integration +def _showwarning( + message: Union[Warning, str], + category: Type[Warning], + filename: str, + lineno: int, + file: Optional[TextIO] = None, + line: Optional[str] = None, +) -> None: + if file is not None: + if _original_showwarning is not None: + _original_showwarning(message, category, filename, lineno, file, line) + elif issubclass(category, PipDeprecationWarning): + # We use a specially named logger which will handle all of the + # deprecation messages for pip. + logger = logging.getLogger("pip._internal.deprecations") + logger.warning(message) + else: + _original_showwarning(message, category, filename, lineno, file, line) + + +def install_warning_logger() -> None: + # Enable our Deprecation Warnings + warnings.simplefilter("default", PipDeprecationWarning, append=True) + + global _original_showwarning + + if _original_showwarning is None: + _original_showwarning = warnings.showwarning + warnings.showwarning = _showwarning + + +def deprecated( + *, + reason: str, + replacement: Optional[str], + gone_in: Optional[str], + feature_flag: Optional[str] = None, + issue: Optional[int] = None, +) -> None: + """Helper to deprecate existing functionality. + + reason: + Textual reason shown to the user about why this functionality has + been deprecated. Should be a complete sentence. + replacement: + Textual suggestion shown to the user about what alternative + functionality they can use. + gone_in: + The version of pip does this functionality should get removed in. + Raises an error if pip's current version is greater than or equal to + this. + feature_flag: + Command-line flag of the form --use-feature={feature_flag} for testing + upcoming functionality. + issue: + Issue number on the tracker that would serve as a useful place for + users to find related discussion and provide feedback. + """ + + # Determine whether or not the feature is already gone in this version. + is_gone = gone_in is not None and parse(current_version) >= parse(gone_in) + + message_parts = [ + (reason, f"{DEPRECATION_MSG_PREFIX}{{}}"), + ( + gone_in, + "pip {} will enforce this behaviour change." + if not is_gone + else "Since pip {}, this is no longer supported.", + ), + ( + replacement, + "A possible replacement is {}.", + ), + ( + feature_flag, + "You can use the flag --use-feature={} to test the upcoming behaviour." + if not is_gone + else None, + ), + ( + issue, + "Discussion can be found at https://github.com/pypa/pip/issues/{}", + ), + ] + + message = " ".join( + format_str.format(value) + for value, format_str in message_parts + if format_str is not None and value is not None + ) + + # Raise as an error if this behaviour is deprecated. + if is_gone: + raise PipDeprecationWarning(message) + + warnings.warn(message, category=PipDeprecationWarning, stacklevel=2) diff --git a/venv/lib/python3.12/site-packages/pip/_internal/utils/direct_url_helpers.py b/venv/lib/python3.12/site-packages/pip/_internal/utils/direct_url_helpers.py new file mode 100644 index 0000000..0e8e5e1 --- /dev/null +++ b/venv/lib/python3.12/site-packages/pip/_internal/utils/direct_url_helpers.py @@ -0,0 +1,87 @@ +from typing import Optional + +from pip._internal.models.direct_url import ArchiveInfo, DirectUrl, DirInfo, VcsInfo +from pip._internal.models.link import Link +from pip._internal.utils.urls import path_to_url +from pip._internal.vcs import vcs + + +def direct_url_as_pep440_direct_reference(direct_url: DirectUrl, name: str) -> str: + """Convert a DirectUrl to a pip requirement string.""" + direct_url.validate() # if invalid, this is a pip bug + requirement = name + " @ " + fragments = [] + if isinstance(direct_url.info, VcsInfo): + requirement += "{}+{}@{}".format( + direct_url.info.vcs, direct_url.url, direct_url.info.commit_id + ) + elif isinstance(direct_url.info, ArchiveInfo): + requirement += direct_url.url + if direct_url.info.hash: + fragments.append(direct_url.info.hash) + else: + assert isinstance(direct_url.info, DirInfo) + requirement += direct_url.url + if direct_url.subdirectory: + fragments.append("subdirectory=" + direct_url.subdirectory) + if fragments: + requirement += "#" + "&".join(fragments) + return requirement + + +def direct_url_for_editable(source_dir: str) -> DirectUrl: + return DirectUrl( + url=path_to_url(source_dir), + info=DirInfo(editable=True), + ) + + +def direct_url_from_link( + link: Link, source_dir: Optional[str] = None, link_is_in_wheel_cache: bool = False +) -> DirectUrl: + if link.is_vcs: + vcs_backend = vcs.get_backend_for_scheme(link.scheme) + assert vcs_backend + url, requested_revision, _ = vcs_backend.get_url_rev_and_auth( + link.url_without_fragment + ) + # For VCS links, we need to find out and add commit_id. + if link_is_in_wheel_cache: + # If the requested VCS link corresponds to a cached + # wheel, it means the requested revision was an + # immutable commit hash, otherwise it would not have + # been cached. In that case we don't have a source_dir + # with the VCS checkout. + assert requested_revision + commit_id = requested_revision + else: + # If the wheel was not in cache, it means we have + # had to checkout from VCS to build and we have a source_dir + # which we can inspect to find out the commit id. + assert source_dir + commit_id = vcs_backend.get_revision(source_dir) + return DirectUrl( + url=url, + info=VcsInfo( + vcs=vcs_backend.name, + commit_id=commit_id, + requested_revision=requested_revision, + ), + subdirectory=link.subdirectory_fragment, + ) + elif link.is_existing_dir(): + return DirectUrl( + url=link.url_without_fragment, + info=DirInfo(), + subdirectory=link.subdirectory_fragment, + ) + else: + hash = None + hash_name = link.hash_name + if hash_name: + hash = f"{hash_name}={link.hash}" + return DirectUrl( + url=link.url_without_fragment, + info=ArchiveInfo(hash=hash), + subdirectory=link.subdirectory_fragment, + ) diff --git a/venv/lib/python3.12/site-packages/pip/_internal/utils/egg_link.py b/venv/lib/python3.12/site-packages/pip/_internal/utils/egg_link.py new file mode 100644 index 0000000..4a384a6 --- /dev/null +++ b/venv/lib/python3.12/site-packages/pip/_internal/utils/egg_link.py @@ -0,0 +1,80 @@ +import os +import re +import sys +from typing import List, Optional + +from pip._internal.locations import site_packages, user_site +from pip._internal.utils.virtualenv import ( + running_under_virtualenv, + virtualenv_no_global, +) + +__all__ = [ + "egg_link_path_from_sys_path", + "egg_link_path_from_location", +] + + +def _egg_link_names(raw_name: str) -> List[str]: + """ + Convert a Name metadata value to a .egg-link name, by applying + the same substitution as pkg_resources's safe_name function. + Note: we cannot use canonicalize_name because it has a different logic. + + We also look for the raw name (without normalization) as setuptools 69 changed + the way it names .egg-link files (https://github.com/pypa/setuptools/issues/4167). + """ + return [ + re.sub("[^A-Za-z0-9.]+", "-", raw_name) + ".egg-link", + f"{raw_name}.egg-link", + ] + + +def egg_link_path_from_sys_path(raw_name: str) -> Optional[str]: + """ + Look for a .egg-link file for project name, by walking sys.path. + """ + egg_link_names = _egg_link_names(raw_name) + for path_item in sys.path: + for egg_link_name in egg_link_names: + egg_link = os.path.join(path_item, egg_link_name) + if os.path.isfile(egg_link): + return egg_link + return None + + +def egg_link_path_from_location(raw_name: str) -> Optional[str]: + """ + Return the path for the .egg-link file if it exists, otherwise, None. + + There's 3 scenarios: + 1) not in a virtualenv + try to find in site.USER_SITE, then site_packages + 2) in a no-global virtualenv + try to find in site_packages + 3) in a yes-global virtualenv + try to find in site_packages, then site.USER_SITE + (don't look in global location) + + For #1 and #3, there could be odd cases, where there's an egg-link in 2 + locations. + + This method will just return the first one found. + """ + sites: List[str] = [] + if running_under_virtualenv(): + sites.append(site_packages) + if not virtualenv_no_global() and user_site: + sites.append(user_site) + else: + if user_site: + sites.append(user_site) + sites.append(site_packages) + + egg_link_names = _egg_link_names(raw_name) + for site in sites: + for egg_link_name in egg_link_names: + egglink = os.path.join(site, egg_link_name) + if os.path.isfile(egglink): + return egglink + return None diff --git a/venv/lib/python3.12/site-packages/pip/_internal/utils/encoding.py b/venv/lib/python3.12/site-packages/pip/_internal/utils/encoding.py new file mode 100644 index 0000000..008f06a --- /dev/null +++ b/venv/lib/python3.12/site-packages/pip/_internal/utils/encoding.py @@ -0,0 +1,36 @@ +import codecs +import locale +import re +import sys +from typing import List, Tuple + +BOMS: List[Tuple[bytes, str]] = [ + (codecs.BOM_UTF8, "utf-8"), + (codecs.BOM_UTF16, "utf-16"), + (codecs.BOM_UTF16_BE, "utf-16-be"), + (codecs.BOM_UTF16_LE, "utf-16-le"), + (codecs.BOM_UTF32, "utf-32"), + (codecs.BOM_UTF32_BE, "utf-32-be"), + (codecs.BOM_UTF32_LE, "utf-32-le"), +] + +ENCODING_RE = re.compile(rb"coding[:=]\s*([-\w.]+)") + + +def auto_decode(data: bytes) -> str: + """Check a bytes string for a BOM to correctly detect the encoding + + Fallback to locale.getpreferredencoding(False) like open() on Python3""" + for bom, encoding in BOMS: + if data.startswith(bom): + return data[len(bom) :].decode(encoding) + # Lets check the first two lines as in PEP263 + for line in data.split(b"\n")[:2]: + if line[0:1] == b"#" and ENCODING_RE.search(line): + result = ENCODING_RE.search(line) + assert result is not None + encoding = result.groups()[0].decode("ascii") + return data.decode(encoding) + return data.decode( + locale.getpreferredencoding(False) or sys.getdefaultencoding(), + ) diff --git a/venv/lib/python3.12/site-packages/pip/_internal/utils/entrypoints.py b/venv/lib/python3.12/site-packages/pip/_internal/utils/entrypoints.py new file mode 100644 index 0000000..1501369 --- /dev/null +++ b/venv/lib/python3.12/site-packages/pip/_internal/utils/entrypoints.py @@ -0,0 +1,84 @@ +import itertools +import os +import shutil +import sys +from typing import List, Optional + +from pip._internal.cli.main import main +from pip._internal.utils.compat import WINDOWS + +_EXECUTABLE_NAMES = [ + "pip", + f"pip{sys.version_info.major}", + f"pip{sys.version_info.major}.{sys.version_info.minor}", +] +if WINDOWS: + _allowed_extensions = {"", ".exe"} + _EXECUTABLE_NAMES = [ + "".join(parts) + for parts in itertools.product(_EXECUTABLE_NAMES, _allowed_extensions) + ] + + +def _wrapper(args: Optional[List[str]] = None) -> int: + """Central wrapper for all old entrypoints. + + Historically pip has had several entrypoints defined. Because of issues + arising from PATH, sys.path, multiple Pythons, their interactions, and most + of them having a pip installed, users suffer every time an entrypoint gets + moved. + + To alleviate this pain, and provide a mechanism for warning users and + directing them to an appropriate place for help, we now define all of + our old entrypoints as wrappers for the current one. + """ + sys.stderr.write( + "WARNING: pip is being invoked by an old script wrapper. This will " + "fail in a future version of pip.\n" + "Please see https://github.com/pypa/pip/issues/5599 for advice on " + "fixing the underlying issue.\n" + "To avoid this problem you can invoke Python with '-m pip' instead of " + "running pip directly.\n" + ) + return main(args) + + +def get_best_invocation_for_this_pip() -> str: + """Try to figure out the best way to invoke pip in the current environment.""" + binary_directory = "Scripts" if WINDOWS else "bin" + binary_prefix = os.path.join(sys.prefix, binary_directory) + + # Try to use pip[X[.Y]] names, if those executables for this environment are + # the first on PATH with that name. + path_parts = os.path.normcase(os.environ.get("PATH", "")).split(os.pathsep) + exe_are_in_PATH = os.path.normcase(binary_prefix) in path_parts + if exe_are_in_PATH: + for exe_name in _EXECUTABLE_NAMES: + found_executable = shutil.which(exe_name) + binary_executable = os.path.join(binary_prefix, exe_name) + if ( + found_executable + and os.path.exists(binary_executable) + and os.path.samefile( + found_executable, + binary_executable, + ) + ): + return exe_name + + # Use the `-m` invocation, if there's no "nice" invocation. + return f"{get_best_invocation_for_this_python()} -m pip" + + +def get_best_invocation_for_this_python() -> str: + """Try to figure out the best way to invoke the current Python.""" + exe = sys.executable + exe_name = os.path.basename(exe) + + # Try to use the basename, if it's the first executable. + found_executable = shutil.which(exe_name) + if found_executable and os.path.samefile(found_executable, exe): + return exe_name + + # Use the full executable name, because we couldn't find something simpler. + return exe diff --git a/venv/lib/python3.12/site-packages/pip/_internal/utils/filesystem.py b/venv/lib/python3.12/site-packages/pip/_internal/utils/filesystem.py new file mode 100644 index 0000000..83c2df7 --- /dev/null +++ b/venv/lib/python3.12/site-packages/pip/_internal/utils/filesystem.py @@ -0,0 +1,153 @@ +import fnmatch +import os +import os.path +import random +import sys +from contextlib import contextmanager +from tempfile import NamedTemporaryFile +from typing import Any, BinaryIO, Generator, List, Union, cast + +from pip._vendor.tenacity import retry, stop_after_delay, wait_fixed + +from pip._internal.utils.compat import get_path_uid +from pip._internal.utils.misc import format_size + + +def check_path_owner(path: str) -> bool: + # If we don't have a way to check the effective uid of this process, then + # we'll just assume that we own the directory. + if sys.platform == "win32" or not hasattr(os, "geteuid"): + return True + + assert os.path.isabs(path) + + previous = None + while path != previous: + if os.path.lexists(path): + # Check if path is writable by current user. + if os.geteuid() == 0: + # Special handling for root user in order to handle properly + # cases where users use sudo without -H flag. + try: + path_uid = get_path_uid(path) + except OSError: + return False + return path_uid == 0 + else: + return os.access(path, os.W_OK) + else: + previous, path = path, os.path.dirname(path) + return False # assume we don't own the path + + +@contextmanager +def adjacent_tmp_file(path: str, **kwargs: Any) -> Generator[BinaryIO, None, None]: + """Return a file-like object pointing to a tmp file next to path. + + The file is created securely and is ensured to be written to disk + after the context reaches its end. + + kwargs will be passed to tempfile.NamedTemporaryFile to control + the way the temporary file will be opened. + """ + with NamedTemporaryFile( + delete=False, + dir=os.path.dirname(path), + prefix=os.path.basename(path), + suffix=".tmp", + **kwargs, + ) as f: + result = cast(BinaryIO, f) + try: + yield result + finally: + result.flush() + os.fsync(result.fileno()) + + +# Tenacity raises RetryError by default, explicitly raise the original exception +_replace_retry = retry(reraise=True, stop=stop_after_delay(1), wait=wait_fixed(0.25)) + +replace = _replace_retry(os.replace) + + +# test_writable_dir and _test_writable_dir_win are copied from Flit, +# with the author's agreement to also place them under pip's license. +def test_writable_dir(path: str) -> bool: + """Check if a directory is writable. + + Uses os.access() on POSIX, tries creating files on Windows. + """ + # If the directory doesn't exist, find the closest parent that does. + while not os.path.isdir(path): + parent = os.path.dirname(path) + if parent == path: + break # Should never get here, but infinite loops are bad + path = parent + + if os.name == "posix": + return os.access(path, os.W_OK) + + return _test_writable_dir_win(path) + + +def _test_writable_dir_win(path: str) -> bool: + # os.access doesn't work on Windows: http://bugs.python.org/issue2528 + # and we can't use tempfile: http://bugs.python.org/issue22107 + basename = "accesstest_deleteme_fishfingers_custard_" + alphabet = "abcdefghijklmnopqrstuvwxyz0123456789" + for _ in range(10): + name = basename + "".join(random.choice(alphabet) for _ in range(6)) + file = os.path.join(path, name) + try: + fd = os.open(file, os.O_RDWR | os.O_CREAT | os.O_EXCL) + except FileExistsError: + pass + except PermissionError: + # This could be because there's a directory with the same name. + # But it's highly unlikely there's a directory called that, + # so we'll assume it's because the parent dir is not writable. + # This could as well be because the parent dir is not readable, + # due to non-privileged user access. + return False + else: + os.close(fd) + os.unlink(file) + return True + + # This should never be reached + raise OSError("Unexpected condition testing for writable directory") + + +def find_files(path: str, pattern: str) -> List[str]: + """Returns a list of absolute paths of files beneath path, recursively, + with filenames which match the UNIX-style shell glob pattern.""" + result: List[str] = [] + for root, _, files in os.walk(path): + matches = fnmatch.filter(files, pattern) + result.extend(os.path.join(root, f) for f in matches) + return result + + +def file_size(path: str) -> Union[int, float]: + # If it's a symlink, return 0. + if os.path.islink(path): + return 0 + return os.path.getsize(path) + + +def format_file_size(path: str) -> str: + return format_size(file_size(path)) + + +def directory_size(path: str) -> Union[int, float]: + size = 0.0 + for root, _dirs, files in os.walk(path): + for filename in files: + file_path = os.path.join(root, filename) + size += file_size(file_path) + return size + + +def format_directory_size(path: str) -> str: + return format_size(directory_size(path)) diff --git a/venv/lib/python3.12/site-packages/pip/_internal/utils/filetypes.py b/venv/lib/python3.12/site-packages/pip/_internal/utils/filetypes.py new file mode 100644 index 0000000..5948570 --- /dev/null +++ b/venv/lib/python3.12/site-packages/pip/_internal/utils/filetypes.py @@ -0,0 +1,27 @@ +"""Filetype information. +""" + +from typing import Tuple + +from pip._internal.utils.misc import splitext + +WHEEL_EXTENSION = ".whl" +BZ2_EXTENSIONS: Tuple[str, ...] = (".tar.bz2", ".tbz") +XZ_EXTENSIONS: Tuple[str, ...] = ( + ".tar.xz", + ".txz", + ".tlz", + ".tar.lz", + ".tar.lzma", +) +ZIP_EXTENSIONS: Tuple[str, ...] = (".zip", WHEEL_EXTENSION) +TAR_EXTENSIONS: Tuple[str, ...] = (".tar.gz", ".tgz", ".tar") +ARCHIVE_EXTENSIONS = ZIP_EXTENSIONS + BZ2_EXTENSIONS + TAR_EXTENSIONS + XZ_EXTENSIONS + + +def is_archive_file(name: str) -> bool: + """Return True if `name` is a considered as an archive file.""" + ext = splitext(name)[1].lower() + if ext in ARCHIVE_EXTENSIONS: + return True + return False diff --git a/venv/lib/python3.12/site-packages/pip/_internal/utils/glibc.py b/venv/lib/python3.12/site-packages/pip/_internal/utils/glibc.py new file mode 100644 index 0000000..81342af --- /dev/null +++ b/venv/lib/python3.12/site-packages/pip/_internal/utils/glibc.py @@ -0,0 +1,88 @@ +import os +import sys +from typing import Optional, Tuple + + +def glibc_version_string() -> Optional[str]: + "Returns glibc version string, or None if not using glibc." + return glibc_version_string_confstr() or glibc_version_string_ctypes() + + +def glibc_version_string_confstr() -> Optional[str]: + "Primary implementation of glibc_version_string using os.confstr." + # os.confstr is quite a bit faster than ctypes.DLL. It's also less likely + # to be broken or missing. This strategy is used in the standard library + # platform module: + # https://github.com/python/cpython/blob/fcf1d003bf4f0100c9d0921ff3d70e1127ca1b71/Lib/platform.py#L175-L183 + if sys.platform == "win32": + return None + try: + gnu_libc_version = os.confstr("CS_GNU_LIBC_VERSION") + if gnu_libc_version is None: + return None + # os.confstr("CS_GNU_LIBC_VERSION") returns a string like "glibc 2.17": + _, version = gnu_libc_version.split() + except (AttributeError, OSError, ValueError): + # os.confstr() or CS_GNU_LIBC_VERSION not available (or a bad value)... + return None + return version + + +def glibc_version_string_ctypes() -> Optional[str]: + "Fallback implementation of glibc_version_string using ctypes." + + try: + import ctypes + except ImportError: + return None + + # ctypes.CDLL(None) internally calls dlopen(NULL), and as the dlopen + # manpage says, "If filename is NULL, then the returned handle is for the + # main program". This way we can let the linker do the work to figure out + # which libc our process is actually using. + process_namespace = ctypes.CDLL(None) + try: + gnu_get_libc_version = process_namespace.gnu_get_libc_version + except AttributeError: + # Symbol doesn't exist -> therefore, we are not linked to + # glibc. + return None + + # Call gnu_get_libc_version, which returns a string like "2.5" + gnu_get_libc_version.restype = ctypes.c_char_p + version_str = gnu_get_libc_version() + # py2 / py3 compatibility: + if not isinstance(version_str, str): + version_str = version_str.decode("ascii") + + return version_str + + +# platform.libc_ver regularly returns completely nonsensical glibc +# versions. E.g. on my computer, platform says: +# +# ~$ python2.7 -c 'import platform; print(platform.libc_ver())' +# ('glibc', '2.7') +# ~$ python3.5 -c 'import platform; print(platform.libc_ver())' +# ('glibc', '2.9') +# +# But the truth is: +# +# ~$ ldd --version +# ldd (Debian GLIBC 2.22-11) 2.22 +# +# This is unfortunate, because it means that the linehaul data on libc +# versions that was generated by pip 8.1.2 and earlier is useless and +# misleading. Solution: instead of using platform, use our code that actually +# works. +def libc_ver() -> Tuple[str, str]: + """Try to determine the glibc version + + Returns a tuple of strings (lib, version) which default to empty strings + in case the lookup fails. + """ + glibc_version = glibc_version_string() + if glibc_version is None: + return ("", "") + else: + return ("glibc", glibc_version) diff --git a/venv/lib/python3.12/site-packages/pip/_internal/utils/hashes.py b/venv/lib/python3.12/site-packages/pip/_internal/utils/hashes.py new file mode 100644 index 0000000..843cffc --- /dev/null +++ b/venv/lib/python3.12/site-packages/pip/_internal/utils/hashes.py @@ -0,0 +1,151 @@ +import hashlib +from typing import TYPE_CHECKING, BinaryIO, Dict, Iterable, List, Optional + +from pip._internal.exceptions import HashMismatch, HashMissing, InstallationError +from pip._internal.utils.misc import read_chunks + +if TYPE_CHECKING: + from hashlib import _Hash + + # NoReturn introduced in 3.6.2; imported only for type checking to maintain + # pip compatibility with older patch versions of Python 3.6 + from typing import NoReturn + + +# The recommended hash algo of the moment. Change this whenever the state of +# the art changes; it won't hurt backward compatibility. +FAVORITE_HASH = "sha256" + + +# Names of hashlib algorithms allowed by the --hash option and ``pip hash`` +# Currently, those are the ones at least as collision-resistant as sha256. +STRONG_HASHES = ["sha256", "sha384", "sha512"] + + +class Hashes: + """A wrapper that builds multiple hashes at once and checks them against + known-good values + + """ + + def __init__(self, hashes: Optional[Dict[str, List[str]]] = None) -> None: + """ + :param hashes: A dict of algorithm names pointing to lists of allowed + hex digests + """ + allowed = {} + if hashes is not None: + for alg, keys in hashes.items(): + # Make sure values are always sorted (to ease equality checks) + allowed[alg] = sorted(keys) + self._allowed = allowed + + def __and__(self, other: "Hashes") -> "Hashes": + if not isinstance(other, Hashes): + return NotImplemented + + # If either of the Hashes object is entirely empty (i.e. no hash + # specified at all), all hashes from the other object are allowed. + if not other: + return self + if not self: + return other + + # Otherwise only hashes that present in both objects are allowed. + new = {} + for alg, values in other._allowed.items(): + if alg not in self._allowed: + continue + new[alg] = [v for v in values if v in self._allowed[alg]] + return Hashes(new) + + @property + def digest_count(self) -> int: + return sum(len(digests) for digests in self._allowed.values()) + + def is_hash_allowed(self, hash_name: str, hex_digest: str) -> bool: + """Return whether the given hex digest is allowed.""" + return hex_digest in self._allowed.get(hash_name, []) + + def check_against_chunks(self, chunks: Iterable[bytes]) -> None: + """Check good hashes against ones built from iterable of chunks of + data. + + Raise HashMismatch if none match. + + """ + gots = {} + for hash_name in self._allowed.keys(): + try: + gots[hash_name] = hashlib.new(hash_name) + except (ValueError, TypeError): + raise InstallationError(f"Unknown hash name: {hash_name}") + + for chunk in chunks: + for hash in gots.values(): + hash.update(chunk) + + for hash_name, got in gots.items(): + if got.hexdigest() in self._allowed[hash_name]: + return + self._raise(gots) + + def _raise(self, gots: Dict[str, "_Hash"]) -> "NoReturn": + raise HashMismatch(self._allowed, gots) + + def check_against_file(self, file: BinaryIO) -> None: + """Check good hashes against a file-like object + + Raise HashMismatch if none match. + + """ + return self.check_against_chunks(read_chunks(file)) + + def check_against_path(self, path: str) -> None: + with open(path, "rb") as file: + return self.check_against_file(file) + + def has_one_of(self, hashes: Dict[str, str]) -> bool: + """Return whether any of the given hashes are allowed.""" + for hash_name, hex_digest in hashes.items(): + if self.is_hash_allowed(hash_name, hex_digest): + return True + return False + + def __bool__(self) -> bool: + """Return whether I know any known-good hashes.""" + return bool(self._allowed) + + def __eq__(self, other: object) -> bool: + if not isinstance(other, Hashes): + return NotImplemented + return self._allowed == other._allowed + + def __hash__(self) -> int: + return hash( + ",".join( + sorted( + ":".join((alg, digest)) + for alg, digest_list in self._allowed.items() + for digest in digest_list + ) + ) + ) + + +class MissingHashes(Hashes): + """A workalike for Hashes used when we're missing a hash for a requirement + + It computes the actual hash of the requirement and raises a HashMissing + exception showing it to the user. + + """ + + def __init__(self) -> None: + """Don't offer the ``hashes`` kwarg.""" + # Pass our favorite hash in to generate a "gotten hash". With the + # empty list, it will never match, so an error will always raise. + super().__init__(hashes={FAVORITE_HASH: []}) + + def _raise(self, gots: Dict[str, "_Hash"]) -> "NoReturn": + raise HashMissing(gots[FAVORITE_HASH].hexdigest()) diff --git a/venv/lib/python3.12/site-packages/pip/_internal/utils/logging.py b/venv/lib/python3.12/site-packages/pip/_internal/utils/logging.py new file mode 100644 index 0000000..95982df --- /dev/null +++ b/venv/lib/python3.12/site-packages/pip/_internal/utils/logging.py @@ -0,0 +1,348 @@ +import contextlib +import errno +import logging +import logging.handlers +import os +import sys +import threading +from dataclasses import dataclass +from io import TextIOWrapper +from logging import Filter +from typing import Any, ClassVar, Generator, List, Optional, TextIO, Type + +from pip._vendor.rich.console import ( + Console, + ConsoleOptions, + ConsoleRenderable, + RenderableType, + RenderResult, + RichCast, +) +from pip._vendor.rich.highlighter import NullHighlighter +from pip._vendor.rich.logging import RichHandler +from pip._vendor.rich.segment import Segment +from pip._vendor.rich.style import Style + +from pip._internal.utils._log import VERBOSE, getLogger +from pip._internal.utils.compat import WINDOWS +from pip._internal.utils.deprecation import DEPRECATION_MSG_PREFIX +from pip._internal.utils.misc import ensure_dir + +_log_state = threading.local() +subprocess_logger = getLogger("pip.subprocessor") + + +class BrokenStdoutLoggingError(Exception): + """ + Raised if BrokenPipeError occurs for the stdout stream while logging. + """ + + +def _is_broken_pipe_error(exc_class: Type[BaseException], exc: BaseException) -> bool: + if exc_class is BrokenPipeError: + return True + + # On Windows, a broken pipe can show up as EINVAL rather than EPIPE: + # https://bugs.python.org/issue19612 + # https://bugs.python.org/issue30418 + if not WINDOWS: + return False + + return isinstance(exc, OSError) and exc.errno in (errno.EINVAL, errno.EPIPE) + + +@contextlib.contextmanager +def indent_log(num: int = 2) -> Generator[None, None, None]: + """ + A context manager which will cause the log output to be indented for any + log messages emitted inside it. + """ + # For thread-safety + _log_state.indentation = get_indentation() + _log_state.indentation += num + try: + yield + finally: + _log_state.indentation -= num + + +def get_indentation() -> int: + return getattr(_log_state, "indentation", 0) + + +class IndentingFormatter(logging.Formatter): + default_time_format = "%Y-%m-%dT%H:%M:%S" + + def __init__( + self, + *args: Any, + add_timestamp: bool = False, + **kwargs: Any, + ) -> None: + """ + A logging.Formatter that obeys the indent_log() context manager. + + :param add_timestamp: A bool indicating output lines should be prefixed + with their record's timestamp. + """ + self.add_timestamp = add_timestamp + super().__init__(*args, **kwargs) + + def get_message_start(self, formatted: str, levelno: int) -> str: + """ + Return the start of the formatted log message (not counting the + prefix to add to each line). + """ + if levelno < logging.WARNING: + return "" + if formatted.startswith(DEPRECATION_MSG_PREFIX): + # Then the message already has a prefix. We don't want it to + # look like "WARNING: DEPRECATION: ...." + return "" + if levelno < logging.ERROR: + return "WARNING: " + + return "ERROR: " + + def format(self, record: logging.LogRecord) -> str: + """ + Calls the standard formatter, but will indent all of the log message + lines by our current indentation level. + """ + formatted = super().format(record) + message_start = self.get_message_start(formatted, record.levelno) + formatted = message_start + formatted + + prefix = "" + if self.add_timestamp: + prefix = f"{self.formatTime(record)} " + prefix += " " * get_indentation() + formatted = "".join([prefix + line for line in formatted.splitlines(True)]) + return formatted + + +@dataclass +class IndentedRenderable: + renderable: RenderableType + indent: int + + def __rich_console__( + self, console: Console, options: ConsoleOptions + ) -> RenderResult: + segments = console.render(self.renderable, options) + lines = Segment.split_lines(segments) + for line in lines: + yield Segment(" " * self.indent) + yield from line + yield Segment("\n") + + +class RichPipStreamHandler(RichHandler): + KEYWORDS: ClassVar[Optional[List[str]]] = [] + + def __init__(self, stream: Optional[TextIO], no_color: bool) -> None: + super().__init__( + console=Console(file=stream, no_color=no_color, soft_wrap=True), + show_time=False, + show_level=False, + show_path=False, + highlighter=NullHighlighter(), + ) + + # Our custom override on Rich's logger, to make things work as we need them to. + def emit(self, record: logging.LogRecord) -> None: + style: Optional[Style] = None + + # If we are given a diagnostic error to present, present it with indentation. + assert isinstance(record.args, tuple) + if getattr(record, "rich", False): + (rich_renderable,) = record.args + assert isinstance( + rich_renderable, (ConsoleRenderable, RichCast, str) + ), f"{rich_renderable} is not rich-console-renderable" + + renderable: RenderableType = IndentedRenderable( + rich_renderable, indent=get_indentation() + ) + else: + message = self.format(record) + renderable = self.render_message(record, message) + if record.levelno is not None: + if record.levelno >= logging.ERROR: + style = Style(color="red") + elif record.levelno >= logging.WARNING: + style = Style(color="yellow") + + try: + self.console.print(renderable, overflow="ignore", crop=False, style=style) + except Exception: + self.handleError(record) + + def handleError(self, record: logging.LogRecord) -> None: + """Called when logging is unable to log some output.""" + + exc_class, exc = sys.exc_info()[:2] + # If a broken pipe occurred while calling write() or flush() on the + # stdout stream in logging's Handler.emit(), then raise our special + # exception so we can handle it in main() instead of logging the + # broken pipe error and continuing. + if ( + exc_class + and exc + and self.console.file is sys.stdout + and _is_broken_pipe_error(exc_class, exc) + ): + raise BrokenStdoutLoggingError() + + return super().handleError(record) + + +class BetterRotatingFileHandler(logging.handlers.RotatingFileHandler): + def _open(self) -> TextIOWrapper: + ensure_dir(os.path.dirname(self.baseFilename)) + return super()._open() + + +class MaxLevelFilter(Filter): + def __init__(self, level: int) -> None: + self.level = level + + def filter(self, record: logging.LogRecord) -> bool: + return record.levelno < self.level + + +class ExcludeLoggerFilter(Filter): + + """ + A logging Filter that excludes records from a logger (or its children). + """ + + def filter(self, record: logging.LogRecord) -> bool: + # The base Filter class allows only records from a logger (or its + # children). + return not super().filter(record) + + +def setup_logging(verbosity: int, no_color: bool, user_log_file: Optional[str]) -> int: + """Configures and sets up all of the logging + + Returns the requested logging level, as its integer value. + """ + + # Determine the level to be logging at. + if verbosity >= 2: + level_number = logging.DEBUG + elif verbosity == 1: + level_number = VERBOSE + elif verbosity == -1: + level_number = logging.WARNING + elif verbosity == -2: + level_number = logging.ERROR + elif verbosity <= -3: + level_number = logging.CRITICAL + else: + level_number = logging.INFO + + level = logging.getLevelName(level_number) + + # The "root" logger should match the "console" level *unless* we also need + # to log to a user log file. + include_user_log = user_log_file is not None + if include_user_log: + additional_log_file = user_log_file + root_level = "DEBUG" + else: + additional_log_file = "/dev/null" + root_level = level + + # Disable any logging besides WARNING unless we have DEBUG level logging + # enabled for vendored libraries. + vendored_log_level = "WARNING" if level in ["INFO", "ERROR"] else "DEBUG" + + # Shorthands for clarity + log_streams = { + "stdout": "ext://sys.stdout", + "stderr": "ext://sys.stderr", + } + handler_classes = { + "stream": "pip._internal.utils.logging.RichPipStreamHandler", + "file": "pip._internal.utils.logging.BetterRotatingFileHandler", + } + handlers = ["console", "console_errors", "console_subprocess"] + ( + ["user_log"] if include_user_log else [] + ) + + logging.config.dictConfig( + { + "version": 1, + "disable_existing_loggers": False, + "filters": { + "exclude_warnings": { + "()": "pip._internal.utils.logging.MaxLevelFilter", + "level": logging.WARNING, + }, + "restrict_to_subprocess": { + "()": "logging.Filter", + "name": subprocess_logger.name, + }, + "exclude_subprocess": { + "()": "pip._internal.utils.logging.ExcludeLoggerFilter", + "name": subprocess_logger.name, + }, + }, + "formatters": { + "indent": { + "()": IndentingFormatter, + "format": "%(message)s", + }, + "indent_with_timestamp": { + "()": IndentingFormatter, + "format": "%(message)s", + "add_timestamp": True, + }, + }, + "handlers": { + "console": { + "level": level, + "class": handler_classes["stream"], + "no_color": no_color, + "stream": log_streams["stdout"], + "filters": ["exclude_subprocess", "exclude_warnings"], + "formatter": "indent", + }, + "console_errors": { + "level": "WARNING", + "class": handler_classes["stream"], + "no_color": no_color, + "stream": log_streams["stderr"], + "filters": ["exclude_subprocess"], + "formatter": "indent", + }, + # A handler responsible for logging to the console messages + # from the "subprocessor" logger. + "console_subprocess": { + "level": level, + "class": handler_classes["stream"], + "stream": log_streams["stderr"], + "no_color": no_color, + "filters": ["restrict_to_subprocess"], + "formatter": "indent", + }, + "user_log": { + "level": "DEBUG", + "class": handler_classes["file"], + "filename": additional_log_file, + "encoding": "utf-8", + "delay": True, + "formatter": "indent_with_timestamp", + }, + }, + "root": { + "level": root_level, + "handlers": handlers, + }, + "loggers": {"pip._vendor": {"level": vendored_log_level}}, + } + ) + + return level_number diff --git a/venv/lib/python3.12/site-packages/pip/_internal/utils/misc.py b/venv/lib/python3.12/site-packages/pip/_internal/utils/misc.py new file mode 100644 index 0000000..1ad3f61 --- /dev/null +++ b/venv/lib/python3.12/site-packages/pip/_internal/utils/misc.py @@ -0,0 +1,783 @@ +import contextlib +import errno +import getpass +import hashlib +import io +import logging +import os +import posixpath +import shutil +import stat +import sys +import sysconfig +import urllib.parse +from functools import partial +from io import StringIO +from itertools import filterfalse, tee, zip_longest +from pathlib import Path +from types import FunctionType, TracebackType +from typing import ( + Any, + BinaryIO, + Callable, + ContextManager, + Dict, + Generator, + Iterable, + Iterator, + List, + Optional, + TextIO, + Tuple, + Type, + TypeVar, + Union, + cast, +) + +from pip._vendor.packaging.requirements import Requirement +from pip._vendor.pyproject_hooks import BuildBackendHookCaller +from pip._vendor.tenacity import retry, stop_after_delay, wait_fixed + +from pip import __version__ +from pip._internal.exceptions import CommandError, ExternallyManagedEnvironment +from pip._internal.locations import get_major_minor_version +from pip._internal.utils.compat import WINDOWS +from pip._internal.utils.virtualenv import running_under_virtualenv + +__all__ = [ + "rmtree", + "display_path", + "backup_dir", + "ask", + "splitext", + "format_size", + "is_installable_dir", + "normalize_path", + "renames", + "get_prog", + "captured_stdout", + "ensure_dir", + "remove_auth_from_url", + "check_externally_managed", + "ConfiguredBuildBackendHookCaller", +] + +logger = logging.getLogger(__name__) + +T = TypeVar("T") +ExcInfo = Tuple[Type[BaseException], BaseException, TracebackType] +VersionInfo = Tuple[int, int, int] +NetlocTuple = Tuple[str, Tuple[Optional[str], Optional[str]]] +OnExc = Callable[[FunctionType, Path, BaseException], Any] +OnErr = Callable[[FunctionType, Path, ExcInfo], Any] + + +def get_pip_version() -> str: + pip_pkg_dir = os.path.join(os.path.dirname(__file__), "..", "..") + pip_pkg_dir = os.path.abspath(pip_pkg_dir) + + return f"pip {__version__} from {pip_pkg_dir} (python {get_major_minor_version()})" + + +def normalize_version_info(py_version_info: Tuple[int, ...]) -> Tuple[int, int, int]: + """ + Convert a tuple of ints representing a Python version to one of length + three. + + :param py_version_info: a tuple of ints representing a Python version, + or None to specify no version. The tuple can have any length. + + :return: a tuple of length three if `py_version_info` is non-None. + Otherwise, return `py_version_info` unchanged (i.e. None). + """ + if len(py_version_info) < 3: + py_version_info += (3 - len(py_version_info)) * (0,) + elif len(py_version_info) > 3: + py_version_info = py_version_info[:3] + + return cast("VersionInfo", py_version_info) + + +def ensure_dir(path: str) -> None: + """os.path.makedirs without EEXIST.""" + try: + os.makedirs(path) + except OSError as e: + # Windows can raise spurious ENOTEMPTY errors. See #6426. + if e.errno != errno.EEXIST and e.errno != errno.ENOTEMPTY: + raise + + +def get_prog() -> str: + try: + prog = os.path.basename(sys.argv[0]) + if prog in ("__main__.py", "-c"): + return f"{sys.executable} -m pip" + else: + return prog + except (AttributeError, TypeError, IndexError): + pass + return "pip" + + +# Retry every half second for up to 3 seconds +# Tenacity raises RetryError by default, explicitly raise the original exception +@retry(reraise=True, stop=stop_after_delay(3), wait=wait_fixed(0.5)) +def rmtree( + dir: str, + ignore_errors: bool = False, + onexc: Optional[OnExc] = None, +) -> None: + if ignore_errors: + onexc = _onerror_ignore + if onexc is None: + onexc = _onerror_reraise + handler: OnErr = partial( + # `[func, path, Union[ExcInfo, BaseException]] -> Any` is equivalent to + # `Union[([func, path, ExcInfo] -> Any), ([func, path, BaseException] -> Any)]`. + cast(Union[OnExc, OnErr], rmtree_errorhandler), + onexc=onexc, + ) + if sys.version_info >= (3, 12): + # See https://docs.python.org/3.12/whatsnew/3.12.html#shutil. + shutil.rmtree(dir, onexc=handler) # type: ignore + else: + shutil.rmtree(dir, onerror=handler) # type: ignore + + +def _onerror_ignore(*_args: Any) -> None: + pass + + +def _onerror_reraise(*_args: Any) -> None: + raise + + +def rmtree_errorhandler( + func: FunctionType, + path: Path, + exc_info: Union[ExcInfo, BaseException], + *, + onexc: OnExc = _onerror_reraise, +) -> None: + """ + `rmtree` error handler to 'force' a file remove (i.e. like `rm -f`). + + * If a file is readonly then it's write flag is set and operation is + retried. + + * `onerror` is the original callback from `rmtree(... onerror=onerror)` + that is chained at the end if the "rm -f" still fails. + """ + try: + st_mode = os.stat(path).st_mode + except OSError: + # it's equivalent to os.path.exists + return + + if not st_mode & stat.S_IWRITE: + # convert to read/write + try: + os.chmod(path, st_mode | stat.S_IWRITE) + except OSError: + pass + else: + # use the original function to repeat the operation + try: + func(path) + return + except OSError: + pass + + if not isinstance(exc_info, BaseException): + _, exc_info, _ = exc_info + onexc(func, path, exc_info) + + +def display_path(path: str) -> str: + """Gives the display value for a given path, making it relative to cwd + if possible.""" + path = os.path.normcase(os.path.abspath(path)) + if path.startswith(os.getcwd() + os.path.sep): + path = "." + path[len(os.getcwd()) :] + return path + + +def backup_dir(dir: str, ext: str = ".bak") -> str: + """Figure out the name of a directory to back up the given dir to + (adding .bak, .bak2, etc)""" + n = 1 + extension = ext + while os.path.exists(dir + extension): + n += 1 + extension = ext + str(n) + return dir + extension + + +def ask_path_exists(message: str, options: Iterable[str]) -> str: + for action in os.environ.get("PIP_EXISTS_ACTION", "").split(): + if action in options: + return action + return ask(message, options) + + +def _check_no_input(message: str) -> None: + """Raise an error if no input is allowed.""" + if os.environ.get("PIP_NO_INPUT"): + raise Exception( + f"No input was expected ($PIP_NO_INPUT set); question: {message}" + ) + + +def ask(message: str, options: Iterable[str]) -> str: + """Ask the message interactively, with the given possible responses""" + while 1: + _check_no_input(message) + response = input(message) + response = response.strip().lower() + if response not in options: + print( + "Your response ({!r}) was not one of the expected responses: " + "{}".format(response, ", ".join(options)) + ) + else: + return response + + +def ask_input(message: str) -> str: + """Ask for input interactively.""" + _check_no_input(message) + return input(message) + + +def ask_password(message: str) -> str: + """Ask for a password interactively.""" + _check_no_input(message) + return getpass.getpass(message) + + +def strtobool(val: str) -> int: + """Convert a string representation of truth to true (1) or false (0). + + True values are 'y', 'yes', 't', 'true', 'on', and '1'; false values + are 'n', 'no', 'f', 'false', 'off', and '0'. Raises ValueError if + 'val' is anything else. + """ + val = val.lower() + if val in ("y", "yes", "t", "true", "on", "1"): + return 1 + elif val in ("n", "no", "f", "false", "off", "0"): + return 0 + else: + raise ValueError(f"invalid truth value {val!r}") + + +def format_size(bytes: float) -> str: + if bytes > 1000 * 1000: + return f"{bytes / 1000.0 / 1000:.1f} MB" + elif bytes > 10 * 1000: + return f"{int(bytes / 1000)} kB" + elif bytes > 1000: + return f"{bytes / 1000.0:.1f} kB" + else: + return f"{int(bytes)} bytes" + + +def tabulate(rows: Iterable[Iterable[Any]]) -> Tuple[List[str], List[int]]: + """Return a list of formatted rows and a list of column sizes. + + For example:: + + >>> tabulate([['foobar', 2000], [0xdeadbeef]]) + (['foobar 2000', '3735928559'], [10, 4]) + """ + rows = [tuple(map(str, row)) for row in rows] + sizes = [max(map(len, col)) for col in zip_longest(*rows, fillvalue="")] + table = [" ".join(map(str.ljust, row, sizes)).rstrip() for row in rows] + return table, sizes + + +def is_installable_dir(path: str) -> bool: + """Is path is a directory containing pyproject.toml or setup.py? + + If pyproject.toml exists, this is a PEP 517 project. Otherwise we look for + a legacy setuptools layout by identifying setup.py. We don't check for the + setup.cfg because using it without setup.py is only available for PEP 517 + projects, which are already covered by the pyproject.toml check. + """ + if not os.path.isdir(path): + return False + if os.path.isfile(os.path.join(path, "pyproject.toml")): + return True + if os.path.isfile(os.path.join(path, "setup.py")): + return True + return False + + +def read_chunks( + file: BinaryIO, size: int = io.DEFAULT_BUFFER_SIZE +) -> Generator[bytes, None, None]: + """Yield pieces of data from a file-like object until EOF.""" + while True: + chunk = file.read(size) + if not chunk: + break + yield chunk + + +def normalize_path(path: str, resolve_symlinks: bool = True) -> str: + """ + Convert a path to its canonical, case-normalized, absolute version. + + """ + path = os.path.expanduser(path) + if resolve_symlinks: + path = os.path.realpath(path) + else: + path = os.path.abspath(path) + return os.path.normcase(path) + + +def splitext(path: str) -> Tuple[str, str]: + """Like os.path.splitext, but take off .tar too""" + base, ext = posixpath.splitext(path) + if base.lower().endswith(".tar"): + ext = base[-4:] + ext + base = base[:-4] + return base, ext + + +def renames(old: str, new: str) -> None: + """Like os.renames(), but handles renaming across devices.""" + # Implementation borrowed from os.renames(). + head, tail = os.path.split(new) + if head and tail and not os.path.exists(head): + os.makedirs(head) + + shutil.move(old, new) + + head, tail = os.path.split(old) + if head and tail: + try: + os.removedirs(head) + except OSError: + pass + + +def is_local(path: str) -> bool: + """ + Return True if path is within sys.prefix, if we're running in a virtualenv. + + If we're not in a virtualenv, all paths are considered "local." + + Caution: this function assumes the head of path has been normalized + with normalize_path. + """ + if not running_under_virtualenv(): + return True + return path.startswith(normalize_path(sys.prefix)) + + +def write_output(msg: Any, *args: Any) -> None: + logger.info(msg, *args) + + +class StreamWrapper(StringIO): + orig_stream: TextIO + + @classmethod + def from_stream(cls, orig_stream: TextIO) -> "StreamWrapper": + ret = cls() + ret.orig_stream = orig_stream + return ret + + # compileall.compile_dir() needs stdout.encoding to print to stdout + # type ignore is because TextIOBase.encoding is writeable + @property + def encoding(self) -> str: # type: ignore + return self.orig_stream.encoding + + +@contextlib.contextmanager +def captured_output(stream_name: str) -> Generator[StreamWrapper, None, None]: + """Return a context manager used by captured_stdout/stdin/stderr + that temporarily replaces the sys stream *stream_name* with a StringIO. + + Taken from Lib/support/__init__.py in the CPython repo. + """ + orig_stdout = getattr(sys, stream_name) + setattr(sys, stream_name, StreamWrapper.from_stream(orig_stdout)) + try: + yield getattr(sys, stream_name) + finally: + setattr(sys, stream_name, orig_stdout) + + +def captured_stdout() -> ContextManager[StreamWrapper]: + """Capture the output of sys.stdout: + + with captured_stdout() as stdout: + print('hello') + self.assertEqual(stdout.getvalue(), 'hello\n') + + Taken from Lib/support/__init__.py in the CPython repo. + """ + return captured_output("stdout") + + +def captured_stderr() -> ContextManager[StreamWrapper]: + """ + See captured_stdout(). + """ + return captured_output("stderr") + + +# Simulates an enum +def enum(*sequential: Any, **named: Any) -> Type[Any]: + enums = dict(zip(sequential, range(len(sequential))), **named) + reverse = {value: key for key, value in enums.items()} + enums["reverse_mapping"] = reverse + return type("Enum", (), enums) + + +def build_netloc(host: str, port: Optional[int]) -> str: + """ + Build a netloc from a host-port pair + """ + if port is None: + return host + if ":" in host: + # Only wrap host with square brackets when it is IPv6 + host = f"[{host}]" + return f"{host}:{port}" + + +def build_url_from_netloc(netloc: str, scheme: str = "https") -> str: + """ + Build a full URL from a netloc. + """ + if netloc.count(":") >= 2 and "@" not in netloc and "[" not in netloc: + # It must be a bare IPv6 address, so wrap it with brackets. + netloc = f"[{netloc}]" + return f"{scheme}://{netloc}" + + +def parse_netloc(netloc: str) -> Tuple[Optional[str], Optional[int]]: + """ + Return the host-port pair from a netloc. + """ + url = build_url_from_netloc(netloc) + parsed = urllib.parse.urlparse(url) + return parsed.hostname, parsed.port + + +def split_auth_from_netloc(netloc: str) -> NetlocTuple: + """ + Parse out and remove the auth information from a netloc. + + Returns: (netloc, (username, password)). + """ + if "@" not in netloc: + return netloc, (None, None) + + # Split from the right because that's how urllib.parse.urlsplit() + # behaves if more than one @ is present (which can be checked using + # the password attribute of urlsplit()'s return value). + auth, netloc = netloc.rsplit("@", 1) + pw: Optional[str] = None + if ":" in auth: + # Split from the left because that's how urllib.parse.urlsplit() + # behaves if more than one : is present (which again can be checked + # using the password attribute of the return value) + user, pw = auth.split(":", 1) + else: + user, pw = auth, None + + user = urllib.parse.unquote(user) + if pw is not None: + pw = urllib.parse.unquote(pw) + + return netloc, (user, pw) + + +def redact_netloc(netloc: str) -> str: + """ + Replace the sensitive data in a netloc with "****", if it exists. + + For example: + - "user:pass@example.com" returns "user:****@example.com" + - "accesstoken@example.com" returns "****@example.com" + """ + netloc, (user, password) = split_auth_from_netloc(netloc) + if user is None: + return netloc + if password is None: + user = "****" + password = "" + else: + user = urllib.parse.quote(user) + password = ":****" + return f"{user}{password}@{netloc}" + + +def _transform_url( + url: str, transform_netloc: Callable[[str], Tuple[Any, ...]] +) -> Tuple[str, NetlocTuple]: + """Transform and replace netloc in a url. + + transform_netloc is a function taking the netloc and returning a + tuple. The first element of this tuple is the new netloc. The + entire tuple is returned. + + Returns a tuple containing the transformed url as item 0 and the + original tuple returned by transform_netloc as item 1. + """ + purl = urllib.parse.urlsplit(url) + netloc_tuple = transform_netloc(purl.netloc) + # stripped url + url_pieces = (purl.scheme, netloc_tuple[0], purl.path, purl.query, purl.fragment) + surl = urllib.parse.urlunsplit(url_pieces) + return surl, cast("NetlocTuple", netloc_tuple) + + +def _get_netloc(netloc: str) -> NetlocTuple: + return split_auth_from_netloc(netloc) + + +def _redact_netloc(netloc: str) -> Tuple[str]: + return (redact_netloc(netloc),) + + +def split_auth_netloc_from_url( + url: str, +) -> Tuple[str, str, Tuple[Optional[str], Optional[str]]]: + """ + Parse a url into separate netloc, auth, and url with no auth. + + Returns: (url_without_auth, netloc, (username, password)) + """ + url_without_auth, (netloc, auth) = _transform_url(url, _get_netloc) + return url_without_auth, netloc, auth + + +def remove_auth_from_url(url: str) -> str: + """Return a copy of url with 'username:password@' removed.""" + # username/pass params are passed to subversion through flags + # and are not recognized in the url. + return _transform_url(url, _get_netloc)[0] + + +def redact_auth_from_url(url: str) -> str: + """Replace the password in a given url with ****.""" + return _transform_url(url, _redact_netloc)[0] + + +def redact_auth_from_requirement(req: Requirement) -> str: + """Replace the password in a given requirement url with ****.""" + if not req.url: + return str(req) + return str(req).replace(req.url, redact_auth_from_url(req.url)) + + +class HiddenText: + def __init__(self, secret: str, redacted: str) -> None: + self.secret = secret + self.redacted = redacted + + def __repr__(self) -> str: + return f"" + + def __str__(self) -> str: + return self.redacted + + # This is useful for testing. + def __eq__(self, other: Any) -> bool: + if type(self) != type(other): + return False + + # The string being used for redaction doesn't also have to match, + # just the raw, original string. + return self.secret == other.secret + + +def hide_value(value: str) -> HiddenText: + return HiddenText(value, redacted="****") + + +def hide_url(url: str) -> HiddenText: + redacted = redact_auth_from_url(url) + return HiddenText(url, redacted=redacted) + + +def protect_pip_from_modification_on_windows(modifying_pip: bool) -> None: + """Protection of pip.exe from modification on Windows + + On Windows, any operation modifying pip should be run as: + python -m pip ... + """ + pip_names = [ + "pip", + f"pip{sys.version_info.major}", + f"pip{sys.version_info.major}.{sys.version_info.minor}", + ] + + # See https://github.com/pypa/pip/issues/1299 for more discussion + should_show_use_python_msg = ( + modifying_pip and WINDOWS and os.path.basename(sys.argv[0]) in pip_names + ) + + if should_show_use_python_msg: + new_command = [sys.executable, "-m", "pip"] + sys.argv[1:] + raise CommandError( + "To modify pip, please run the following command:\n{}".format( + " ".join(new_command) + ) + ) + + +def check_externally_managed() -> None: + """Check whether the current environment is externally managed. + + If the ``EXTERNALLY-MANAGED`` config file is found, the current environment + is considered externally managed, and an ExternallyManagedEnvironment is + raised. + """ + if running_under_virtualenv(): + return + marker = os.path.join(sysconfig.get_path("stdlib"), "EXTERNALLY-MANAGED") + if not os.path.isfile(marker): + return + raise ExternallyManagedEnvironment.from_config(marker) + + +def is_console_interactive() -> bool: + """Is this console interactive?""" + return sys.stdin is not None and sys.stdin.isatty() + + +def hash_file(path: str, blocksize: int = 1 << 20) -> Tuple[Any, int]: + """Return (hash, length) for path using hashlib.sha256()""" + + h = hashlib.sha256() + length = 0 + with open(path, "rb") as f: + for block in read_chunks(f, size=blocksize): + length += len(block) + h.update(block) + return h, length + + +def pairwise(iterable: Iterable[Any]) -> Iterator[Tuple[Any, Any]]: + """ + Return paired elements. + + For example: + s -> (s0, s1), (s2, s3), (s4, s5), ... + """ + iterable = iter(iterable) + return zip_longest(iterable, iterable) + + +def partition( + pred: Callable[[T], bool], + iterable: Iterable[T], +) -> Tuple[Iterable[T], Iterable[T]]: + """ + Use a predicate to partition entries into false entries and true entries, + like + + partition(is_odd, range(10)) --> 0 2 4 6 8 and 1 3 5 7 9 + """ + t1, t2 = tee(iterable) + return filterfalse(pred, t1), filter(pred, t2) + + +class ConfiguredBuildBackendHookCaller(BuildBackendHookCaller): + def __init__( + self, + config_holder: Any, + source_dir: str, + build_backend: str, + backend_path: Optional[str] = None, + runner: Optional[Callable[..., None]] = None, + python_executable: Optional[str] = None, + ): + super().__init__( + source_dir, build_backend, backend_path, runner, python_executable + ) + self.config_holder = config_holder + + def build_wheel( + self, + wheel_directory: str, + config_settings: Optional[Dict[str, Union[str, List[str]]]] = None, + metadata_directory: Optional[str] = None, + ) -> str: + cs = self.config_holder.config_settings + return super().build_wheel( + wheel_directory, config_settings=cs, metadata_directory=metadata_directory + ) + + def build_sdist( + self, + sdist_directory: str, + config_settings: Optional[Dict[str, Union[str, List[str]]]] = None, + ) -> str: + cs = self.config_holder.config_settings + return super().build_sdist(sdist_directory, config_settings=cs) + + def build_editable( + self, + wheel_directory: str, + config_settings: Optional[Dict[str, Union[str, List[str]]]] = None, + metadata_directory: Optional[str] = None, + ) -> str: + cs = self.config_holder.config_settings + return super().build_editable( + wheel_directory, config_settings=cs, metadata_directory=metadata_directory + ) + + def get_requires_for_build_wheel( + self, config_settings: Optional[Dict[str, Union[str, List[str]]]] = None + ) -> List[str]: + cs = self.config_holder.config_settings + return super().get_requires_for_build_wheel(config_settings=cs) + + def get_requires_for_build_sdist( + self, config_settings: Optional[Dict[str, Union[str, List[str]]]] = None + ) -> List[str]: + cs = self.config_holder.config_settings + return super().get_requires_for_build_sdist(config_settings=cs) + + def get_requires_for_build_editable( + self, config_settings: Optional[Dict[str, Union[str, List[str]]]] = None + ) -> List[str]: + cs = self.config_holder.config_settings + return super().get_requires_for_build_editable(config_settings=cs) + + def prepare_metadata_for_build_wheel( + self, + metadata_directory: str, + config_settings: Optional[Dict[str, Union[str, List[str]]]] = None, + _allow_fallback: bool = True, + ) -> str: + cs = self.config_holder.config_settings + return super().prepare_metadata_for_build_wheel( + metadata_directory=metadata_directory, + config_settings=cs, + _allow_fallback=_allow_fallback, + ) + + def prepare_metadata_for_build_editable( + self, + metadata_directory: str, + config_settings: Optional[Dict[str, Union[str, List[str]]]] = None, + _allow_fallback: bool = True, + ) -> str: + cs = self.config_holder.config_settings + return super().prepare_metadata_for_build_editable( + metadata_directory=metadata_directory, + config_settings=cs, + _allow_fallback=_allow_fallback, + ) diff --git a/venv/lib/python3.12/site-packages/pip/_internal/utils/models.py b/venv/lib/python3.12/site-packages/pip/_internal/utils/models.py new file mode 100644 index 0000000..b6bb21a --- /dev/null +++ b/venv/lib/python3.12/site-packages/pip/_internal/utils/models.py @@ -0,0 +1,39 @@ +"""Utilities for defining models +""" + +import operator +from typing import Any, Callable, Type + + +class KeyBasedCompareMixin: + """Provides comparison capabilities that is based on a key""" + + __slots__ = ["_compare_key", "_defining_class"] + + def __init__(self, key: Any, defining_class: Type["KeyBasedCompareMixin"]) -> None: + self._compare_key = key + self._defining_class = defining_class + + def __hash__(self) -> int: + return hash(self._compare_key) + + def __lt__(self, other: Any) -> bool: + return self._compare(other, operator.__lt__) + + def __le__(self, other: Any) -> bool: + return self._compare(other, operator.__le__) + + def __gt__(self, other: Any) -> bool: + return self._compare(other, operator.__gt__) + + def __ge__(self, other: Any) -> bool: + return self._compare(other, operator.__ge__) + + def __eq__(self, other: Any) -> bool: + return self._compare(other, operator.__eq__) + + def _compare(self, other: Any, method: Callable[[Any, Any], bool]) -> bool: + if not isinstance(other, self._defining_class): + return NotImplemented + + return method(self._compare_key, other._compare_key) diff --git a/venv/lib/python3.12/site-packages/pip/_internal/utils/packaging.py b/venv/lib/python3.12/site-packages/pip/_internal/utils/packaging.py new file mode 100644 index 0000000..b9f6af4 --- /dev/null +++ b/venv/lib/python3.12/site-packages/pip/_internal/utils/packaging.py @@ -0,0 +1,57 @@ +import functools +import logging +import re +from typing import NewType, Optional, Tuple, cast + +from pip._vendor.packaging import specifiers, version +from pip._vendor.packaging.requirements import Requirement + +NormalizedExtra = NewType("NormalizedExtra", str) + +logger = logging.getLogger(__name__) + + +def check_requires_python( + requires_python: Optional[str], version_info: Tuple[int, ...] +) -> bool: + """ + Check if the given Python version matches a "Requires-Python" specifier. + + :param version_info: A 3-tuple of ints representing a Python + major-minor-micro version to check (e.g. `sys.version_info[:3]`). + + :return: `True` if the given Python version satisfies the requirement. + Otherwise, return `False`. + + :raises InvalidSpecifier: If `requires_python` has an invalid format. + """ + if requires_python is None: + # The package provides no information + return True + requires_python_specifier = specifiers.SpecifierSet(requires_python) + + python_version = version.parse(".".join(map(str, version_info))) + return python_version in requires_python_specifier + + +@functools.lru_cache(maxsize=512) +def get_requirement(req_string: str) -> Requirement: + """Construct a packaging.Requirement object with caching""" + # Parsing requirement strings is expensive, and is also expected to happen + # with a low diversity of different arguments (at least relative the number + # constructed). This method adds a cache to requirement object creation to + # minimize repeated parsing of the same string to construct equivalent + # Requirement objects. + return Requirement(req_string) + + +def safe_extra(extra: str) -> NormalizedExtra: + """Convert an arbitrary string to a standard 'extra' name + + Any runs of non-alphanumeric characters are replaced with a single '_', + and the result is always lowercased. + + This function is duplicated from ``pkg_resources``. Note that this is not + the same to either ``canonicalize_name`` or ``_egg_link_name``. + """ + return cast(NormalizedExtra, re.sub("[^A-Za-z0-9.-]+", "_", extra).lower()) diff --git a/venv/lib/python3.12/site-packages/pip/_internal/utils/setuptools_build.py b/venv/lib/python3.12/site-packages/pip/_internal/utils/setuptools_build.py new file mode 100644 index 0000000..96d1b24 --- /dev/null +++ b/venv/lib/python3.12/site-packages/pip/_internal/utils/setuptools_build.py @@ -0,0 +1,146 @@ +import sys +import textwrap +from typing import List, Optional, Sequence + +# Shim to wrap setup.py invocation with setuptools +# Note that __file__ is handled via two {!r} *and* %r, to ensure that paths on +# Windows are correctly handled (it should be "C:\\Users" not "C:\Users"). +_SETUPTOOLS_SHIM = textwrap.dedent( + """ + exec(compile(''' + # This is -- a caller that pip uses to run setup.py + # + # - It imports setuptools before invoking setup.py, to enable projects that directly + # import from `distutils.core` to work with newer packaging standards. + # - It provides a clear error message when setuptools is not installed. + # - It sets `sys.argv[0]` to the underlying `setup.py`, when invoking `setup.py` so + # setuptools doesn't think the script is `-c`. This avoids the following warning: + # manifest_maker: standard file '-c' not found". + # - It generates a shim setup.py, for handling setup.cfg-only projects. + import os, sys, tokenize + + try: + import setuptools + except ImportError as error: + print( + "ERROR: Can not execute `setup.py` since setuptools is not available in " + "the build environment.", + file=sys.stderr, + ) + sys.exit(1) + + __file__ = %r + sys.argv[0] = __file__ + + if os.path.exists(__file__): + filename = __file__ + with tokenize.open(__file__) as f: + setup_py_code = f.read() + else: + filename = "" + setup_py_code = "from setuptools import setup; setup()" + + exec(compile(setup_py_code, filename, "exec")) + ''' % ({!r},), "", "exec")) + """ +).rstrip() + + +def make_setuptools_shim_args( + setup_py_path: str, + global_options: Optional[Sequence[str]] = None, + no_user_config: bool = False, + unbuffered_output: bool = False, +) -> List[str]: + """ + Get setuptools command arguments with shim wrapped setup file invocation. + + :param setup_py_path: The path to setup.py to be wrapped. + :param global_options: Additional global options. + :param no_user_config: If True, disables personal user configuration. + :param unbuffered_output: If True, adds the unbuffered switch to the + argument list. + """ + args = [sys.executable] + if unbuffered_output: + args += ["-u"] + args += ["-c", _SETUPTOOLS_SHIM.format(setup_py_path)] + if global_options: + args += global_options + if no_user_config: + args += ["--no-user-cfg"] + return args + + +def make_setuptools_bdist_wheel_args( + setup_py_path: str, + global_options: Sequence[str], + build_options: Sequence[str], + destination_dir: str, +) -> List[str]: + # NOTE: Eventually, we'd want to also -S to the flags here, when we're + # isolating. Currently, it breaks Python in virtualenvs, because it + # relies on site.py to find parts of the standard library outside the + # virtualenv. + args = make_setuptools_shim_args( + setup_py_path, global_options=global_options, unbuffered_output=True + ) + args += ["bdist_wheel", "-d", destination_dir] + args += build_options + return args + + +def make_setuptools_clean_args( + setup_py_path: str, + global_options: Sequence[str], +) -> List[str]: + args = make_setuptools_shim_args( + setup_py_path, global_options=global_options, unbuffered_output=True + ) + args += ["clean", "--all"] + return args + + +def make_setuptools_develop_args( + setup_py_path: str, + *, + global_options: Sequence[str], + no_user_config: bool, + prefix: Optional[str], + home: Optional[str], + use_user_site: bool, +) -> List[str]: + assert not (use_user_site and prefix) + + args = make_setuptools_shim_args( + setup_py_path, + global_options=global_options, + no_user_config=no_user_config, + ) + + args += ["develop", "--no-deps"] + + if prefix: + args += ["--prefix", prefix] + if home is not None: + args += ["--install-dir", home] + + if use_user_site: + args += ["--user", "--prefix="] + + return args + + +def make_setuptools_egg_info_args( + setup_py_path: str, + egg_info_dir: Optional[str], + no_user_config: bool, +) -> List[str]: + args = make_setuptools_shim_args(setup_py_path, no_user_config=no_user_config) + + args += ["egg_info"] + + if egg_info_dir: + args += ["--egg-base", egg_info_dir] + + return args diff --git a/venv/lib/python3.12/site-packages/pip/_internal/utils/subprocess.py b/venv/lib/python3.12/site-packages/pip/_internal/utils/subprocess.py new file mode 100644 index 0000000..79580b0 --- /dev/null +++ b/venv/lib/python3.12/site-packages/pip/_internal/utils/subprocess.py @@ -0,0 +1,260 @@ +import logging +import os +import shlex +import subprocess +from typing import ( + TYPE_CHECKING, + Any, + Callable, + Iterable, + List, + Mapping, + Optional, + Union, +) + +from pip._vendor.rich.markup import escape + +from pip._internal.cli.spinners import SpinnerInterface, open_spinner +from pip._internal.exceptions import InstallationSubprocessError +from pip._internal.utils.logging import VERBOSE, subprocess_logger +from pip._internal.utils.misc import HiddenText + +if TYPE_CHECKING: + # Literal was introduced in Python 3.8. + # + # TODO: Remove `if TYPE_CHECKING` when dropping support for Python 3.7. + from typing import Literal + +CommandArgs = List[Union[str, HiddenText]] + + +def make_command(*args: Union[str, HiddenText, CommandArgs]) -> CommandArgs: + """ + Create a CommandArgs object. + """ + command_args: CommandArgs = [] + for arg in args: + # Check for list instead of CommandArgs since CommandArgs is + # only known during type-checking. + if isinstance(arg, list): + command_args.extend(arg) + else: + # Otherwise, arg is str or HiddenText. + command_args.append(arg) + + return command_args + + +def format_command_args(args: Union[List[str], CommandArgs]) -> str: + """ + Format command arguments for display. + """ + # For HiddenText arguments, display the redacted form by calling str(). + # Also, we don't apply str() to arguments that aren't HiddenText since + # this can trigger a UnicodeDecodeError in Python 2 if the argument + # has type unicode and includes a non-ascii character. (The type + # checker doesn't ensure the annotations are correct in all cases.) + return " ".join( + shlex.quote(str(arg)) if isinstance(arg, HiddenText) else shlex.quote(arg) + for arg in args + ) + + +def reveal_command_args(args: Union[List[str], CommandArgs]) -> List[str]: + """ + Return the arguments in their raw, unredacted form. + """ + return [arg.secret if isinstance(arg, HiddenText) else arg for arg in args] + + +def call_subprocess( + cmd: Union[List[str], CommandArgs], + show_stdout: bool = False, + cwd: Optional[str] = None, + on_returncode: 'Literal["raise", "warn", "ignore"]' = "raise", + extra_ok_returncodes: Optional[Iterable[int]] = None, + extra_environ: Optional[Mapping[str, Any]] = None, + unset_environ: Optional[Iterable[str]] = None, + spinner: Optional[SpinnerInterface] = None, + log_failed_cmd: Optional[bool] = True, + stdout_only: Optional[bool] = False, + *, + command_desc: str, +) -> str: + """ + Args: + show_stdout: if true, use INFO to log the subprocess's stderr and + stdout streams. Otherwise, use DEBUG. Defaults to False. + extra_ok_returncodes: an iterable of integer return codes that are + acceptable, in addition to 0. Defaults to None, which means []. + unset_environ: an iterable of environment variable names to unset + prior to calling subprocess.Popen(). + log_failed_cmd: if false, failed commands are not logged, only raised. + stdout_only: if true, return only stdout, else return both. When true, + logging of both stdout and stderr occurs when the subprocess has + terminated, else logging occurs as subprocess output is produced. + """ + if extra_ok_returncodes is None: + extra_ok_returncodes = [] + if unset_environ is None: + unset_environ = [] + # Most places in pip use show_stdout=False. What this means is-- + # + # - We connect the child's output (combined stderr and stdout) to a + # single pipe, which we read. + # - We log this output to stderr at DEBUG level as it is received. + # - If DEBUG logging isn't enabled (e.g. if --verbose logging wasn't + # requested), then we show a spinner so the user can still see the + # subprocess is in progress. + # - If the subprocess exits with an error, we log the output to stderr + # at ERROR level if it hasn't already been displayed to the console + # (e.g. if --verbose logging wasn't enabled). This way we don't log + # the output to the console twice. + # + # If show_stdout=True, then the above is still done, but with DEBUG + # replaced by INFO. + if show_stdout: + # Then log the subprocess output at INFO level. + log_subprocess: Callable[..., None] = subprocess_logger.info + used_level = logging.INFO + else: + # Then log the subprocess output using VERBOSE. This also ensures + # it will be logged to the log file (aka user_log), if enabled. + log_subprocess = subprocess_logger.verbose + used_level = VERBOSE + + # Whether the subprocess will be visible in the console. + showing_subprocess = subprocess_logger.getEffectiveLevel() <= used_level + + # Only use the spinner if we're not showing the subprocess output + # and we have a spinner. + use_spinner = not showing_subprocess and spinner is not None + + log_subprocess("Running command %s", command_desc) + env = os.environ.copy() + if extra_environ: + env.update(extra_environ) + for name in unset_environ: + env.pop(name, None) + try: + proc = subprocess.Popen( + # Convert HiddenText objects to the underlying str. + reveal_command_args(cmd), + stdin=subprocess.PIPE, + stdout=subprocess.PIPE, + stderr=subprocess.STDOUT if not stdout_only else subprocess.PIPE, + cwd=cwd, + env=env, + errors="backslashreplace", + ) + except Exception as exc: + if log_failed_cmd: + subprocess_logger.critical( + "Error %s while executing command %s", + exc, + command_desc, + ) + raise + all_output = [] + if not stdout_only: + assert proc.stdout + assert proc.stdin + proc.stdin.close() + # In this mode, stdout and stderr are in the same pipe. + while True: + line: str = proc.stdout.readline() + if not line: + break + line = line.rstrip() + all_output.append(line + "\n") + + # Show the line immediately. + log_subprocess(line) + # Update the spinner. + if use_spinner: + assert spinner + spinner.spin() + try: + proc.wait() + finally: + if proc.stdout: + proc.stdout.close() + output = "".join(all_output) + else: + # In this mode, stdout and stderr are in different pipes. + # We must use communicate() which is the only safe way to read both. + out, err = proc.communicate() + # log line by line to preserve pip log indenting + for out_line in out.splitlines(): + log_subprocess(out_line) + all_output.append(out) + for err_line in err.splitlines(): + log_subprocess(err_line) + all_output.append(err) + output = out + + proc_had_error = proc.returncode and proc.returncode not in extra_ok_returncodes + if use_spinner: + assert spinner + if proc_had_error: + spinner.finish("error") + else: + spinner.finish("done") + if proc_had_error: + if on_returncode == "raise": + error = InstallationSubprocessError( + command_description=command_desc, + exit_code=proc.returncode, + output_lines=all_output if not showing_subprocess else None, + ) + if log_failed_cmd: + subprocess_logger.error("%s", error, extra={"rich": True}) + subprocess_logger.verbose( + "[bold magenta]full command[/]: [blue]%s[/]", + escape(format_command_args(cmd)), + extra={"markup": True}, + ) + subprocess_logger.verbose( + "[bold magenta]cwd[/]: %s", + escape(cwd or "[inherit]"), + extra={"markup": True}, + ) + + raise error + elif on_returncode == "warn": + subprocess_logger.warning( + 'Command "%s" had error code %s in %s', + command_desc, + proc.returncode, + cwd, + ) + elif on_returncode == "ignore": + pass + else: + raise ValueError(f"Invalid value: on_returncode={on_returncode!r}") + return output + + +def runner_with_spinner_message(message: str) -> Callable[..., None]: + """Provide a subprocess_runner that shows a spinner message. + + Intended for use with for BuildBackendHookCaller. Thus, the runner has + an API that matches what's expected by BuildBackendHookCaller.subprocess_runner. + """ + + def runner( + cmd: List[str], + cwd: Optional[str] = None, + extra_environ: Optional[Mapping[str, Any]] = None, + ) -> None: + with open_spinner(message) as spinner: + call_subprocess( + cmd, + command_desc=message, + cwd=cwd, + extra_environ=extra_environ, + spinner=spinner, + ) + + return runner diff --git a/venv/lib/python3.12/site-packages/pip/_internal/utils/temp_dir.py b/venv/lib/python3.12/site-packages/pip/_internal/utils/temp_dir.py new file mode 100644 index 0000000..4eec5f3 --- /dev/null +++ b/venv/lib/python3.12/site-packages/pip/_internal/utils/temp_dir.py @@ -0,0 +1,296 @@ +import errno +import itertools +import logging +import os.path +import tempfile +import traceback +from contextlib import ExitStack, contextmanager +from pathlib import Path +from typing import ( + Any, + Callable, + Dict, + Generator, + List, + Optional, + TypeVar, + Union, +) + +from pip._internal.utils.misc import enum, rmtree + +logger = logging.getLogger(__name__) + +_T = TypeVar("_T", bound="TempDirectory") + + +# Kinds of temporary directories. Only needed for ones that are +# globally-managed. +tempdir_kinds = enum( + BUILD_ENV="build-env", + EPHEM_WHEEL_CACHE="ephem-wheel-cache", + REQ_BUILD="req-build", +) + + +_tempdir_manager: Optional[ExitStack] = None + + +@contextmanager +def global_tempdir_manager() -> Generator[None, None, None]: + global _tempdir_manager + with ExitStack() as stack: + old_tempdir_manager, _tempdir_manager = _tempdir_manager, stack + try: + yield + finally: + _tempdir_manager = old_tempdir_manager + + +class TempDirectoryTypeRegistry: + """Manages temp directory behavior""" + + def __init__(self) -> None: + self._should_delete: Dict[str, bool] = {} + + def set_delete(self, kind: str, value: bool) -> None: + """Indicate whether a TempDirectory of the given kind should be + auto-deleted. + """ + self._should_delete[kind] = value + + def get_delete(self, kind: str) -> bool: + """Get configured auto-delete flag for a given TempDirectory type, + default True. + """ + return self._should_delete.get(kind, True) + + +_tempdir_registry: Optional[TempDirectoryTypeRegistry] = None + + +@contextmanager +def tempdir_registry() -> Generator[TempDirectoryTypeRegistry, None, None]: + """Provides a scoped global tempdir registry that can be used to dictate + whether directories should be deleted. + """ + global _tempdir_registry + old_tempdir_registry = _tempdir_registry + _tempdir_registry = TempDirectoryTypeRegistry() + try: + yield _tempdir_registry + finally: + _tempdir_registry = old_tempdir_registry + + +class _Default: + pass + + +_default = _Default() + + +class TempDirectory: + """Helper class that owns and cleans up a temporary directory. + + This class can be used as a context manager or as an OO representation of a + temporary directory. + + Attributes: + path + Location to the created temporary directory + delete + Whether the directory should be deleted when exiting + (when used as a contextmanager) + + Methods: + cleanup() + Deletes the temporary directory + + When used as a context manager, if the delete attribute is True, on + exiting the context the temporary directory is deleted. + """ + + def __init__( + self, + path: Optional[str] = None, + delete: Union[bool, None, _Default] = _default, + kind: str = "temp", + globally_managed: bool = False, + ignore_cleanup_errors: bool = True, + ): + super().__init__() + + if delete is _default: + if path is not None: + # If we were given an explicit directory, resolve delete option + # now. + delete = False + else: + # Otherwise, we wait until cleanup and see what + # tempdir_registry says. + delete = None + + # The only time we specify path is in for editables where it + # is the value of the --src option. + if path is None: + path = self._create(kind) + + self._path = path + self._deleted = False + self.delete = delete + self.kind = kind + self.ignore_cleanup_errors = ignore_cleanup_errors + + if globally_managed: + assert _tempdir_manager is not None + _tempdir_manager.enter_context(self) + + @property + def path(self) -> str: + assert not self._deleted, f"Attempted to access deleted path: {self._path}" + return self._path + + def __repr__(self) -> str: + return f"<{self.__class__.__name__} {self.path!r}>" + + def __enter__(self: _T) -> _T: + return self + + def __exit__(self, exc: Any, value: Any, tb: Any) -> None: + if self.delete is not None: + delete = self.delete + elif _tempdir_registry: + delete = _tempdir_registry.get_delete(self.kind) + else: + delete = True + + if delete: + self.cleanup() + + def _create(self, kind: str) -> str: + """Create a temporary directory and store its path in self.path""" + # We realpath here because some systems have their default tmpdir + # symlinked to another directory. This tends to confuse build + # scripts, so we canonicalize the path by traversing potential + # symlinks here. + path = os.path.realpath(tempfile.mkdtemp(prefix=f"pip-{kind}-")) + logger.debug("Created temporary directory: %s", path) + return path + + def cleanup(self) -> None: + """Remove the temporary directory created and reset state""" + self._deleted = True + if not os.path.exists(self._path): + return + + errors: List[BaseException] = [] + + def onerror( + func: Callable[..., Any], + path: Path, + exc_val: BaseException, + ) -> None: + """Log a warning for a `rmtree` error and continue""" + formatted_exc = "\n".join( + traceback.format_exception_only(type(exc_val), exc_val) + ) + formatted_exc = formatted_exc.rstrip() # remove trailing new line + if func in (os.unlink, os.remove, os.rmdir): + logger.debug( + "Failed to remove a temporary file '%s' due to %s.\n", + path, + formatted_exc, + ) + else: + logger.debug("%s failed with %s.", func.__qualname__, formatted_exc) + errors.append(exc_val) + + if self.ignore_cleanup_errors: + try: + # first try with tenacity; retrying to handle ephemeral errors + rmtree(self._path, ignore_errors=False) + except OSError: + # last pass ignore/log all errors + rmtree(self._path, onexc=onerror) + if errors: + logger.warning( + "Failed to remove contents in a temporary directory '%s'.\n" + "You can safely remove it manually.", + self._path, + ) + else: + rmtree(self._path) + + +class AdjacentTempDirectory(TempDirectory): + """Helper class that creates a temporary directory adjacent to a real one. + + Attributes: + original + The original directory to create a temp directory for. + path + After calling create() or entering, contains the full + path to the temporary directory. + delete + Whether the directory should be deleted when exiting + (when used as a contextmanager) + + """ + + # The characters that may be used to name the temp directory + # We always prepend a ~ and then rotate through these until + # a usable name is found. + # pkg_resources raises a different error for .dist-info folder + # with leading '-' and invalid metadata + LEADING_CHARS = "-~.=%0123456789" + + def __init__(self, original: str, delete: Optional[bool] = None) -> None: + self.original = original.rstrip("/\\") + super().__init__(delete=delete) + + @classmethod + def _generate_names(cls, name: str) -> Generator[str, None, None]: + """Generates a series of temporary names. + + The algorithm replaces the leading characters in the name + with ones that are valid filesystem characters, but are not + valid package names (for both Python and pip definitions of + package). + """ + for i in range(1, len(name)): + for candidate in itertools.combinations_with_replacement( + cls.LEADING_CHARS, i - 1 + ): + new_name = "~" + "".join(candidate) + name[i:] + if new_name != name: + yield new_name + + # If we make it this far, we will have to make a longer name + for i in range(len(cls.LEADING_CHARS)): + for candidate in itertools.combinations_with_replacement( + cls.LEADING_CHARS, i + ): + new_name = "~" + "".join(candidate) + name + if new_name != name: + yield new_name + + def _create(self, kind: str) -> str: + root, name = os.path.split(self.original) + for candidate in self._generate_names(name): + path = os.path.join(root, candidate) + try: + os.mkdir(path) + except OSError as ex: + # Continue if the name exists already + if ex.errno != errno.EEXIST: + raise + else: + path = os.path.realpath(path) + break + else: + # Final fallback on the default behavior. + path = os.path.realpath(tempfile.mkdtemp(prefix=f"pip-{kind}-")) + + logger.debug("Created temporary directory: %s", path) + return path diff --git a/venv/lib/python3.12/site-packages/pip/_internal/utils/unpacking.py b/venv/lib/python3.12/site-packages/pip/_internal/utils/unpacking.py new file mode 100644 index 0000000..78b5c13 --- /dev/null +++ b/venv/lib/python3.12/site-packages/pip/_internal/utils/unpacking.py @@ -0,0 +1,257 @@ +"""Utilities related archives. +""" + +import logging +import os +import shutil +import stat +import tarfile +import zipfile +from typing import Iterable, List, Optional +from zipfile import ZipInfo + +from pip._internal.exceptions import InstallationError +from pip._internal.utils.filetypes import ( + BZ2_EXTENSIONS, + TAR_EXTENSIONS, + XZ_EXTENSIONS, + ZIP_EXTENSIONS, +) +from pip._internal.utils.misc import ensure_dir + +logger = logging.getLogger(__name__) + + +SUPPORTED_EXTENSIONS = ZIP_EXTENSIONS + TAR_EXTENSIONS + +try: + import bz2 # noqa + + SUPPORTED_EXTENSIONS += BZ2_EXTENSIONS +except ImportError: + logger.debug("bz2 module is not available") + +try: + # Only for Python 3.3+ + import lzma # noqa + + SUPPORTED_EXTENSIONS += XZ_EXTENSIONS +except ImportError: + logger.debug("lzma module is not available") + + +def current_umask() -> int: + """Get the current umask which involves having to set it temporarily.""" + mask = os.umask(0) + os.umask(mask) + return mask + + +def split_leading_dir(path: str) -> List[str]: + path = path.lstrip("/").lstrip("\\") + if "/" in path and ( + ("\\" in path and path.find("/") < path.find("\\")) or "\\" not in path + ): + return path.split("/", 1) + elif "\\" in path: + return path.split("\\", 1) + else: + return [path, ""] + + +def has_leading_dir(paths: Iterable[str]) -> bool: + """Returns true if all the paths have the same leading path name + (i.e., everything is in one subdirectory in an archive)""" + common_prefix = None + for path in paths: + prefix, rest = split_leading_dir(path) + if not prefix: + return False + elif common_prefix is None: + common_prefix = prefix + elif prefix != common_prefix: + return False + return True + + +def is_within_directory(directory: str, target: str) -> bool: + """ + Return true if the absolute path of target is within the directory + """ + abs_directory = os.path.abspath(directory) + abs_target = os.path.abspath(target) + + prefix = os.path.commonprefix([abs_directory, abs_target]) + return prefix == abs_directory + + +def set_extracted_file_to_default_mode_plus_executable(path: str) -> None: + """ + Make file present at path have execute for user/group/world + (chmod +x) is no-op on windows per python docs + """ + os.chmod(path, (0o777 & ~current_umask() | 0o111)) + + +def zip_item_is_executable(info: ZipInfo) -> bool: + mode = info.external_attr >> 16 + # if mode and regular file and any execute permissions for + # user/group/world? + return bool(mode and stat.S_ISREG(mode) and mode & 0o111) + + +def unzip_file(filename: str, location: str, flatten: bool = True) -> None: + """ + Unzip the file (with path `filename`) to the destination `location`. All + files are written based on system defaults and umask (i.e. permissions are + not preserved), except that regular file members with any execute + permissions (user, group, or world) have "chmod +x" applied after being + written. Note that for windows, any execute changes using os.chmod are + no-ops per the python docs. + """ + ensure_dir(location) + zipfp = open(filename, "rb") + try: + zip = zipfile.ZipFile(zipfp, allowZip64=True) + leading = has_leading_dir(zip.namelist()) and flatten + for info in zip.infolist(): + name = info.filename + fn = name + if leading: + fn = split_leading_dir(name)[1] + fn = os.path.join(location, fn) + dir = os.path.dirname(fn) + if not is_within_directory(location, fn): + message = ( + "The zip file ({}) has a file ({}) trying to install " + "outside target directory ({})" + ) + raise InstallationError(message.format(filename, fn, location)) + if fn.endswith("/") or fn.endswith("\\"): + # A directory + ensure_dir(fn) + else: + ensure_dir(dir) + # Don't use read() to avoid allocating an arbitrarily large + # chunk of memory for the file's content + fp = zip.open(name) + try: + with open(fn, "wb") as destfp: + shutil.copyfileobj(fp, destfp) + finally: + fp.close() + if zip_item_is_executable(info): + set_extracted_file_to_default_mode_plus_executable(fn) + finally: + zipfp.close() + + +def untar_file(filename: str, location: str) -> None: + """ + Untar the file (with path `filename`) to the destination `location`. + All files are written based on system defaults and umask (i.e. permissions + are not preserved), except that regular file members with any execute + permissions (user, group, or world) have "chmod +x" applied after being + written. Note that for windows, any execute changes using os.chmod are + no-ops per the python docs. + """ + ensure_dir(location) + if filename.lower().endswith(".gz") or filename.lower().endswith(".tgz"): + mode = "r:gz" + elif filename.lower().endswith(BZ2_EXTENSIONS): + mode = "r:bz2" + elif filename.lower().endswith(XZ_EXTENSIONS): + mode = "r:xz" + elif filename.lower().endswith(".tar"): + mode = "r" + else: + logger.warning( + "Cannot determine compression type for file %s", + filename, + ) + mode = "r:*" + tar = tarfile.open(filename, mode, encoding="utf-8") + try: + leading = has_leading_dir([member.name for member in tar.getmembers()]) + for member in tar.getmembers(): + fn = member.name + if leading: + fn = split_leading_dir(fn)[1] + path = os.path.join(location, fn) + if not is_within_directory(location, path): + message = ( + "The tar file ({}) has a file ({}) trying to install " + "outside target directory ({})" + ) + raise InstallationError(message.format(filename, path, location)) + if member.isdir(): + ensure_dir(path) + elif member.issym(): + try: + tar._extract_member(member, path) + except Exception as exc: + # Some corrupt tar files seem to produce this + # (specifically bad symlinks) + logger.warning( + "In the tar file %s the member %s is invalid: %s", + filename, + member.name, + exc, + ) + continue + else: + try: + fp = tar.extractfile(member) + except (KeyError, AttributeError) as exc: + # Some corrupt tar files seem to produce this + # (specifically bad symlinks) + logger.warning( + "In the tar file %s the member %s is invalid: %s", + filename, + member.name, + exc, + ) + continue + ensure_dir(os.path.dirname(path)) + assert fp is not None + with open(path, "wb") as destfp: + shutil.copyfileobj(fp, destfp) + fp.close() + # Update the timestamp (useful for cython compiled files) + tar.utime(member, path) + # member have any execute permissions for user/group/world? + if member.mode & 0o111: + set_extracted_file_to_default_mode_plus_executable(path) + finally: + tar.close() + + +def unpack_file( + filename: str, + location: str, + content_type: Optional[str] = None, +) -> None: + filename = os.path.realpath(filename) + if ( + content_type == "application/zip" + or filename.lower().endswith(ZIP_EXTENSIONS) + or zipfile.is_zipfile(filename) + ): + unzip_file(filename, location, flatten=not filename.endswith(".whl")) + elif ( + content_type == "application/x-gzip" + or tarfile.is_tarfile(filename) + or filename.lower().endswith(TAR_EXTENSIONS + BZ2_EXTENSIONS + XZ_EXTENSIONS) + ): + untar_file(filename, location) + else: + # FIXME: handle? + # FIXME: magic signatures? + logger.critical( + "Cannot unpack file %s (downloaded from %s, content-type: %s); " + "cannot detect archive format", + filename, + location, + content_type, + ) + raise InstallationError(f"Cannot determine archive format of {location}") diff --git a/venv/lib/python3.12/site-packages/pip/_internal/utils/urls.py b/venv/lib/python3.12/site-packages/pip/_internal/utils/urls.py new file mode 100644 index 0000000..6ba2e04 --- /dev/null +++ b/venv/lib/python3.12/site-packages/pip/_internal/utils/urls.py @@ -0,0 +1,62 @@ +import os +import string +import urllib.parse +import urllib.request +from typing import Optional + +from .compat import WINDOWS + + +def get_url_scheme(url: str) -> Optional[str]: + if ":" not in url: + return None + return url.split(":", 1)[0].lower() + + +def path_to_url(path: str) -> str: + """ + Convert a path to a file: URL. The path will be made absolute and have + quoted path parts. + """ + path = os.path.normpath(os.path.abspath(path)) + url = urllib.parse.urljoin("file:", urllib.request.pathname2url(path)) + return url + + +def url_to_path(url: str) -> str: + """ + Convert a file: URL to a path. + """ + assert url.startswith( + "file:" + ), f"You can only turn file: urls into filenames (not {url!r})" + + _, netloc, path, _, _ = urllib.parse.urlsplit(url) + + if not netloc or netloc == "localhost": + # According to RFC 8089, same as empty authority. + netloc = "" + elif WINDOWS: + # If we have a UNC path, prepend UNC share notation. + netloc = "\\\\" + netloc + else: + raise ValueError( + f"non-local file URIs are not supported on this platform: {url!r}" + ) + + path = urllib.request.url2pathname(netloc + path) + + # On Windows, urlsplit parses the path as something like "/C:/Users/foo". + # This creates issues for path-related functions like io.open(), so we try + # to detect and strip the leading slash. + if ( + WINDOWS + and not netloc # Not UNC. + and len(path) >= 3 + and path[0] == "/" # Leading slash to strip. + and path[1] in string.ascii_letters # Drive letter. + and path[2:4] in (":", ":/") # Colon + end of string, or colon + absolute path. + ): + path = path[1:] + + return path diff --git a/venv/lib/python3.12/site-packages/pip/_internal/utils/virtualenv.py b/venv/lib/python3.12/site-packages/pip/_internal/utils/virtualenv.py new file mode 100644 index 0000000..882e36f --- /dev/null +++ b/venv/lib/python3.12/site-packages/pip/_internal/utils/virtualenv.py @@ -0,0 +1,104 @@ +import logging +import os +import re +import site +import sys +from typing import List, Optional + +logger = logging.getLogger(__name__) +_INCLUDE_SYSTEM_SITE_PACKAGES_REGEX = re.compile( + r"include-system-site-packages\s*=\s*(?Ptrue|false)" +) + + +def _running_under_venv() -> bool: + """Checks if sys.base_prefix and sys.prefix match. + + This handles PEP 405 compliant virtual environments. + """ + return sys.prefix != getattr(sys, "base_prefix", sys.prefix) + + +def _running_under_legacy_virtualenv() -> bool: + """Checks if sys.real_prefix is set. + + This handles virtual environments created with pypa's virtualenv. + """ + # pypa/virtualenv case + return hasattr(sys, "real_prefix") + + +def running_under_virtualenv() -> bool: + """True if we're running inside a virtual environment, False otherwise.""" + return _running_under_venv() or _running_under_legacy_virtualenv() + + +def _get_pyvenv_cfg_lines() -> Optional[List[str]]: + """Reads {sys.prefix}/pyvenv.cfg and returns its contents as list of lines + + Returns None, if it could not read/access the file. + """ + pyvenv_cfg_file = os.path.join(sys.prefix, "pyvenv.cfg") + try: + # Although PEP 405 does not specify, the built-in venv module always + # writes with UTF-8. (pypa/pip#8717) + with open(pyvenv_cfg_file, encoding="utf-8") as f: + return f.read().splitlines() # avoids trailing newlines + except OSError: + return None + + +def _no_global_under_venv() -> bool: + """Check `{sys.prefix}/pyvenv.cfg` for system site-packages inclusion + + PEP 405 specifies that when system site-packages are not supposed to be + visible from a virtual environment, `pyvenv.cfg` must contain the following + line: + + include-system-site-packages = false + + Additionally, log a warning if accessing the file fails. + """ + cfg_lines = _get_pyvenv_cfg_lines() + if cfg_lines is None: + # We're not in a "sane" venv, so assume there is no system + # site-packages access (since that's PEP 405's default state). + logger.warning( + "Could not access 'pyvenv.cfg' despite a virtual environment " + "being active. Assuming global site-packages is not accessible " + "in this environment." + ) + return True + + for line in cfg_lines: + match = _INCLUDE_SYSTEM_SITE_PACKAGES_REGEX.match(line) + if match is not None and match.group("value") == "false": + return True + return False + + +def _no_global_under_legacy_virtualenv() -> bool: + """Check if "no-global-site-packages.txt" exists beside site.py + + This mirrors logic in pypa/virtualenv for determining whether system + site-packages are visible in the virtual environment. + """ + site_mod_dir = os.path.dirname(os.path.abspath(site.__file__)) + no_global_site_packages_file = os.path.join( + site_mod_dir, + "no-global-site-packages.txt", + ) + return os.path.exists(no_global_site_packages_file) + + +def virtualenv_no_global() -> bool: + """Returns a boolean, whether running in venv with no system site-packages.""" + # PEP 405 compliance needs to be checked first since virtualenv >=20 would + # return True for both checks, but is only able to use the PEP 405 config. + if _running_under_venv(): + return _no_global_under_venv() + + if _running_under_legacy_virtualenv(): + return _no_global_under_legacy_virtualenv() + + return False diff --git a/venv/lib/python3.12/site-packages/pip/_internal/utils/wheel.py b/venv/lib/python3.12/site-packages/pip/_internal/utils/wheel.py new file mode 100644 index 0000000..3551f8f --- /dev/null +++ b/venv/lib/python3.12/site-packages/pip/_internal/utils/wheel.py @@ -0,0 +1,134 @@ +"""Support functions for working with wheel files. +""" + +import logging +from email.message import Message +from email.parser import Parser +from typing import Tuple +from zipfile import BadZipFile, ZipFile + +from pip._vendor.packaging.utils import canonicalize_name + +from pip._internal.exceptions import UnsupportedWheel + +VERSION_COMPATIBLE = (1, 0) + + +logger = logging.getLogger(__name__) + + +def parse_wheel(wheel_zip: ZipFile, name: str) -> Tuple[str, Message]: + """Extract information from the provided wheel, ensuring it meets basic + standards. + + Returns the name of the .dist-info directory and the parsed WHEEL metadata. + """ + try: + info_dir = wheel_dist_info_dir(wheel_zip, name) + metadata = wheel_metadata(wheel_zip, info_dir) + version = wheel_version(metadata) + except UnsupportedWheel as e: + raise UnsupportedWheel(f"{name} has an invalid wheel, {str(e)}") + + check_compatibility(version, name) + + return info_dir, metadata + + +def wheel_dist_info_dir(source: ZipFile, name: str) -> str: + """Returns the name of the contained .dist-info directory. + + Raises AssertionError or UnsupportedWheel if not found, >1 found, or + it doesn't match the provided name. + """ + # Zip file path separators must be / + subdirs = {p.split("/", 1)[0] for p in source.namelist()} + + info_dirs = [s for s in subdirs if s.endswith(".dist-info")] + + if not info_dirs: + raise UnsupportedWheel(".dist-info directory not found") + + if len(info_dirs) > 1: + raise UnsupportedWheel( + "multiple .dist-info directories found: {}".format(", ".join(info_dirs)) + ) + + info_dir = info_dirs[0] + + info_dir_name = canonicalize_name(info_dir) + canonical_name = canonicalize_name(name) + if not info_dir_name.startswith(canonical_name): + raise UnsupportedWheel( + f".dist-info directory {info_dir!r} does not start with {canonical_name!r}" + ) + + return info_dir + + +def read_wheel_metadata_file(source: ZipFile, path: str) -> bytes: + try: + return source.read(path) + # BadZipFile for general corruption, KeyError for missing entry, + # and RuntimeError for password-protected files + except (BadZipFile, KeyError, RuntimeError) as e: + raise UnsupportedWheel(f"could not read {path!r} file: {e!r}") + + +def wheel_metadata(source: ZipFile, dist_info_dir: str) -> Message: + """Return the WHEEL metadata of an extracted wheel, if possible. + Otherwise, raise UnsupportedWheel. + """ + path = f"{dist_info_dir}/WHEEL" + # Zip file path separators must be / + wheel_contents = read_wheel_metadata_file(source, path) + + try: + wheel_text = wheel_contents.decode() + except UnicodeDecodeError as e: + raise UnsupportedWheel(f"error decoding {path!r}: {e!r}") + + # FeedParser (used by Parser) does not raise any exceptions. The returned + # message may have .defects populated, but for backwards-compatibility we + # currently ignore them. + return Parser().parsestr(wheel_text) + + +def wheel_version(wheel_data: Message) -> Tuple[int, ...]: + """Given WHEEL metadata, return the parsed Wheel-Version. + Otherwise, raise UnsupportedWheel. + """ + version_text = wheel_data["Wheel-Version"] + if version_text is None: + raise UnsupportedWheel("WHEEL is missing Wheel-Version") + + version = version_text.strip() + + try: + return tuple(map(int, version.split("."))) + except ValueError: + raise UnsupportedWheel(f"invalid Wheel-Version: {version!r}") + + +def check_compatibility(version: Tuple[int, ...], name: str) -> None: + """Raises errors or warns if called with an incompatible Wheel-Version. + + pip should refuse to install a Wheel-Version that's a major series + ahead of what it's compatible with (e.g 2.0 > 1.1); and warn when + installing a version only minor version ahead (e.g 1.2 > 1.1). + + version: a 2-tuple representing a Wheel-Version (Major, Minor) + name: name of wheel or package to raise exception about + + :raises UnsupportedWheel: when an incompatible Wheel-Version is given + """ + if version[0] > VERSION_COMPATIBLE[0]: + raise UnsupportedWheel( + "{}'s Wheel-Version ({}) is not compatible with this version " + "of pip".format(name, ".".join(map(str, version))) + ) + elif version > VERSION_COMPATIBLE: + logger.warning( + "Installing from a newer Wheel-Version (%s)", + ".".join(map(str, version)), + ) diff --git a/venv/lib/python3.12/site-packages/pip/_internal/vcs/__init__.py b/venv/lib/python3.12/site-packages/pip/_internal/vcs/__init__.py new file mode 100644 index 0000000..b6beddb --- /dev/null +++ b/venv/lib/python3.12/site-packages/pip/_internal/vcs/__init__.py @@ -0,0 +1,15 @@ +# Expose a limited set of classes and functions so callers outside of +# the vcs package don't need to import deeper than `pip._internal.vcs`. +# (The test directory may still need to import from a vcs sub-package.) +# Import all vcs modules to register each VCS in the VcsSupport object. +import pip._internal.vcs.bazaar +import pip._internal.vcs.git +import pip._internal.vcs.mercurial +import pip._internal.vcs.subversion # noqa: F401 +from pip._internal.vcs.versioncontrol import ( # noqa: F401 + RemoteNotFoundError, + RemoteNotValidError, + is_url, + make_vcs_requirement_url, + vcs, +) diff --git a/venv/lib/python3.12/site-packages/pip/_internal/vcs/__pycache__/__init__.cpython-312.pyc b/venv/lib/python3.12/site-packages/pip/_internal/vcs/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..b9387941816d5aa7ae04a9d6097df5b938fdbf96 GIT binary patch literal 528 zcmZXPK}*9h6vvZx>$b`e5nYMKt`7x6RrS^NZc zM^D~_fx=F{mMX#?qkc@ke4qs>3_j!99Q zp2%o!WYJS>#_2rDsNoN}FkJD(R*4JdaI5I0A`PfWEH??00hqy~GqNnkctI;5T8Ct+6(?yv zC0Ufmw0y@OEoG@7bDqqJ6l0Pu>{KUb!O1DfgyqL6i)L)XGXmqu-@XL)B@|j=DGk!a sx_z#6oJ)RTc3>2SlN|s)U5xR{M|iMA{UthFqN8ue!_F51m~FW61N(BMQUCw| literal 0 HcmV?d00001 diff --git a/venv/lib/python3.12/site-packages/pip/_internal/vcs/__pycache__/bazaar.cpython-312.pyc b/venv/lib/python3.12/site-packages/pip/_internal/vcs/__pycache__/bazaar.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..f2fb9d51fae65926a8da659babb900392957ac00 GIT binary patch literal 5020 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 literal 0 HcmV?d00001 diff --git a/venv/lib/python3.12/site-packages/pip/_internal/vcs/__pycache__/git.cpython-312.pyc b/venv/lib/python3.12/site-packages/pip/_internal/vcs/__pycache__/git.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..6dff3aca94af620c3ad6bf6efc14bcc04bfe3e95 GIT binary patch literal 18989 zcmbV!dvF`andjjBBmfd12|h%P_z($EBrVGinSM&tTMA`Mij&Z?VF)uML4g1>14$?Pf!#QWYxpmFe5tTBhpi&dERPtF5~N0=WoJbhWBF*Y5eRgC%9- z(qH%cdL95N$WHB)*xl&)`s<#aufO-`pBft69IlV2GBf|;qGh&qqIEVr5uRuM;*NK)A9PK01I9Xo zecO5o4g;q5p)gJZrthIJF5o}86+6ehV^;en`UST*Ab7;cq*d^~X`R?*=8kYe!<(Go z6WiahXi$T|-#PR32l0r5`Wj5!WmCleDS?bfEQ3lhsOlY0% z)8a*SfwJOzS(Id~Vl17?Na>_9FqudRY}#lh9i5ZXGh#dwmD1@sY-n=-(BVgho_h6Lk3F)` z8yf*RyyoU{_3-+J@$<4M?dHYdsbRh!xL@dJ00ZYP4ZaY0UIRWON|>?+YI^?sF!rQ> zSOtFNwUNmTO7GB0O%ydNpUUrJ=A z`B+NB6HCrb$5QjNqLhg9@#&Zpi)TcMm(zSq=2PhmpGouQMLwQRP0q`)^GQ(~&wmYj zn!Y5niDeC0GI2rV`^QE{Ce!JW^D(KPPfPUs9Dbjp-`caByY$Lyqp$9YuwlK5MV^i+ zc1g_4OR2baoEUi$(;>3GOK0*rmoe^TG?M4I8J#h)0cw%s-q9fS`V4o=cE8uZ{k zy8q14=;=d84t-s*&BikE>4-@RVysNV`1@ZSnNH7&BXjf9BXWFR0A;2!px|h1E-`XZ zOkEsFCeDw{UCvCWQ+tQ^JUSvLGUCu&EPf$2CCVdniMf$z0wW}xl@Sos2wuVP+-1d| zOs6l%QQD;FbWEO>IxyRlG;J8gB6rK<|A~7ez!wAjO0X2@D|vPntUK@G9v7!VzZjFo zkGns?E_@&RB61TZfddmZfdQMrd@U0;!3w5pn{WvB38&~19HLuriXPG3hJj!Yt~agk zX!s_)U>k0*4T5Nxv@_P>L)$L~goa5o8(|iFU?`1Zli+7?K?75u22%+436DCPU(}$0 zRmEZ#8f&1NH$l_PO*MC0w7YJxRS1e>~U3hn6ctkd6t{%x2~eR?-`u(M{CF6=Pvp;M$g+iLD?*T$$jLeJP$ zbC<{6oeZa=<{8|8+Ww}^ct1Ogd8@n5*I?h5Car9APtE9^c-CHxR;)r_&FKC-_l9X=;0zb(S1d;o8N~v^&svEC zDYkerof0FqtP{Tmr!$$ktV?gnSqC*`d0K7YhYB{CU{c0$f*&`)3Zz~%)Wa^dqp37b ziJ9p6m@GmTT#Uw~DLLDG1gG|a?h`c7g<_Gr9SG*<^IoZw5Lh6|6ssW0nYbor(aUjm z{IO;H3mUYH8H0tS|-Sxin!5gNRUU`$cPLoZ81s|0{7 z6Pt>rrRaGnmWofywD}~6d0u_VZGcG3&dz5@jIkxfr^Wb%^n50}jb8RcZ=V7pIe}u4 zE4OXiXxme4+w)%r*7yG1P^s;OC12i@f4b~%zw(_Qe5V`?m;J#F|IVU+=SpVvmG`1I zqBs4|R_t7;?VgkCr*BE&CpEjnlT7O@8LMX z4kFd0FVsXw#vq)Wd8VNXr?&({vDFFXOGmhLNWGpkgRI=+ibK=MvL3JqT|qm17J8;v zQy!x@fpNtnPp21wIcNX+NuL#NLiJ2kHA4ifQK#hy%0O^K4?xD=C8iPV&0f$UdoQ&M_P!YT0P&E;ewoij?`3$t?_`D>EsSK}jiQS~4jzc!_iAkOW3ZIaP zL}K`-ffz^zmrdnTQWb;^ckv&^M(XJQd{4Q>YG~ zy1mtqIm&w=tG87F1hLRy{11DlAtv>nj+WVS`8y3PGF z7%5MnSmf@6xWI7UT5b$o-+pa-*&8VD=u>I090*rDT+@!boW04Nw^w|ezxhgXDfz=x z-g4XHyYk%9bIU_FJp<)n%TMIxXG^V-LhE25xVzxpecK;o6t+oV8g#XYgZOYRmorb9 zb5%}f&{Tp0-FzWk)w36>v~!Sq^-&01h_ZS@wQ9%{glzgztBV6=I6$w^i*1mS^ z=wL#i(6))F?aaY4X7_YPfMWvk! z?_M2SeZ0`TC+{wYx|Zc-vC!0;cii?hU722*zM3uhy7QK@$CrP;9BN$-U46RX?b2^v zD*3j9pFwDTHJ>XuJ3ha+g9~-t;Vf9eJv-OBqtNs0y0HHB!j8kGmLrA0k&1(E-Iu-C zkl!@59OyIuwl93(S=%OFNBWrse|INQfY+Jp83%%)ok^z4<{DGMIImFUEs(o)xKPfN zGwVDEqb--s5o@d$ug5q+x>%Ivnf$}MR1Yl(fR1170nSWABwiAEAx+|OI(AXyNi#?$ zaj*=02bktfXE`O%;Y9;Hf!s*&p^%?S!U;&Ea7KZ8R)hydfOjb#gU5=_?PUTtki}#f zektH#9;jIIQtUGDU5q7?%nzl_&JSFgPQ<6xwc?!4#*#b)AlQz`rzZ_$ufGmOi)U8o z>#wursXdb-+&}!#5H0rg*K5Ri)`m@xN6sFG5_cRghugXMrv|op= z*0n2_%``XQ8mss9R)$=C>>@)6R<32HS?{UVx+1EZQA~L?3?E=7OLfZymBjw8LtiJ9 zgfHJStP+aq-y3v#T9ngCoUK?@I)eUVd`i3oC02KF^Xc>C!&ZHg2_XF`-X2v(YGUSfjUMPlb%-Yfnk z|1EELxpk#?)w24^#?TAJp%+R+2TI;C$ZgEy3g6=_E;o?)n>Ku1MPJu)X0@~6>ni!4 zfY@x=vC*=t*s^PNZ>eP@@44-7FF4y(`_W2oXp`I{_CSAkA3;HKPjh2wtN@+HRdtBv z%oheYaxa;)zceUZ6JO9gNkwFupKjgNsGU6XEXnNlR00lsP1!ThY&`*gx*kc-Mu&v7 zG0-^utR9cUh$_tDQ8o#RIdp6i6w(lSR2vKgr!L!Yhy5Et^C%X%&ziVEh_U~s4gdC{ zfBTBH8lVN7tR5G2cYN> zZ@Dsth=4!e1zXVmbFAu`DQCK7`cL-%V8nk+Tx$E5W0*2Md_4Bbw`Fqtl-7Z@j%Xo` zD`(L|tqYc_sL5Fbx4;>995s7fNBF=dv*a8)H1^Z6cmgxl6*=`+s0$(a&ujL|3ro{7 zLyo8|m%i)zj0?{CyOwi84El83*xi=_M`5fjSCuAmjtlT^NCyOe&cUo*m*5owIfu}g zb4}U)%rKu2^Era0xrT<+qbp|JLqiDN zPC=B&5i>I-KP5twcof;Dp&nC3NCI40Yz$zo>T;kV+{ zUENIHN>en(p&Og#q4TsXIHuwkvSCdF5ipEat})U+Int=OAxX6;J`=Z!HGwF-M0%&R zp9(|hs&X`qKE(m48_Q%Q#U_a7=cgFIlad7eA{E3TB~nzC#`!rRmJy@!{Q23mFrO4< zn6u1(x{F|{GFl>N=KR+d16?8s{he(E9(7jG{17{=&9HYll#*??v%} z^>^D2-Si&5?PZmRgyl@U(E2DMO(4+5N2~VY&g4$PUtNkIeS&dqZM?dUxwrHzoF-0j>oF` zEx`E*mRW`^NkbPXSQ^H1K zD%+?!mWI`%K8#o#JNwc+Ffdl2xtE!yte(m&Zr!leJ$MVawbi3+Ctq}YI_svBqqYyy zv55i}Aq%H>!x=6*!=zn?3q4P)TT0$%G@Y`I>6B1fL;Q++_2Amz#-oRdj~*&LdZZLQ zns*vwm%}R=M8|GAci$#-f680ji6uPjE$VwOn3#&uf<4vVBbIDj2x*w1RBYP)RC9e; z0q>a{(zR3o$T~vi0R_Q$n}S_%Flr%gy5-VWtSeZs;p?us4z+l;pu*2B)Z!e6oS^{4 zr!+H^RdPo$+Q`~fzlcgQMz;dbh%9F4F7ky0_$T+%2*&$~<8PrQ>3isVfNE4;uTqWL z9w(~#5nvHoujP|3|IRab+Z#~1RgZMsX zg4Pq#y!eWD^b2Bs!8TPSmzw(Wj*8jh+F9=CUfJ{3X#OPBmsawWyIS&x%l>B70a4iT z_(%RH%G>*{dOr>{!&&ZX0i3^M!^anWl>FxFTZt8Y1Mn=s-QbTD{gKt4_aZkU?+ljw zPZXR_e15Ny3$)+iOs<``n)(XfzKR9S`!aF6U)lCQ$NlEHzyY6SQvwAMD>H(TCJfn7 zO(vYFJ>CGK3r4PyS1Tc`eTK^z#6DwJVQR~IrffA0QR=BCJH&nRt0?P5l?G+2hjSj}NPHou4B6>6LwF4CcdJj}EHNBLRG)KxQXY1h^G$5&4u zV=)WbGVCA082GlrGMGIzJAX!G!4)t*BtFP<>6Ad0DHsQmdr{P~9c-+|dIlow$+WG- zTC1THne8^hI7l);#F8Z&;7!vm)0MR&uNiM9+n~Oob9>G`I&yAr#G{xcQO%h#rxA^0 zY2bG84dj-~ii3V3tyXcq2+sT>Wr*7mX_=Q2iVOR#CF=ru4tp+|5G*^%#7o9ynK9^2cv^ z8m>IK^dt+)^xX7xA{pGqG)Ad!BtYR0e=yERfj=YA#^QBaw68|i zR^Rx27my$U8c9{E-soiRjKt*StQAq=*AC-d9mS#)A9AIllL+96NUEL{&Z3`bjidzY zUeW_-Gw;D>FKHazSs%U6Y6R{rdWT1F1A@x!a)rwXqMcegRc`ED7FLe0+1G>bdkcYQ z%c0Kl_TGwvYv{bkSz$N_xKQ}>dk!wJgCt1X$H6d(k2W=2`@N1X?r&YYEH_NMESucc z#Pyl{AZbl*>qR77KP=^mtivhwZBf#bCOf_?=?U&_`#8%Pl75OwkTGPbrW>#=)OYL{ zZo_nA0Z3!V6px<4gZClRoOB-5pgp-+vH{vZRoJURkQ=mv`*DkOZXePZo5HZDTiULt zucgZk;pHAg8LEjsF0K{n=(bjO-h%*pphFerC4YCp*{xEwL481J>=)@153|LHrXSp= zdeTi-Ko`va4oPgtJV+_+T_Da_PmYrYvE?G0O}Fm9boM$5^}l0AILP%G-@)$D1!uBf zZIJ~BC$qNKpczN@nsKi6h(6R}VyWc8dy##qpo=}8zI)k?b4*|AAkYW^U5943s>fPG zr6&jUTU zhmQ-kTpzhMLNq^E@M?*blx2e4%5Iih`A0YB2`u&fuph}Qt^o2Z15H;hEnT{@u(YuJ zwVVFFTP@-1Q`e@hC$A+}_N{)c)be=#$gNPz^&{7gkZ}0LfnOeZ`^Ya(zI}47b-fpv zDy7g1dDkuflk3h8A|?OHg7f5qN63iVgz&Qe(p0OoR*m>`a5F5JDM@^RLiKg+%bF~b zA5m;3W4I=eLuR-juov1TSah<}YY*4XA%o3P%_EyJ0`~f-`l0)3kiVXC3)hK3%3r(^ z5_*UinCrz|1S1VWuroLp<(%eR?OaU+2EPS!JM3#jF>E>eq%nq#FbR&F>7q$`PC$&~ zqDfX$BusVJjITZP~O`uKodOWqv!7eloUmU9po3#JA4f(OdDaeQ@nDB~W%Tg8+L z{;9Zf?wn_mQU@AhPl1e$)BhqO>xnm@i_4k$^E~Wq8EIzpO%@b%>4oXEoM915`o)x7 z(oFl+EP{SjThl(#BEfMM+I_zaPJws@?as0?W#kPT=(-D_l*` zvjc$CTG;B}oQJZlc+v4FaW;Ap)QwLf<07pC-%z@7b3Uaaw8`^xNGlJKxJEZ+8bt9t z(HOpsj5Mf{pDDn0bte^jO3c8((U>V_lP)XHNhvlpi)?4bpGYM#iC8i!Cy|K>r-1|E z4qAueW*ZirOU}zo?^0Yu9{5~RmK9et8V9@_jmjk0h${4JQPnGcjqYq1?~myfTNnC| z#AA1%_#A3>h}-kjdhqWWiq4_D{i=Q0x-71Iz3gec^8C{C%TFNjsod3F=z01V@zvh< z25$_m#Y?+JOFN$~^gUhZdM1CW+|u{1{XO3e-^RdLabWC&gQbCE8v`#D2VR0Z`D*;G z#T@bdt1q-PdG*W>FMMV*x3=ex!0+GA|E%M!j+HZ|w#e#!q*>&TL&;h0Sl(4=>U-B+ zZfsq4FMA4&y(^QeQ)~0<)5zXqs6OM&L0^6hehF{mvZd(hCx|6y7fUwP;f09hJjnAGt@)^n934r(3GdWga3 z!8{vmH9fQ^eIJiN9%LfRtY-)=H|VZ16cT1ZFpqP@R@DxqzXZJW3o6KBfEsM5zMITG zV&&?mTMq;i|AlCg1}}1-_#2t*{`S(h|K|M9rrw(RS@Nyq>b|vCOI>3({Rhk5rn1vR zIWY>pmVgpK`7eK<{Fg5f(P5xxA{sNO*Al$+e*r;T71i{C4ZKN6$YwU4A%yi2{+f$o64})@iTt~G*JL5qSUYFv z=ij2po`6?4siv9X+Y3=bIvLAW?SuX)^GIex>JP|_9J}fK8L|?X5=agIK{eMK9KLZ39(U;#3w}z^sYUx6zUpn7*uC|o;M@s%Z z1?Qg6?**9;)$T%YjzxbfW>e$H?LhdR16J~9Zdl2;{5+Y+VWeD>i5$K!Qwqvowe8== z{bt+t11`&No^zu7t;( zUI%G_3fg^XFBQZ)r01#Fj{=rIiD`9^L>sLpR}522pn^`bL>j1+rUF_jCw+&CKcj-U zv2>M+A5sygVwQ?kD(GZOB*BGB+3vS59zhOt^Pa`8lv_F%Pu;dPf);Jf%W{Q7 zg)b?`-o6Y%v^C$g;6o#JuVVMwdRNa>I8^HvR()W-OTQ|e9^2?j^NPGWw(`c?+wXGt zi4Oqmz}aF8t@cznRBQNt^ZlVa)Fhnhy~-o3HE8Qx8LM!pR^zN%6W5P^aOT%v`S7vA zGpCAAym*K1X~WQ}OqkfXkS(+ltZ=AS_p)m3u{-ojgG8&cTblsdL`%goXzM6%>sRY1 zUSRcYSMZJv{RZ|99lO^yyn^MRS_`lDyuXb#Kfny=(V)?)bUthA!xsz{3)Ni%YW?JX zwH|+o)wf*@cWt;|`L@Yv>s!WRQLRj{YJG-PAD+ESot2PR1wcgrs0aWR0iddMvM1`W zJxPm0wHm)em9`?ZDx>U`b=vxAQ&Fvs-Jyyg@G8-&Ji~A_*upD46%N%Z08y|CYx0d**8D)eLp>TWTKEEmUaQ~s71OGv!co2EgiEmD4r^ zuznOrS{`N+h`CSb8%*gxqF~kq%njTlU+jOTE+6uC{(7xI0dm1C5))e zu<_qk42y42{03iN%MufYBm%d>%x4lwd3ZJ<$5rk^nj!nTTj|=2Oa+AQ2lr7Nd2MQ1 zHoqANe0mt#AARwy338S1kln!?{wnt(&4)RKq$XODO?}e$sP`YJ!v%ZkB>N&)`d`#Z zS>cKUk)b)5bJ8=^6=q%dl=r}?Gl!(NsB41?##}q7McYl%YznanQDRa?eGl!pao_oj z%KV>`{x5zKx063b0Rd?;{hssb|6IT4g1_gQ|Ct*oas&U$9r$PNNRd18zqu#>Xm*;+ zf8}w{E!Fi>~(NeI-}# zq8)wB+piwDe*7BL0;|n)*J5ur7q~`HoiCg}ePv>4qJXTdhTUvxPmE%hQb=h2) z&gS_3@$VkL+v;sFFS;sSCR6`1s2J5s=q^?FoG&^|q5SYYj_S&!k25taTE6f7t~Y zouOngQlSNmT`Akv_D5?4yG67`fy!_SJAeL6HvI_DA8F-4%tYG_&;=IxV=Wa4ygxnX z4u_;BT%8uMnbA{bfyX}=6ndD-guW(`{CYX+MS=}(D3ne3~6_a^Wyi_jb)fjJjUP>y% zTA`3EDrV?RQ8$wLd=imPP^wWxIGt4#wRlOrYM8Q;)l2#0WTKQbGBM7S3&|^LB4sUy zz8A+6hL$MPe9U2bUQ@@d6Lr)7x=MA}c33MKRLh$O#UwGvSt*c9_AtwW}T0&EXq5$DB$>3r<&KbsY!J?QEHkJU%~5 z#yF+xn%tm3_bj=}#d|K2Sj2RnS81wDvmhLNCS4H*GHFvx<+Y+36DzJv`rueLud+tQ zFiI5(MzEn*oY2zsOvR7T0NF|P^6yU6do_pac%U`TZ0*`pbnPGnL#~ORzT{C2FPS0S;`KMtHtrb ze0FrOG-+hC;?aR4PYvo>L+vjmQ&*B{RUa&6OM{6lte_zMgCJ3Z1^aUcN|Rctygw5=rQovWE8Izf@+3**%p}(&x<$wOM%@>((ZK_B&I`A;k60y3QR9< zsIh0Ko9=Oyj%skT$&r+;hj4)e|BNC-@U6GVl#pws7h*uMxi&2tNI_O|t-I96fS&x6 zXt?TKGR4_C;f})^-o!yv5LVmg{hNB8Ob^r)c$q=*&cDz5(ix64`8_zEdYyP*2Ynt9~z@3+_j z>X7b%3B*;@(Q=xGvFGXUFKXqIk~CD)X~El^DWoQpn9KBl@~SIE)0x-OX_cCeY;jDZ zNGsrexoGQ0ih9d*!2*;oSnJT${21K=e$*UZ&eOd<*qe3 zGT*);@7i#SZcj}na>qRP?hDm@N9ImceVy}9y!+E?duK~~&)kVG+Yim2s7msx6j_!c zzwTW~FHS9WU%0PA_0dJBKJEKm_k{=2s|_4HB(fwQUpN8P;`6HqUsyi)!pgxP|4u$$ z4Yt=r;_m)$BDg&i#FC`yk_t^iobb5e1!9p>mK%az5 z(HK;w>%v9mc$xkY?IL(Ywj)OOv)PFxMHLrw(}TEVv+h8(0Zx;3AJbWfUJEABe4A3L zpfL4g3hLFAjxt}@Dbc8F!r?oLmM6v>03CxsN8#Hb?DUc z(5aQ7Gb>$ZXHQq<;HuoaEced8xj3{W_kJcH{@Mo%*hYW;W3cPjy{p|r%iTjufu|o5 z&iy901{WBa8(G?M?$gxL#n)HmHezn&DaYo$!8(fYGD_uqo?^(ro&b9gF@XtPQwC$=c5+2e!YUna#AJoZ z30vPPB$i=3i_-3QlITi0%=Sc9PatXXEK;%*7WE>c0KQ3Hr>{Vp`4u{TFmTR#-+pvv zsants6{ECDr1{P_&s>02`kPRJkLwRz*XFdUuY3N*CHY`Ava=fLtp+1CHwo-oCt|?! zwTF0vbNha|zvd-w8C{6Ls(0_QckjaR1Mh*gww?2-m9{;z!_`3B^~t%(U%s;>^;m{} zTduwe$Nrykl}8R#-taI1hUzsIl|+q<+M@6K89k$^OtJ_egKEIkcot*UXt7)vRq3H< zQjaE!Q4Ax%&l_m$X1YN8t3^Yv1pE69wE!Wqp&ok&mQSC&L`UFbZu8bl`w6t+)m;R@ z7-R+^}Ae*eYyUIf2wDe~kNX7wHf zX7z4nRyQy!7=_5?|DPS11_4{x(WHJBvJOUeENeagXeOy=EDl764)+5ZO{UO(+APhe zSCfjG$`+FOD87+mx-msx2jWyht-L8}ifS{5z5&zU%9R8jyqPNziz^UMz(Z5A-;*^GStX&qT~6jJz0Hq)e0ChS zz}SU_A;FIC5VIaD`27~6nFg~74m9_Hp&jR9|JOk7zxU7R5~3A<$r$%o_)$ zYYk<`rkcvDzSRgMdZO7ehSj=9G^>Nc`?kfV1J9`|xtP>ca`b5+5B(ujrkK@}qu`B0 zg?FXT;0&gIY*9l?Wx5*)zs&*{#J8rGN5S0&cNo0#N>5YVw$8l+JL!3-K-m1GBXaA) z%?njuc=q(dzI&JMU#$tGqi>z?9iBgV0?b-L)Y-P-B*C`p6LS;Sr{|{UFFy$EUyJm- z?|RSme&D^p2mD>vZP#7-wtVl+`;#jN&a6bv&YoEdJab?AD7F$fwl`?3e+wQ)Gbw|<1BL&K1VYPgy$^+h#0ZmqbPmCjsfV)Df`MdYWxKF4*9azU zEI3!#E{s%Mw*1-fA_RCwBV>j^ts4T$W;nNv{6mPz+0u+*+9WY#`&?KrSYwS~O&Xy| zm_B*Q6lpT6Lz0oXITYOviuT|1X+^M#EPDvb+Vn$qB{7zSCbc9zZ&kGJzL{L?npHl zz7@C`sD`?3NY(b%*|MZq%#@YCo3c28rq7stGe z^wvsx35PFZ^_N(oy)Yf4nwF;t?5kKIPfTB(WhphEPb45M{WgrUwDgZH&S5H;V#V^+ zH{sQPbB$EJfti=9{_xDHYOrhOOpSL2oHM6tLE>x!DvHs09pY3mx?n60|7H?MC`Q)> zd#>i}6g|~;peVv!2Q2u^aSM+8guyS}zI74iYlmg=$o$b70k9Bf;C_yQPcN^V}la?>u); zx*z_~hnt?~8oQq7>f3gTPc6bH0=W0={oxOfZD5n3ZSc@yTAJ}FwuAl!a@B?DT5uED z3pSm`WC=S=l28;V#(`!8emEFt{BSS;NfXt| zypM$gW(`bjO4W5MH@xLA3kiZWodtGgbn_nYBgR18kE<&=CifIQ4Q5{{dJ?7^^w~L< zn5GnGFp@uWWsaXkAj~X3l73{p%NOX+p^Ki0jxQ3PH^+TJ!e0>o7sUMs za$uPp_!D{Q59HYI$uqwvhri}Uj)w??W+sROb-Gr}+ApUJbAKO_<5h|3 zP<6r?a+2T1cuk@7g(d9j5uAFjgI=#Xy~-INMtkXXib)80AEvR+w2gIaqlnM5WjaFT0>WmK3E(JRZ3OV_Zy->tS9@3P+};iSU?^ zN`#ZV6i-D12H8H8N+cpl?zAv2%8o?jG7pQA9@yM+8YT=U$5OKU1wN6I_>q)!HZ`5( zo)LtUAlqKxXOt6*a`j8RAi~*)Qb|cj#bstDDyFNZh4@n)J%9OE9bZ2f=t$S$$}vge zxuC$$z`$!9cDr8_d*OEsr|X^0Ct>bjPhW4~$$o4_E0O6?f82*FqP`8(%2P<8K%I1m z;S3>`V?sub4Vic|XXGuMiMNiiocS&GmO3$Hf|lFldn56 zcf(n0H8{=%Ee}G%{JJp{=dL(g{jO7cDn`8e$j)hf>N#1it^%?FAnW0DUVTTzo{95S zz%+8*TqBHIm2+?nV=Os!(_2-cCh}fBu35tZ*YXw{YW_lREA+OIcQ9~m&~7EWI(ZN0 z=i9h;-p83>T^rW{WBy%Z*l*!Fp}&2f{x0b6$WmA6Q0GM|a6qL@PVmvosc9)-Oq-$OpeRnHE!dclq^Y!3Yl-S8OeCXYu{bZ=1i}qrAWYdL@Y1x9 zi~=R@dQcYJXQ5a@PB)B<-lTxtm}p!S>Y-Oec)$Pi*ZLHw2c4nD4S;*YNZJq-1f-DwEwn-<;xxa|1f^U%&P(A-5s?qWdf^C&pLBD@ zk-jk6gY%K`;V3nprD*mWc}t_vf=gLIltoZ*?z#jM43T4PDGH6AH%R)iC-+_#0B2}T zIG>@ueutu7gW2=UJUeg9P?LC*d!7tCLkp&HD#LOH&d@|%ZOX8d<~>00bN|`eUNj}? zQzk8XQ*TV#^`_p)F#E5`F`5dRH+{*fRr+FjBcrQOk-qvZ*ukj}>5UAdo%=Pw;JkU> z0%xHw!{rFJjCsNEEcMrP#>}y4m@&^J8!~30He;Tw)fdnkJ1dEmIQ$pMt$}0=8Ots8 zp5_f#|DC0zx}7oY96)Hs^b0n>`n*86(JxK#{zT+TEHRz%Yr4fhmJ4 z55N86pfrahLk9?vyu2^*$iqm8A5|iR?Hh~V$aNK*2TG02OYHK6C3C69 zS8~)`dv5W$Rpy5My8W)BYpbE@hWEPnM)URN9Je;~qvviux6x2+7|K4o<*r*fzI=RT zaCtD-d)FP@uJLWRb!@f`6xs&X&lKApFF2aBXP3@{uvxnDp|h>zZOMBB`I-Qf(9SW- znPv8)x~AN*&Ca8R&ZFz2cRNp39%akhxOxIk?(JJVU+#vpKR7_uxR*}+&3xX{tVj!! zV*AJ@5mZ2ekD`pw9^`T&GtNNc9eRbzfJs59yJm-<7J>V|3qmnNXAByBUZf<=fUb}u zC3on6+wt`JW^t6RwR^)c9}m0c9xJJa?CHK{FiwDR74bc4u1d%`DbDg z1lCsz2B$@y(4ZgeH-8Ycf+)_W1kRr#R-_0kiV`1z-(%Wj|BEj?->0tt#3xRG@o5yN zr+7hjBfTid3B!uSS`<*G2UvwZPe5CE917VQ4oBm#T{tWv%7E||h*TGzf?w&@J*2j0 z&0&BM4?^)7kX#Mra4o&~ol_4?l&4|&c){JbHnTocbPwhogC9G)b7MtkFmDMeSH}R& z?~?I&SLD84hX&qP#VxVgE!|S3K9T331?E9wP3pG=6V->)<-cI$3>lipFdA<;!;CR- zm&{1o1Q0C)a%W#zzZ|N3+jLzn{_vgzMr4j0VjI0)@L{ z)>NE~zB=*{6|V11R5+S9?1HIsy$p+jYb5=ZAv7NS$&>^t6GY6{h#Bgi5>k_V6#77& zf*yiqN|^I^i~b(elpIm9QxO5wl|Bp#G!U=|sHB8$ECN_O0)=dfr^d%Y`j}@ULNb;d z7pidxwNk)Tp%$xBLTo&&X=%9%q>rTk6p+7U7Wq#^vk!;|9)*6Y6)lL~EAnW%p@M*R z55-}o_)RDX1vRv1tF~NSxmWJG`by1R*{^JQ8&+nQXII`_elvHa=slc0Uvhd^pZd_* z13XykU8!EKE*t2&-fd6&12bFedSIixy`Z`tcqw;x?v-D;`pS(|op00AQ}Fbx`HG%L z7p=gnqrj=zC$?POc}MrQ)0MS-kr<_VH(bhf$LJtWEvpd$M* zDu$W?L-vaIw*T=xw7mcytpp$T9egA+R`k;P_iPJ4xoXY{T8-gqxY{4ObnnU`9oAs? z#f?MT4RND-MPH5sJ*>Ge4)ituTsWAw&f7Cq!6`kay-P+9Y|d9@Oqr@N(Bd4u)9$2> z0JY76+G9}X|WcqR0aO7~Bu{ms?pg8;lrCZwgT>CM2ejBe}Y^ivuInVjlm#5o*lgjQBR0?%!WmYg8&fxAayvEjL!v{ zWFG`o`t+bmAAcpvEB3VTHCU@ceIdyb9VVbLE3>I7J}I*TSlj~Au*}9WrVC!)lz@~4 zz8?l*sVLGV=Z)FdG!S@bVEV`#xSwcY5E>OLrY{`qt4$a>rjx9X~o+zM{ zs9NPxXb#_Y23`hG4kx7(G6Q=lksj3IL<{SM;vk@6Pd8QQ;Jq<L2&)28(Ke`mJT~ zV^!&9mNU8YYtbKFzIl1$@uK&ctYgbwb?x}#abn~ix@&)AtF~?_UaajbQ*@O-_eRO< zTbWs&dHc!|`zZrGq`M4GMt%0ocC{pHhlT^ zr;GJN`I@1U%e!)L`QU2g?Y`{LR`A4T@N^+~`gT__c<$Hk^J_HjbHjYyoTJ~hz4O%% z-RJL|zB5p8k1U=kv$a*-r*E9QelB==Yd1 zTyXd2;xJIo&zft`4>G?v;vTlM|7J8|X|I9umxlJ?8upimPWy%%sXJ`@a2fTiS4EjoQ}^%=0rbub<+u+ zxb$ksS@d(MWBe3B0Iset4s{-@^4Un5|i>JXple$y|njWAIK~08r zZ%5Ki&P8wvzYE5lHV?8})J=K>++Va^1@xq42Z=zdcu^c@OBfCad8sgFz(hViMj#c( z7*D6W#b}kM-4$5SCjK)Fh$z3n6)xEu^Y)Id)}zJNW7)5k+WNBWT}v|%{D~*A)$p;U zYSCP<_*vGs6qAG|FZ+2EN`llq&(7V5(p#%Ye>*dH2obHI=>OyYU>JeA(q zoGD}2FGR$d8>#&~L=BT1$xeZbZP?G4=X8aw!0opZXVZ-l#!5+c?U0gg#!D!y$pZ$v zdb|1@FxxLuos?9g!GI!X&;Xb-=?dH)X$C}HnC8I`#K^09$ryOTpV4Uny+KgVYF-l5 z^UhuRqwyGw_StNjsyL~nR8IO&`z1_+`Y|aI0ZK`Zll8#4lpv6%EUxWU89qx1`dYZ= z>#z3&UVq&m+dV>E>L5}b`j&WFwLjf%JCRB2@y1bh1k!cc%gI5fzoq9M*b)IXY z5T&f-+g+-A@8AcpvG{jTfFNq78UxwtlB<5x)lqPD$Y7D?{%&wi;cm2V}IUtc++*P;5t@xo!F=?xSoIs-quZTPr=)> z<}P}JYmtKY@TT`z!Fz07EP9{FI?4vdTEErO@q>XMh-=RmJ0CB$oXn1(o@vcnT0VPV zrfM2NZCL9+a@T>vu-1Pry5Oik3pPA$p?+?$KJ8(C?xvyKB^8hxh@3B zh;VZddxnh28^F#G&N-yBQp6vPK**f)&!9!>pN&B(1(*cX46uj}_5YB00|sFpE=gE~ z0@{SX?3hl~xCW_2i#Itjs8lhSZrs6j-=4AG!aVUL6u>YZFpoCv%>{dN-rfUb>+x;6 zy9(~EyrXNozHzhuV4?nCu|Al!mzp0T>a65!)H0y^lk6xg{4kOg8T5YtF9gaNF24rv z&TtIEk5fRRY-DJMM73mtlCnTz@TZbMDe*YuHd2*xUYdwViYSNRA<`s7!U2O7v@<%v zi@ct`fDocTG6jB86u)C3;YOS_mcqmd>Hi_@3XZ&o0y2M5q;F_wgVKq!-3Ma4d- z6oP*33jiHl>Bi(-bYf5E^b|Nh{JvC z_m@0@yt_B==-qbKX01w^!H%w`y18tHTfdZoFB#^dMp$2a^f0Fyb7%ImzI54Xtcbc- zuA;7n(ejK@LbI4WJGR&@R_UQh;{Gz&;z-={CK7HmNf=Zh4`+lB2(@1%UOPjEnbd74 zZPtzr4Exi!R0|mbfBUD?_3$HF%mLF#+B<~br66@fXaa)j5LO4u=@v;1)<5&Za#TG^O|YKvIYcFpW4T z-j2=sLxuW7#rnRiealjP&AwUWOwdNcn6L{?(3#v)a|{mRT$r6u?g=&U%Iy9CX{s#<27K)aDgId^n3{p z?Iwc5>Mz5g?lqxI`ZMB?*0}Ufz@Q?dh4lv+_ZL zDBFp?O7QT}7pH^{*-NQZTxf<3WCwgfBE_QWDAKRs$Kp5^NOl6!I7!3{D4m4USl~Sg zb}Y_eF@gn$1;*oqIV{k}CMFJ1EktSvn8^{YV}W!fAO__sHTNIo!8HiOmtCkM$d_Gz zp@jG_RU=^0iUSj19DVi{IOjDBXG+zc1qhrqE)18dhZoLm8*3nAX7sENKy=RN**FUJ zxzTf^C^r?eUyORh%9!3WC>whs=h zKU+9>iu~BNdhQvaQ+*+5mFvkibw+nCTBe{{i{8UZT^3s9J_6Bi^sO;v3aWME`oxC# zcIZ)|q4hh9!`QTDS@+zm zE>qCF-SvB{%FT_&)?D`*vvzUK@_zq)z;SE&gbQw^E+?)H<*vNncAtWu<(?L!Ypv-% z1yy;l-q>04c*_jdtvyP8{IpV!Tp;zfwd%eR#>dxqW>@0iC z3IJ3H02Km2b!YTbtca~aNH5@*&6rrmgmO2Kp=^Lqxk;Lv!VbbTgiDZL_6Gc?rC40- zOT@&e!Zk#Zk}wvU2IPYnxpjArK$!w&D5S=tJbcfcaS`2SC;r$F_5%9?1y?oG5x9&r_a?o})$YW6<-!6lLkorPc=&*5&7|5aL~6zU}yyBOCe^ I6SpAb1JzfhFXb{()>}UNt#`ODpuD#EtB{pansYY zBIwFdPm}(>nS1X(u%zm=r#jAXzt5m#iPEPc{rSSg3A$BA5&fg;>~;XiPQ@H6@#en%TQE z(UROSv?19#)S7G?YD=~cwI??YZA^9ybtE?pZAywmBFpDWY)*C#btb!px{_Olwj{R> zZDsN9#J1%2q3sqyb}Q6A58Br~)Qz;75zA26D#(^A7mThKeR=2G=si6{J#w8Kkb5^E zZ1}@gdK>DKymGJPllzD5Qtcb|p5*dK02w{PsC$s&3z^SJRs7`RLeKd~`%}zc7|Y?a_qhxG+A3oc0ToW3uLWX%w+xi&l3Y*+ymM%qXfF zj>hD$RjYYADh;HPNwid}KQpSP(bg!{a#B%JO4zN{oQ_M9JbFRCmevAM^|i=YG<`WD zU&EJGt>#iR_S*PZM2ah#Pl~H!iRdKDpt&!{B{?##B(xe9nusRGWvwBuM&kNM&=pqB zsU*{iEQjryS8vF1Wkl5iF|;J2j$ay6QZZRowcv0{Nk-F=7;kMPO1XT==xeeOg)aI> zNQnN#9x!esQA*kvwbZ0DFDQNIh`KU9ORTmra&0N2uy=vcgeLLQyyPsA_vk4>g8 zr$+bo?cUR`0%E;m7}@BEtoDz^$NDj703tA}A3#JIhQ&G(_l-?zPK+y{uI#`EpTJMu z31>!l=ob9#3nx};H_x2PyJ}~CAs-0kz4h-k?*Dz;4+7s06{O_3)wA4dL)97{*|m;n`lX0cL8J5Y*^**OGm3RBiA=BQDH{2@YWOw4Kfl<;eU zWSg?UwNKf9P56dm+A(EQ+*1w-KHjaFT0uaZ10(0m{9f6}VZ<;#A`lTHMH5<)UmuSv zK(x_xUk%GjxO<3&M5OZW9AaaQY^k)&iUCwT;?;QivKSqm6h~!Qk|mZfrpUwbYht(D zH_|6|j>OYDJHs3uM6nbayvFYFQCW>e$7CsNq%w@+B|f(FYL>{ymZvg~E_r0+NXEa7 zgAgE1DU(NNZlHw;q61E)2f$K#$>}4fAC6XsVv*9%Y8aQ-RVUI2pV7fEWouz`5Qq^e z0S7~e14tggPdyE1Mks`YmMyEzJ9EuDmj;%DE6w|}_E5gIarW8y=z?v2eBorab5C~j z-fYdjnSl>nwRyL9zGKn3a4j3?&bhm1ZTG$YnP(NkEzO-s#TcE^JPgcADwU3z^AR}+ zPZ)0O0!{!oglTKFIjx>SitX_;`HBm5RXinB0d-H=Uh4+bn$vD0+ZAKUHzMFmmMIex zEy85=_E_FL^9ij1epWtH7PLq2y<$PlCM2p+rYnKU@&fh2V${HB)}M1K6d#os_7b&v zk&y@k)wZi50bRT_DXMZ*iCxALB#w`<+(fF>Ni{7e#bG6tWK~@>M(kprNeWRZEhl0+ zWz@>+RAgF&CS*#uXpZkij@UXK9ZZdybW}%DUO29nmgx~OTVv7DQEIA;xjQ~8@p>{Z z45Y>rl1M4T)X!)|57|Tq&EXS9+^UM*X(f)SO6&PpRKctljpVqjh6lrLr5T{rtSOLd z>X_z2IwxO=)X0deXs)YKWt1(}Dri3=>6nEH${e;U2T@uf0;<)fl=w)*0GU>sh^lGx zRVCyuPQY$zJztm8DRaWo;6w=en3kYJ^s1adxtH)$e-REQWP{MSapw7ZesQtou75|q zMVzg@7i_$F;KqTQ$8H>3Jh&3opm-p}T83~ezVgMhF35Oq_K1#rm1kaf}mUL|;rk`BBJ>sk=Mtg34(qka$8`ZVgyS$g{rxOfJ%$V8$#ah<~b;_tVK3N z(6hD$&M%d;NwUbcVe70gj0NTm-;jM)xMmrmWy4m|(wC!&IB%(D1KBSlQB*Vi*7m^p zRSTF7`23l(P6=N{%P=W*h*%Jw5+dfro)m6dsPhi6kiaXzAU+yTMF>?(4ogwj8o5$?Hb=Uh2=%R=z3dt*M> zG;9AV2N_n6XOKl9BCni*quJE7qEPKxt^Vnl3}!BJ+oGIDtV&&ainoEdErpy3N(jOE z*&9N^YIQU(416TO`;Z(yG?XodpZR$7(Aqo#MP!jILpF~9!ND)tWV>W1!9sG#4%x{< zPJ~=6Wy}7x{d886U#6sNX5M zBtaKj{15;FTFp6mg7f5R=39&io*cz`t&W4bkyt=$ey=(v$Ku2B7}$l0IFk-Q^mHb< z2c#wivTE`QD8TB`)5R3y_*I?xVEp?ixMeX#{3Qq>8+TE?%m^LGA2@A%8Wc<=7Brqr zj;Bec-~@3{b5F!Ls%ZX~Ig>ZQB^AaRXf@y(l_=x9mCXQZ88b$h$*`G-3>IA5jCBM{ z>y!;xix~b)0k0#*9IwD=ERRBjYG4n|_{?qAS)z2Md=IRj_RY4{b&+XDwAyG8IdWxX5o8`@@{z2CZJ*8XOIO~yCf zM855B*5-Hg&D!60x3D==CgPav@{6bnS_r`V3PP376_dskQ@}1`ikZ&B`TaAt&j z{l*39t>mrbYR9fz$FA(g-OEjP>_2dS-@QEb?(S^hWY&FhecuV^7>1c)81*7KPr z#8>HkwSJ#}L>=b^LYvf#CIPbJu1A>w9iTQP%Sr1a1nL zlaCnpY3r2rOC7YzRD}UyPsIavR-emEXo6sjvLqfMWTrdfO5-*7!KmzcHXz5dx_d0*Z9iJQ;gcz!jsHy7HwJg^cvnDZT+ zJ&||&=Iu8FHv%~~3Sl^Az3Yd9hJg*mVFVt9geo))Y_cIw0Zbz z)n@}cv+kX|Q>Amn#4k=&s?V$|)a{CgVGEV6c)ndKh*&efY7YMM(DjH>D9^?w`2r`4 zv2lg5;cPv`%GV=a8c*xXB?RlM1RZ^GBosPcBAwGaQXjJ{ketu7G^i(aiBu6qL*7;hWd)kQ>~op)0pVW7%noqS$4FqjMy2Gzf0LW;Q$H!LS5+k^xX7npf?xj zU5ee2evtZpDjVos2@Gc4gKRi%TL%Zjfl4OK6^Tfx7^tcbH7TTneW;4p{K#o zf4`wA+q^y3&|Prgt>6^=P4lt2R|_tBb3^120_P|@BnwwdgSWHNoQ2-c_ASehOA0Zz-wC$g zE!ky{>>#LuFLZ$ytdYHl^GOyx&RxPk*77tnKln|PxAa$}mGYedsKx7ejgnn*fXgJV zvtFu28~M8*?+s9r<6REw-?mG2hz&tyULM`1=ed4b z8AA6UM=0_L*dS#x>;#XmUe;_-QEAr8Bbx0}2I^=P%1IhglGmOsOErFugaQt zT$RRVeS`J1KVy{Vb=*qHz$X{m;N z(9cs%6^}8T7U9iJc8G-Lu=0L?8QGOzgrl={EUf$rBFeZrWjkUrO(k=#WMAYi4=cyWVTvV@LX1#3B>B?#h(UM1hWK)}%J^Q{BsU^|MA=FFgDxx3 zG_Nk4x*O=a=W8I9X0~nb^7-$5{+-X?^*x>UHGtPAL2F^(TSspl&3VHgY~S(glp&2tvkBOs7LO3ZCIrP_ zorRvV905ugYnFupnBRBv=neFAbG|Ng z(|^Oikj~X@DcA&GC+`j^rpvlRQXZq{{}q9oV3;uJtIE{X2!Vm4AQylJ>4>gWnIT2p zC${bEs^!h*v?*I&F;su}y754tVL?q*=7zEF4;`uv8Ynvr!J9`xY^)HrtZ5V9r>toZ zY5siMX5cn91Fchx!6U&dGhxajy8OCM0mWqnQm{oKVT`4)pNb7PF0w?^Vj7$BB6M?X zE5fXd5+DeVVAo^R+*Oz?3LKe^6EarbWE{I5>C4EC?FeF1Xll{?8N_~`?KOE4dk{2L z6k@ZqAW6u@Ch$!FHoI<69+C3clF@6LEg_FWkIUE@8f(orf&DyVnbEu@Z~BHC+ujH< zdjja(u{lAXVVe-^HV9cO^tvJts%YCk(@}zzT#je!vyuMSXoUJjIFNyAgqGG>U%qV< z&BoQXUAeYhD{Xro2oBGl+2`^tU8^kzaxDk$xK~<^&z|`p*q*OzF(>B}cMiV$%Ie9N zawlK9>w7uBZTIZig$?idx(Z&D{t(htJ5(tTeS+Avc=)^L?{0b`>u%2n+OqAta)I4h z_im2<-DpS|`V;Ci^dCmxQEUGvpgxq{v{F`I6(_)kz1c8jC2runU>8Uo`tcJcwtNEW zL2#w*u_E?hr=W-yWy>jbP5C;UvgK53svHx}{bn{lX4rU^zo)vMfWuTM?PA5CSv_4C zv_RuR+v}yU6(p zIcai;f8dPNn-n50i7N#DDTRKO93q&?TjYF;oPR|QZ4xRk!(qa}Q(XF|EgFTKA5el9 z-TT>BgnV!R%$eEr{6Ka?I183Juw%vEulWzoJo8h#-O*O?SsdYo?!~>gdP%Ym>w>+- z(YvrEyQx3dx(i&GqgNO05i&CzUD&dq-U?IlQ8W3dsTgQpxB$h#=SVTotS2K>@HrjF zEej{In|J5h_Y?$rTTZVrzffm&Y+XxPYLL$PEseBsSQva)U%Wj zZwX36v0$b*!Y0oRn>^koZjIL@*J4}lDU{ROA~hk@O#ML1TVS)-{D#AE85+e=Efp)|G4L$Ec=wGZ2<9q7fzlDr$y%MK%t zvN533Ya`Iy=x4{&l;w8A=rqb@1;IggZ;hY(`7E(2^~zHGb5%wIsEZ zL62(PCbvl22L{-?M6$F z=+L)IM@w3|$LxcFQFiHAN&4PNXZUHR7*npGJxo>F#|W`jJ3gv{@q%exTuF@%Dnt>q z8g2l_45Nt3mo0F1L@<8h^9X#>0#}W%0P{_CR6N)(uzbVZr16n8qBZliN-pB+Wf`m| z*L8!@gDK8>E3}e5`#7L%-kxS<EG%3 z*m4NW$#0_7qmfsD0M>~S1M2I!Tw_x`|t+3>R1hS<$_%+!L58#ZF%5(r{6ifeCW=nmpfL1Ph|s7W!+D4BEL=; zLM43kXb5gHUM+LO1Ww5|mtpKwZb`+=mU;l4qR|tH0t8f+RAl4ysvc+h1VBHc@E}7` zh>Q%T)QK{f))DJcY9W}}Q~}D$3|k0-#BVSN>U^7S#R(R_48aMx8G>(NAOgCgaOG2! z_=p?JoT~;x?6Ghw326Mt;*7~cMFWRVKsE?TKI(>1i-BSP8civKMhnkn;;UIAv%Lyb zN)X%3*hA3a8d69wb-~rZrd(jtqI)F}&bq@Kllt)47=gujOtJbuB8JHoj|CG%XQ3)J zu)VF9Q|cd08JNARjnzS;Sn(7GgREw&3EU+)9BHpn93r-z1mj;3W}OylW{nefJ6aoJ;aTKIpGtqD#cTXXePLw*0O^PYd(;=4i1-V25tU z)hCL&#uPSM<&yhtixz~%O%43F7 z{UQ!=AX+sc&X+44%2>WI6G{P^xEh@#rh?71Q_+NqO@64>s1#IRqLhLTj7)g-qclaM zHa0r(wD}!skZhRB5q@7F3%MkCpA?Q58P%{B>mN{HZh#+I;U>iKQQk2!pNn0Nj^b>D zSv6YCx)vRVijH?0J%;rjn5p=fVWj{nMKofRleQRP7dJ78mKYYCVym>V*+IjiFmao3 z7j5Pfas!>CF^ud}@*5^d^m!D8t+!#%W*SkLnJNh}dQxtWQGK?UW zNm?X8_-pXEy$tobO#h{fA!Z!|RB7aKi9i@cPRu5NuyvtpL0!t+4IIk44>53RcB1gr z86hIXrF5v;zTo3kR-cEGYubwS+fr?3oYX)3sai8BhAN)7(H(lOSxC84vZ9+31Y^sJ zXiuu`Yhv`0no5l0XbW+-Di(0?@Z1C^rS?%=pDK^_m}7=@aPJ-w+R3u4l0xSG-Ru-p z?9k`2VoI_SHVZ*F{UlnZkfsA-!dN1nW+jy0rU)B8pxG~_aH7u6NA(XW+QG7D_H;C! zC^xm#LJ`ahHm@;z3=Mszt71v3mMKMJPR+oW`-J8VH%D%atTuJ$n!1-lD@}cK-dV?N znpAvWocrR}mA9_my86}^Zhc`Tu=BmZp>L;`Prm&H6FHpR!a!l#WqlT*VnHC~C7W|Z zsYx0nI~1B<(IF(6KzWgj6-;hl-(|o7CCFgBW)L78YtTt25lpg(;z`7sfWb2BDz!5n z$BB&iC^0fjzgS9)E9|FuU3|*YfrU7Zh~aw%K-p<2o~J0oh$7b$^HSxR(Q=;1@P`%+ zYIRX2EollP-bBBn@lg;~PDo|({P?8_7>ix{9KXj6D2YcST9>Lor|~%_K%hC z5kCoAzlR=WT<24YGT9?$UZXwLDCj|gC>Q1~afif9g3n`&7N{9zISg`gbmw7A@pLMd zN*q1Z-+vg{j`oP`)FrIfcG7`cL?hM>nkqIZgd%tt`_Sw~*Ylm9`qLkI-KSc8d`3)-)LWmE$&`{;26!-ch5TW?VDEH_vYI7 zE}yz{YNdT3=iY#tJuvlVX5RB#=AO*Aw7=!ORAIFy+l%VdOnU{BRF+EAL?xsEfyd^0!>ngL zX}2Sp_2^F!c(jhI8rNzNtIwl6C+SmmMkpC!pLR_-zvNAm#KN8_r;#5iLNy+F$}#0K z$TUc8buE`|$_-r>@nm?WJ=OT)DG%e%Y?;@qjSCS6B7Y_0qnn6uCaiQ&N(d%Vvozh~ z079tKM8mqgWb6jHP~%kcXdO=e%Q5hKN)uj`d*qNHqmUXhT*J*fXpV!0X8G7=L@(u7 zC5Oge3+PD(HZp`@=Iojm)X8XqO1!B)@!^#yij29hb4FG9f{HxfCA1kwg+QAcVcU+? ztw(cPkKR##kokUQW$Uv!cjs&kO`QCe-kf{$tb4vcAMT}-sjXS>wtLN+7yDP5_spKo zH*Q#M+@5RPzT{r+UTJ)CwkF@yy4tie*MtM-cb?5Q?ObVkX4d=TK=VS)N}y};m26;F z*1e0PC`~luA@pP@O6Fq!DDK0&G@=^X!Aem78Zq^mxQR4_#B(R&8T}>*#??aW0ITG< zifcn~)OvjM_3>1i6yIPN38~oPK<~Ipz^n(S^x_GMRKWvZF7nZqhQX_W{#>Ac z*|rkcmv!%BP}l6JbT@PNl&Kv|B5|6H0H$W?_#lp+q5}F6>89XH$MYHCeA$H20D~*! zr>mr6##RfaDH&xcA~^ribUY2FB0hrtF<_6zSS-XFDLy<514cS#Sp+Nq_t$8Up;Y)A zgq5GbDQBB~d@R|$C~Bsyf{>Ob{xLyvD=J_Uf;JDtTtHk5tpv6$b*=7rGPmQ&J116l z9M1)gXWhpcD3w1)cFhA>=Mq_*O~y<*h_Cq}phzFIj^dW)H6e9KG=pM7o{*t_GzgpW`v6?n!6_%{;n@6OpjQ4H zUfJn!mYEYk4{IZi4qVN&R1B|~@*a&XQBTa0mJ%Io*=gFx4p^qR7jPazBZkWW3MpAH zUL^Qkyhuy_SPD0{P~hT4p!Y@GpkQ{b66htg{S!dPfO1icbDTA89T0dli4w{K6yTFsM5v4qJ{}RiZT4U1155Yvs=Y%P;bjgB;63j zTN#N<5!O)H9F}9x`YaCsC1Xl8JPMQC_?Qj9wSNc7_(;CfTrza+s=dT8p2oG}skXcq zmnD@B6jxCskmei$xDDEKy-vCh21fN-Uy_-=%*v>BnIZ}cclw^*^K*gmLD zOo*VyO-7EQ57^nSh{bm!WVBR0R?^ZgBem#D_Nw2l+WIL+S!-xPu6X!J8haq@R-YoA zs(sy5xK!lbUQsb#p)3-vfN`mOszbVJubgk|TmUZTb4|NO`$}L_?Tc>o=jZrl5jv7* z+Vu%_*F2(TYY}?sokm|J@03gOk?|JY$%Sw&g^e*LwV325rcP;0ll;P-D}6?&=u3gO ziGt#R@xNQDV`ZNDgqGG29fkwd6Bt(jl>@I0qnO7ICQB zCM}!0g;;> za8tK+RZJMH|6>?h2r9(44ranzaRtmMog(3PIdVNN?N7&`PzBS?bei2bn3btxycM+p zxwon~$F=4BYjJkxBsNQ8QE0FXrVF6&O{aQ^73<4%uVe<{pvmlVTx&7x|SxMsPkSuSOEoiK$0d_d>+%6g$ISfjkXefUt@ zpwV$CKCFGJ)$H4NDo=EvK zIGQE;lYhX&>dkmh$O)Or?ORp;k>Jzl9RU@0rlC?)fRvxn=bJfGZvvdB0bm=Izo6QS zJE1t6O!sgq|DB?f^wDN8N5%HhNgFOdDR(H#-;(p6$vH~S4LJI79^%wA2c+JFtPt^0 z{s%ckS~WY{AbUvf$H)=MAyxtVu9LXv3~fj&G}#r}3Wo~n@_0I)(CnnNRz5_Op?NBb z3WS1OUS%pJ{b~x$XRz#~YS5fe(L<3=CQ9m93Kq4Rn;22*Q&r`YlPfmY@!353e-VpF zqXUV$L1-6O+xF&g=x<=9?I13-nzhZo^5a1L^{aDN>1@V=grkAD>w_Km+qW28eC^KX zW(V*3a8|V8e$(dFrk-3=4|aQJy?Jk7)w@0C#mVjWy}dZ2wA$8}YwKG|ue9x(J&S$d zRW7-=FR9=b@?NO*=5sf2?rF!pmMx1HR$6dxTl-u7TYj8`Lb1js6l>f- zSr+Y!v85;Ph7RD+M1Au^o6y)s(OL1--Ow}nx~3oVvyb_@U3BWtbHk$_{<~M#zHnis zt}|cP{?O}$7Tqs2y=0j?W#)ex8Ow{{!#v+9%j~HiyZzVwbN;;V2?F7nxifiR0C&ZC zYM>tvbuGTS{HZ&e-+5wrXSVC;yUurC{{zoT@L9443(l**eC(btaQ*b$>G^YSo;73G z5zU1o-|ksXuk1K{*LMWRyXN=3dG=8wq}K$!;FguEwklUZaT9?Oo9*g;>%Lrf?xsJ(A4eFF&@WDg|CxLL)xf{-a2 z%PcW5M@vYdSwlBzC27l^$c7q*2hwKLQdB?ue_r;iTyewJKIn5y5~}((ZajbR zuCE=}1zq>fdFM|rb}et1^}g?Zk|PPN9>zm_D?^fMI=jrjFach&14KiD)fhXi=_(*U z7md?_(R1r>Q8WzdiYrIaAntM$dyi3!G+ke7ew4n13xJ2?BjYg8EwUm^##ffn^wK>f zw)$i?mh)B2I+0gP^!^h1uKZgR{COc!)lA$#UtQx-RE046;c{zX135pj7vDwe)~Ri| zp*Y{}PSDuvsy*xln&y?bLm(+>UYMz0ji_k}MjnW{D&dyTQLNVNE^6?nnNIz#>Q_3U zzgOkX9f(1>?i_RHOEdmVn_5cY%p9mG%1NOWWMfKPb*baQl^4rd@(FGUI znbIvdlTJ-LJwhp^GHej0oKv(pN6MLs2i6FlsT$BKy=CWxu9E9qw%{-$L@{b9d)Sp( zRoX_D9o1Wn6#F+!as11c;@NN1-C9;Rsa~qr?JTv#xGG%3)&Ey5VOQpDbEcddr=u@q zj6fF?@?kO)4J#%XjE|8KyLeT>W$v&Kio$dVbhP3UbciXK**NvWm3OGrtVyq#T>#B_ zd1ewy8Hqgw=SocgKO3C@0??(8W>Fj&4`GCrMsjE`K*8S$5R}`1tI|TD4dehKLMEh} zDYN@>jZbC*VlU{0IGGxU1q7%?rX5rtf=dF3#?}o88c0;c7mr^!eJrzK5Q=F!%B~vM zUCP(w7+DZzmQa%+D?w4oEc6oCh#5(wE}^pr4Awn` zn$bhpd%-Xfm)WD&Fi56r)M3^Ei(K4UJ{IkZr~2j5es&jUx*w;9_^uA6^=VuvVdsLdN!)3sAn;!^Hj~|yE1vlm!wk@i^dF`9m78A?;xU}-- z!5atXd$JveaN|n-;We9$tTt@5eq0-0x9Nf4MX?%I47<1AIeq)|(qULx9PA}ii@r6R zlX4Sx>P5znRUbO^FE<@`2!G%>UjKBHjhTv;SyGs1YyJjV%a|@Abrlc0Orq+UI*5Az+B`Mm=d06=l`OU7=lW` z6BX{Hi?}=K=EkvJw%Hgif|)of`nw=RHknR}*}fJ{LICQEbUNgs!LOO(y4q)g`>;%bs_kDC`3 zgUK)X5?jj1eikc15{evJcu0X#RUOeCW;YwlePj}Aen`F+rRMao<%%p~4a;4Aq(WcI zD1p|oSQ@)nv}hU&S`kZe8Hz$^w4M=NKx|culp^cPZb|t!gjoDWFuHOVLjJa#7srk6 zdUxf6ZL=>xvS--BOlHHL3xk@2@oa;5E}RPQtGvKLq}I?KUJ7I`exa2@RGi<*_?r}B z>uroeL^m`qyTq6uPf`9oMgI;t?~ucecKsgZ@?n`x$76an;-Zvca{hoEQkk>E4%`ap zKhW!+!qMEvVX%9KOuX|HS5FSJ7WxYc{WUp%3rDj-c;m_?(&H#h2gDRZBr7R?a_&$9 zF~$n9VhWK)g?79YB2Nm5E=mXGW5YqvXZFP$c42xQG8|d~)jvZqTq@zMojH;B*Udmp z(J*u7{-(_{&&<9wzZZWc;^16l#lHFe*6lOT&+lIdF2ojEZX8>&Z_jTH&%7}I*@f7R zS6A%e`;NMT)j^j(?4_$3j$7{R!+kOE*KmhqJx_vKg9k%P>^_IkvinZ(om$ElGP8yB zTz1EfW#oc)$3}Nf?9g){1bqwD)945;;bZXb#F+PP>;b*$84)V<3C@Os)#d1?t6j{9LS)57a<@pHPGpJk~#`+*^Wio%z;p$j^$`@Y{@sa6l~;oZe{*` zkAGI3KgnzVqx4YqE#W zXynLW2AYtsH;{q_pU=?=m0ZC_en&U=4;<(I;HQ~?-&4EhKzgB_Mi-UQ=ngUO&K2hU z@B-Z*(phNu#0(6CZj_G|1b8^$*!9jv7JL`2LyX=ygbJb0SRA|Pd*ssx$-gte{dZ5S zvG;;vt#KSCoP)R2%Di{calHKym<3PA5Nb3&3U3Lx3s3(NLeQBK4%v|dwZmH)AV?WG z5aQDSmnLt{pZ{Pf3^L~f_el1jY3$`0iEWDNthI6$$ z3J%0V&DPXfa8U?!CN?{dBnCrI1h9v>nGiZQq>Eb?h(HQj}k4-n5|JNEQP0 zRwuNGi>@Wx()lHKPTZYq-czWj_y(b&HQTx)SHH6mr1y}pVPm0@LQV8hY83ikQ~O{8 zLVAxWZq&lM>~I_-?0`qe0Z-3@kd8>TxGDxY;4L4#Gw{xl2NYzvKC~jlX&obTFM!sC z4=E}<%|(9^1bh_NMLCE@+TdtD=t6K8DNat|bPu!D)10_6jB*ku!s#k05IL=NQHarf zMs;cF;0p^e#Ed3utt9c7f5NFRmWcQ18Ud9NXsx9@gM2L}^HVKMZc*w`Q)M1f@vD6h z;bMICp#1=*|L400WN^xjP{~$+>DRQ5@~`k3AQMB)Pk-QxuU53=a(RlxtLk3`fK>h$ zusSFYE;^>W9wV9us+hCv&#ds(mvN#Os6zbRI)SgD#K*Do(8>ua>p5xkRXIf|XUX|2 zITPe;B8QFKvlQA%4lPJQ>|0BWkBcb+3Ld}na z;73-U#rlz8I3H5zr|p8};C~UG{>bW~G&pPId=zp}2+mJ^f@R;I+vZ&~QNv2oG86#Qmww!Sy#?VE8IoG#00%X|m7ntAD#{Hdr+&}o#yTR|*vhaO}d(DBog)Oa?U9154 z9h(a_`1c*Pv#~F|y5>Om;USB~vk-nLz List[str]: + return ["-r", rev] + + def fetch_new( + self, dest: str, url: HiddenText, rev_options: RevOptions, verbosity: int + ) -> None: + rev_display = rev_options.to_display() + logger.info( + "Checking out %s%s to %s", + url, + rev_display, + display_path(dest), + ) + if verbosity <= 0: + flag = "--quiet" + elif verbosity == 1: + flag = "" + else: + flag = f"-{'v'*verbosity}" + cmd_args = make_command( + "checkout", "--lightweight", flag, rev_options.to_args(), url, dest + ) + self.run_command(cmd_args) + + def switch(self, dest: str, url: HiddenText, rev_options: RevOptions) -> None: + self.run_command(make_command("switch", url), cwd=dest) + + def update(self, dest: str, url: HiddenText, rev_options: RevOptions) -> None: + output = self.run_command( + make_command("info"), show_stdout=False, stdout_only=True, cwd=dest + ) + if output.startswith("Standalone "): + # Older versions of pip used to create standalone branches. + # Convert the standalone branch to a checkout by calling "bzr bind". + cmd_args = make_command("bind", "-q", url) + self.run_command(cmd_args, cwd=dest) + + cmd_args = make_command("update", "-q", rev_options.to_args()) + self.run_command(cmd_args, cwd=dest) + + @classmethod + def get_url_rev_and_auth(cls, url: str) -> Tuple[str, Optional[str], AuthInfo]: + # hotfix the URL scheme after removing bzr+ from bzr+ssh:// re-add it + url, rev, user_pass = super().get_url_rev_and_auth(url) + if url.startswith("ssh://"): + url = "bzr+" + url + return url, rev, user_pass + + @classmethod + def get_remote_url(cls, location: str) -> str: + urls = cls.run_command( + ["info"], show_stdout=False, stdout_only=True, cwd=location + ) + for line in urls.splitlines(): + line = line.strip() + for x in ("checkout of branch: ", "parent branch: "): + if line.startswith(x): + repo = line.split(x)[1] + if cls._is_local_repository(repo): + return path_to_url(repo) + return repo + raise RemoteNotFoundError + + @classmethod + def get_revision(cls, location: str) -> str: + revision = cls.run_command( + ["revno"], + show_stdout=False, + stdout_only=True, + cwd=location, + ) + return revision.splitlines()[-1] + + @classmethod + def is_commit_id_equal(cls, dest: str, name: Optional[str]) -> bool: + """Always assume the versions don't match""" + return False + + +vcs.register(Bazaar) diff --git a/venv/lib/python3.12/site-packages/pip/_internal/vcs/git.py b/venv/lib/python3.12/site-packages/pip/_internal/vcs/git.py new file mode 100644 index 0000000..8c242cf --- /dev/null +++ b/venv/lib/python3.12/site-packages/pip/_internal/vcs/git.py @@ -0,0 +1,526 @@ +import logging +import os.path +import pathlib +import re +import urllib.parse +import urllib.request +from typing import List, Optional, Tuple + +from pip._internal.exceptions import BadCommand, InstallationError +from pip._internal.utils.misc import HiddenText, display_path, hide_url +from pip._internal.utils.subprocess import make_command +from pip._internal.vcs.versioncontrol import ( + AuthInfo, + RemoteNotFoundError, + RemoteNotValidError, + RevOptions, + VersionControl, + find_path_to_project_root_from_repo_root, + vcs, +) + +urlsplit = urllib.parse.urlsplit +urlunsplit = urllib.parse.urlunsplit + + +logger = logging.getLogger(__name__) + + +GIT_VERSION_REGEX = re.compile( + r"^git version " # Prefix. + r"(\d+)" # Major. + r"\.(\d+)" # Dot, minor. + r"(?:\.(\d+))?" # Optional dot, patch. + r".*$" # Suffix, including any pre- and post-release segments we don't care about. +) + +HASH_REGEX = re.compile("^[a-fA-F0-9]{40}$") + +# SCP (Secure copy protocol) shorthand. e.g. 'git@example.com:foo/bar.git' +SCP_REGEX = re.compile( + r"""^ + # Optional user, e.g. 'git@' + (\w+@)? + # Server, e.g. 'github.com'. + ([^/:]+): + # The server-side path. e.g. 'user/project.git'. Must start with an + # alphanumeric character so as not to be confusable with a Windows paths + # like 'C:/foo/bar' or 'C:\foo\bar'. + (\w[^:]*) + $""", + re.VERBOSE, +) + + +def looks_like_hash(sha: str) -> bool: + return bool(HASH_REGEX.match(sha)) + + +class Git(VersionControl): + name = "git" + dirname = ".git" + repo_name = "clone" + schemes = ( + "git+http", + "git+https", + "git+ssh", + "git+git", + "git+file", + ) + # Prevent the user's environment variables from interfering with pip: + # https://github.com/pypa/pip/issues/1130 + unset_environ = ("GIT_DIR", "GIT_WORK_TREE") + default_arg_rev = "HEAD" + + @staticmethod + def get_base_rev_args(rev: str) -> List[str]: + return [rev] + + def is_immutable_rev_checkout(self, url: str, dest: str) -> bool: + _, rev_options = self.get_url_rev_options(hide_url(url)) + if not rev_options.rev: + return False + if not self.is_commit_id_equal(dest, rev_options.rev): + # the current commit is different from rev, + # which means rev was something else than a commit hash + return False + # return False in the rare case rev is both a commit hash + # and a tag or a branch; we don't want to cache in that case + # because that branch/tag could point to something else in the future + is_tag_or_branch = bool(self.get_revision_sha(dest, rev_options.rev)[0]) + return not is_tag_or_branch + + def get_git_version(self) -> Tuple[int, ...]: + version = self.run_command( + ["version"], + command_desc="git version", + show_stdout=False, + stdout_only=True, + ) + match = GIT_VERSION_REGEX.match(version) + if not match: + logger.warning("Can't parse git version: %s", version) + return () + return (int(match.group(1)), int(match.group(2))) + + @classmethod + def get_current_branch(cls, location: str) -> Optional[str]: + """ + Return the current branch, or None if HEAD isn't at a branch + (e.g. detached HEAD). + """ + # git-symbolic-ref exits with empty stdout if "HEAD" is a detached + # HEAD rather than a symbolic ref. In addition, the -q causes the + # command to exit with status code 1 instead of 128 in this case + # and to suppress the message to stderr. + args = ["symbolic-ref", "-q", "HEAD"] + output = cls.run_command( + args, + extra_ok_returncodes=(1,), + show_stdout=False, + stdout_only=True, + cwd=location, + ) + ref = output.strip() + + if ref.startswith("refs/heads/"): + return ref[len("refs/heads/") :] + + return None + + @classmethod + def get_revision_sha(cls, dest: str, rev: str) -> Tuple[Optional[str], bool]: + """ + Return (sha_or_none, is_branch), where sha_or_none is a commit hash + if the revision names a remote branch or tag, otherwise None. + + Args: + dest: the repository directory. + rev: the revision name. + """ + # Pass rev to pre-filter the list. + output = cls.run_command( + ["show-ref", rev], + cwd=dest, + show_stdout=False, + stdout_only=True, + on_returncode="ignore", + ) + refs = {} + # NOTE: We do not use splitlines here since that would split on other + # unicode separators, which can be maliciously used to install a + # different revision. + for line in output.strip().split("\n"): + line = line.rstrip("\r") + if not line: + continue + try: + ref_sha, ref_name = line.split(" ", maxsplit=2) + except ValueError: + # Include the offending line to simplify troubleshooting if + # this error ever occurs. + raise ValueError(f"unexpected show-ref line: {line!r}") + + refs[ref_name] = ref_sha + + branch_ref = f"refs/remotes/origin/{rev}" + tag_ref = f"refs/tags/{rev}" + + sha = refs.get(branch_ref) + if sha is not None: + return (sha, True) + + sha = refs.get(tag_ref) + + return (sha, False) + + @classmethod + def _should_fetch(cls, dest: str, rev: str) -> bool: + """ + Return true if rev is a ref or is a commit that we don't have locally. + + Branches and tags are not considered in this method because they are + assumed to be always available locally (which is a normal outcome of + ``git clone`` and ``git fetch --tags``). + """ + if rev.startswith("refs/"): + # Always fetch remote refs. + return True + + if not looks_like_hash(rev): + # Git fetch would fail with abbreviated commits. + return False + + if cls.has_commit(dest, rev): + # Don't fetch if we have the commit locally. + return False + + return True + + @classmethod + def resolve_revision( + cls, dest: str, url: HiddenText, rev_options: RevOptions + ) -> RevOptions: + """ + Resolve a revision to a new RevOptions object with the SHA1 of the + branch, tag, or ref if found. + + Args: + rev_options: a RevOptions object. + """ + rev = rev_options.arg_rev + # The arg_rev property's implementation for Git ensures that the + # rev return value is always non-None. + assert rev is not None + + sha, is_branch = cls.get_revision_sha(dest, rev) + + if sha is not None: + rev_options = rev_options.make_new(sha) + rev_options.branch_name = rev if is_branch else None + + return rev_options + + # Do not show a warning for the common case of something that has + # the form of a Git commit hash. + if not looks_like_hash(rev): + logger.warning( + "Did not find branch or tag '%s', assuming revision or ref.", + rev, + ) + + if not cls._should_fetch(dest, rev): + return rev_options + + # fetch the requested revision + cls.run_command( + make_command("fetch", "-q", url, rev_options.to_args()), + cwd=dest, + ) + # Change the revision to the SHA of the ref we fetched + sha = cls.get_revision(dest, rev="FETCH_HEAD") + rev_options = rev_options.make_new(sha) + + return rev_options + + @classmethod + def is_commit_id_equal(cls, dest: str, name: Optional[str]) -> bool: + """ + Return whether the current commit hash equals the given name. + + Args: + dest: the repository directory. + name: a string name. + """ + if not name: + # Then avoid an unnecessary subprocess call. + return False + + return cls.get_revision(dest) == name + + def fetch_new( + self, dest: str, url: HiddenText, rev_options: RevOptions, verbosity: int + ) -> None: + rev_display = rev_options.to_display() + logger.info("Cloning %s%s to %s", url, rev_display, display_path(dest)) + if verbosity <= 0: + flags: Tuple[str, ...] = ("--quiet",) + elif verbosity == 1: + flags = () + else: + flags = ("--verbose", "--progress") + if self.get_git_version() >= (2, 17): + # Git added support for partial clone in 2.17 + # https://git-scm.com/docs/partial-clone + # Speeds up cloning by functioning without a complete copy of repository + self.run_command( + make_command( + "clone", + "--filter=blob:none", + *flags, + url, + dest, + ) + ) + else: + self.run_command(make_command("clone", *flags, url, dest)) + + if rev_options.rev: + # Then a specific revision was requested. + rev_options = self.resolve_revision(dest, url, rev_options) + branch_name = getattr(rev_options, "branch_name", None) + logger.debug("Rev options %s, branch_name %s", rev_options, branch_name) + if branch_name is None: + # Only do a checkout if the current commit id doesn't match + # the requested revision. + if not self.is_commit_id_equal(dest, rev_options.rev): + cmd_args = make_command( + "checkout", + "-q", + rev_options.to_args(), + ) + self.run_command(cmd_args, cwd=dest) + elif self.get_current_branch(dest) != branch_name: + # Then a specific branch was requested, and that branch + # is not yet checked out. + track_branch = f"origin/{branch_name}" + cmd_args = [ + "checkout", + "-b", + branch_name, + "--track", + track_branch, + ] + self.run_command(cmd_args, cwd=dest) + else: + sha = self.get_revision(dest) + rev_options = rev_options.make_new(sha) + + logger.info("Resolved %s to commit %s", url, rev_options.rev) + + #: repo may contain submodules + self.update_submodules(dest) + + def switch(self, dest: str, url: HiddenText, rev_options: RevOptions) -> None: + self.run_command( + make_command("config", "remote.origin.url", url), + cwd=dest, + ) + cmd_args = make_command("checkout", "-q", rev_options.to_args()) + self.run_command(cmd_args, cwd=dest) + + self.update_submodules(dest) + + def update(self, dest: str, url: HiddenText, rev_options: RevOptions) -> None: + # First fetch changes from the default remote + if self.get_git_version() >= (1, 9): + # fetch tags in addition to everything else + self.run_command(["fetch", "-q", "--tags"], cwd=dest) + else: + self.run_command(["fetch", "-q"], cwd=dest) + # Then reset to wanted revision (maybe even origin/master) + rev_options = self.resolve_revision(dest, url, rev_options) + cmd_args = make_command("reset", "--hard", "-q", rev_options.to_args()) + self.run_command(cmd_args, cwd=dest) + #: update submodules + self.update_submodules(dest) + + @classmethod + def get_remote_url(cls, location: str) -> str: + """ + Return URL of the first remote encountered. + + Raises RemoteNotFoundError if the repository does not have a remote + url configured. + """ + # We need to pass 1 for extra_ok_returncodes since the command + # exits with return code 1 if there are no matching lines. + stdout = cls.run_command( + ["config", "--get-regexp", r"remote\..*\.url"], + extra_ok_returncodes=(1,), + show_stdout=False, + stdout_only=True, + cwd=location, + ) + remotes = stdout.splitlines() + try: + found_remote = remotes[0] + except IndexError: + raise RemoteNotFoundError + + for remote in remotes: + if remote.startswith("remote.origin.url "): + found_remote = remote + break + url = found_remote.split(" ")[1] + return cls._git_remote_to_pip_url(url.strip()) + + @staticmethod + def _git_remote_to_pip_url(url: str) -> str: + """ + Convert a remote url from what git uses to what pip accepts. + + There are 3 legal forms **url** may take: + + 1. A fully qualified url: ssh://git@example.com/foo/bar.git + 2. A local project.git folder: /path/to/bare/repository.git + 3. SCP shorthand for form 1: git@example.com:foo/bar.git + + Form 1 is output as-is. Form 2 must be converted to URI and form 3 must + be converted to form 1. + + See the corresponding test test_git_remote_url_to_pip() for examples of + sample inputs/outputs. + """ + if re.match(r"\w+://", url): + # This is already valid. Pass it though as-is. + return url + if os.path.exists(url): + # A local bare remote (git clone --mirror). + # Needs a file:// prefix. + return pathlib.PurePath(url).as_uri() + scp_match = SCP_REGEX.match(url) + if scp_match: + # Add an ssh:// prefix and replace the ':' with a '/'. + return scp_match.expand(r"ssh://\1\2/\3") + # Otherwise, bail out. + raise RemoteNotValidError(url) + + @classmethod + def has_commit(cls, location: str, rev: str) -> bool: + """ + Check if rev is a commit that is available in the local repository. + """ + try: + cls.run_command( + ["rev-parse", "-q", "--verify", "sha^" + rev], + cwd=location, + log_failed_cmd=False, + ) + except InstallationError: + return False + else: + return True + + @classmethod + def get_revision(cls, location: str, rev: Optional[str] = None) -> str: + if rev is None: + rev = "HEAD" + current_rev = cls.run_command( + ["rev-parse", rev], + show_stdout=False, + stdout_only=True, + cwd=location, + ) + return current_rev.strip() + + @classmethod + def get_subdirectory(cls, location: str) -> Optional[str]: + """ + Return the path to Python project root, relative to the repo root. + Return None if the project root is in the repo root. + """ + # find the repo root + git_dir = cls.run_command( + ["rev-parse", "--git-dir"], + show_stdout=False, + stdout_only=True, + cwd=location, + ).strip() + if not os.path.isabs(git_dir): + git_dir = os.path.join(location, git_dir) + repo_root = os.path.abspath(os.path.join(git_dir, "..")) + return find_path_to_project_root_from_repo_root(location, repo_root) + + @classmethod + def get_url_rev_and_auth(cls, url: str) -> Tuple[str, Optional[str], AuthInfo]: + """ + Prefixes stub URLs like 'user@hostname:user/repo.git' with 'ssh://'. + That's required because although they use SSH they sometimes don't + work with a ssh:// scheme (e.g. GitHub). But we need a scheme for + parsing. Hence we remove it again afterwards and return it as a stub. + """ + # Works around an apparent Git bug + # (see https://article.gmane.org/gmane.comp.version-control.git/146500) + scheme, netloc, path, query, fragment = urlsplit(url) + if scheme.endswith("file"): + initial_slashes = path[: -len(path.lstrip("/"))] + newpath = initial_slashes + urllib.request.url2pathname(path).replace( + "\\", "/" + ).lstrip("/") + after_plus = scheme.find("+") + 1 + url = scheme[:after_plus] + urlunsplit( + (scheme[after_plus:], netloc, newpath, query, fragment), + ) + + if "://" not in url: + assert "file:" not in url + url = url.replace("git+", "git+ssh://") + url, rev, user_pass = super().get_url_rev_and_auth(url) + url = url.replace("ssh://", "") + else: + url, rev, user_pass = super().get_url_rev_and_auth(url) + + return url, rev, user_pass + + @classmethod + def update_submodules(cls, location: str) -> None: + if not os.path.exists(os.path.join(location, ".gitmodules")): + return + cls.run_command( + ["submodule", "update", "--init", "--recursive", "-q"], + cwd=location, + ) + + @classmethod + def get_repository_root(cls, location: str) -> Optional[str]: + loc = super().get_repository_root(location) + if loc: + return loc + try: + r = cls.run_command( + ["rev-parse", "--show-toplevel"], + cwd=location, + show_stdout=False, + stdout_only=True, + on_returncode="raise", + log_failed_cmd=False, + ) + except BadCommand: + logger.debug( + "could not determine if %s is under git control " + "because git is not available", + location, + ) + return None + except InstallationError: + return None + return os.path.normpath(r.rstrip("\r\n")) + + @staticmethod + def should_add_vcs_url_prefix(repo_url: str) -> bool: + """In either https or ssh form, requirements must be prefixed with git+.""" + return True + + +vcs.register(Git) diff --git a/venv/lib/python3.12/site-packages/pip/_internal/vcs/mercurial.py b/venv/lib/python3.12/site-packages/pip/_internal/vcs/mercurial.py new file mode 100644 index 0000000..c183d41 --- /dev/null +++ b/venv/lib/python3.12/site-packages/pip/_internal/vcs/mercurial.py @@ -0,0 +1,163 @@ +import configparser +import logging +import os +from typing import List, Optional, Tuple + +from pip._internal.exceptions import BadCommand, InstallationError +from pip._internal.utils.misc import HiddenText, display_path +from pip._internal.utils.subprocess import make_command +from pip._internal.utils.urls import path_to_url +from pip._internal.vcs.versioncontrol import ( + RevOptions, + VersionControl, + find_path_to_project_root_from_repo_root, + vcs, +) + +logger = logging.getLogger(__name__) + + +class Mercurial(VersionControl): + name = "hg" + dirname = ".hg" + repo_name = "clone" + schemes = ( + "hg+file", + "hg+http", + "hg+https", + "hg+ssh", + "hg+static-http", + ) + + @staticmethod + def get_base_rev_args(rev: str) -> List[str]: + return [f"--rev={rev}"] + + def fetch_new( + self, dest: str, url: HiddenText, rev_options: RevOptions, verbosity: int + ) -> None: + rev_display = rev_options.to_display() + logger.info( + "Cloning hg %s%s to %s", + url, + rev_display, + display_path(dest), + ) + if verbosity <= 0: + flags: Tuple[str, ...] = ("--quiet",) + elif verbosity == 1: + flags = () + elif verbosity == 2: + flags = ("--verbose",) + else: + flags = ("--verbose", "--debug") + self.run_command(make_command("clone", "--noupdate", *flags, url, dest)) + self.run_command( + make_command("update", *flags, rev_options.to_args()), + cwd=dest, + ) + + def switch(self, dest: str, url: HiddenText, rev_options: RevOptions) -> None: + repo_config = os.path.join(dest, self.dirname, "hgrc") + config = configparser.RawConfigParser() + try: + config.read(repo_config) + config.set("paths", "default", url.secret) + with open(repo_config, "w") as config_file: + config.write(config_file) + except (OSError, configparser.NoSectionError) as exc: + logger.warning("Could not switch Mercurial repository to %s: %s", url, exc) + else: + cmd_args = make_command("update", "-q", rev_options.to_args()) + self.run_command(cmd_args, cwd=dest) + + def update(self, dest: str, url: HiddenText, rev_options: RevOptions) -> None: + self.run_command(["pull", "-q"], cwd=dest) + cmd_args = make_command("update", "-q", rev_options.to_args()) + self.run_command(cmd_args, cwd=dest) + + @classmethod + def get_remote_url(cls, location: str) -> str: + url = cls.run_command( + ["showconfig", "paths.default"], + show_stdout=False, + stdout_only=True, + cwd=location, + ).strip() + if cls._is_local_repository(url): + url = path_to_url(url) + return url.strip() + + @classmethod + def get_revision(cls, location: str) -> str: + """ + Return the repository-local changeset revision number, as an integer. + """ + current_revision = cls.run_command( + ["parents", "--template={rev}"], + show_stdout=False, + stdout_only=True, + cwd=location, + ).strip() + return current_revision + + @classmethod + def get_requirement_revision(cls, location: str) -> str: + """ + Return the changeset identification hash, as a 40-character + hexadecimal string + """ + current_rev_hash = cls.run_command( + ["parents", "--template={node}"], + show_stdout=False, + stdout_only=True, + cwd=location, + ).strip() + return current_rev_hash + + @classmethod + def is_commit_id_equal(cls, dest: str, name: Optional[str]) -> bool: + """Always assume the versions don't match""" + return False + + @classmethod + def get_subdirectory(cls, location: str) -> Optional[str]: + """ + Return the path to Python project root, relative to the repo root. + Return None if the project root is in the repo root. + """ + # find the repo root + repo_root = cls.run_command( + ["root"], show_stdout=False, stdout_only=True, cwd=location + ).strip() + if not os.path.isabs(repo_root): + repo_root = os.path.abspath(os.path.join(location, repo_root)) + return find_path_to_project_root_from_repo_root(location, repo_root) + + @classmethod + def get_repository_root(cls, location: str) -> Optional[str]: + loc = super().get_repository_root(location) + if loc: + return loc + try: + r = cls.run_command( + ["root"], + cwd=location, + show_stdout=False, + stdout_only=True, + on_returncode="raise", + log_failed_cmd=False, + ) + except BadCommand: + logger.debug( + "could not determine if %s is under hg control " + "because hg is not available", + location, + ) + return None + except InstallationError: + return None + return os.path.normpath(r.rstrip("\r\n")) + + +vcs.register(Mercurial) diff --git a/venv/lib/python3.12/site-packages/pip/_internal/vcs/subversion.py b/venv/lib/python3.12/site-packages/pip/_internal/vcs/subversion.py new file mode 100644 index 0000000..16d93a6 --- /dev/null +++ b/venv/lib/python3.12/site-packages/pip/_internal/vcs/subversion.py @@ -0,0 +1,324 @@ +import logging +import os +import re +from typing import List, Optional, Tuple + +from pip._internal.utils.misc import ( + HiddenText, + display_path, + is_console_interactive, + is_installable_dir, + split_auth_from_netloc, +) +from pip._internal.utils.subprocess import CommandArgs, make_command +from pip._internal.vcs.versioncontrol import ( + AuthInfo, + RemoteNotFoundError, + RevOptions, + VersionControl, + vcs, +) + +logger = logging.getLogger(__name__) + +_svn_xml_url_re = re.compile('url="([^"]+)"') +_svn_rev_re = re.compile(r'committed-rev="(\d+)"') +_svn_info_xml_rev_re = re.compile(r'\s*revision="(\d+)"') +_svn_info_xml_url_re = re.compile(r"(.*)") + + +class Subversion(VersionControl): + name = "svn" + dirname = ".svn" + repo_name = "checkout" + schemes = ("svn+ssh", "svn+http", "svn+https", "svn+svn", "svn+file") + + @classmethod + def should_add_vcs_url_prefix(cls, remote_url: str) -> bool: + return True + + @staticmethod + def get_base_rev_args(rev: str) -> List[str]: + return ["-r", rev] + + @classmethod + def get_revision(cls, location: str) -> str: + """ + Return the maximum revision for all files under a given location + """ + # Note: taken from setuptools.command.egg_info + revision = 0 + + for base, dirs, _ in os.walk(location): + if cls.dirname not in dirs: + dirs[:] = [] + continue # no sense walking uncontrolled subdirs + dirs.remove(cls.dirname) + entries_fn = os.path.join(base, cls.dirname, "entries") + if not os.path.exists(entries_fn): + # FIXME: should we warn? + continue + + dirurl, localrev = cls._get_svn_url_rev(base) + + if base == location: + assert dirurl is not None + base = dirurl + "/" # save the root url + elif not dirurl or not dirurl.startswith(base): + dirs[:] = [] + continue # not part of the same svn tree, skip it + revision = max(revision, localrev) + return str(revision) + + @classmethod + def get_netloc_and_auth( + cls, netloc: str, scheme: str + ) -> Tuple[str, Tuple[Optional[str], Optional[str]]]: + """ + This override allows the auth information to be passed to svn via the + --username and --password options instead of via the URL. + """ + if scheme == "ssh": + # The --username and --password options can't be used for + # svn+ssh URLs, so keep the auth information in the URL. + return super().get_netloc_and_auth(netloc, scheme) + + return split_auth_from_netloc(netloc) + + @classmethod + def get_url_rev_and_auth(cls, url: str) -> Tuple[str, Optional[str], AuthInfo]: + # hotfix the URL scheme after removing svn+ from svn+ssh:// re-add it + url, rev, user_pass = super().get_url_rev_and_auth(url) + if url.startswith("ssh://"): + url = "svn+" + url + return url, rev, user_pass + + @staticmethod + def make_rev_args( + username: Optional[str], password: Optional[HiddenText] + ) -> CommandArgs: + extra_args: CommandArgs = [] + if username: + extra_args += ["--username", username] + if password: + extra_args += ["--password", password] + + return extra_args + + @classmethod + def get_remote_url(cls, location: str) -> str: + # In cases where the source is in a subdirectory, we have to look up in + # the location until we find a valid project root. + orig_location = location + while not is_installable_dir(location): + last_location = location + location = os.path.dirname(location) + if location == last_location: + # We've traversed up to the root of the filesystem without + # finding a Python project. + logger.warning( + "Could not find Python project for directory %s (tried all " + "parent directories)", + orig_location, + ) + raise RemoteNotFoundError + + url, _rev = cls._get_svn_url_rev(location) + if url is None: + raise RemoteNotFoundError + + return url + + @classmethod + def _get_svn_url_rev(cls, location: str) -> Tuple[Optional[str], int]: + from pip._internal.exceptions import InstallationError + + entries_path = os.path.join(location, cls.dirname, "entries") + if os.path.exists(entries_path): + with open(entries_path) as f: + data = f.read() + else: # subversion >= 1.7 does not have the 'entries' file + data = "" + + url = None + if data.startswith("8") or data.startswith("9") or data.startswith("10"): + entries = list(map(str.splitlines, data.split("\n\x0c\n"))) + del entries[0][0] # get rid of the '8' + url = entries[0][3] + revs = [int(d[9]) for d in entries if len(d) > 9 and d[9]] + [0] + elif data.startswith("= 1.7 + # Note that using get_remote_call_options is not necessary here + # because `svn info` is being run against a local directory. + # We don't need to worry about making sure interactive mode + # is being used to prompt for passwords, because passwords + # are only potentially needed for remote server requests. + xml = cls.run_command( + ["info", "--xml", location], + show_stdout=False, + stdout_only=True, + ) + match = _svn_info_xml_url_re.search(xml) + assert match is not None + url = match.group(1) + revs = [int(m.group(1)) for m in _svn_info_xml_rev_re.finditer(xml)] + except InstallationError: + url, revs = None, [] + + if revs: + rev = max(revs) + else: + rev = 0 + + return url, rev + + @classmethod + def is_commit_id_equal(cls, dest: str, name: Optional[str]) -> bool: + """Always assume the versions don't match""" + return False + + def __init__(self, use_interactive: Optional[bool] = None) -> None: + if use_interactive is None: + use_interactive = is_console_interactive() + self.use_interactive = use_interactive + + # This member is used to cache the fetched version of the current + # ``svn`` client. + # Special value definitions: + # None: Not evaluated yet. + # Empty tuple: Could not parse version. + self._vcs_version: Optional[Tuple[int, ...]] = None + + super().__init__() + + def call_vcs_version(self) -> Tuple[int, ...]: + """Query the version of the currently installed Subversion client. + + :return: A tuple containing the parts of the version information or + ``()`` if the version returned from ``svn`` could not be parsed. + :raises: BadCommand: If ``svn`` is not installed. + """ + # Example versions: + # svn, version 1.10.3 (r1842928) + # compiled Feb 25 2019, 14:20:39 on x86_64-apple-darwin17.0.0 + # svn, version 1.7.14 (r1542130) + # compiled Mar 28 2018, 08:49:13 on x86_64-pc-linux-gnu + # svn, version 1.12.0-SlikSvn (SlikSvn/1.12.0) + # compiled May 28 2019, 13:44:56 on x86_64-microsoft-windows6.2 + version_prefix = "svn, version " + version = self.run_command(["--version"], show_stdout=False, stdout_only=True) + if not version.startswith(version_prefix): + return () + + version = version[len(version_prefix) :].split()[0] + version_list = version.partition("-")[0].split(".") + try: + parsed_version = tuple(map(int, version_list)) + except ValueError: + return () + + return parsed_version + + def get_vcs_version(self) -> Tuple[int, ...]: + """Return the version of the currently installed Subversion client. + + If the version of the Subversion client has already been queried, + a cached value will be used. + + :return: A tuple containing the parts of the version information or + ``()`` if the version returned from ``svn`` could not be parsed. + :raises: BadCommand: If ``svn`` is not installed. + """ + if self._vcs_version is not None: + # Use cached version, if available. + # If parsing the version failed previously (empty tuple), + # do not attempt to parse it again. + return self._vcs_version + + vcs_version = self.call_vcs_version() + self._vcs_version = vcs_version + return vcs_version + + def get_remote_call_options(self) -> CommandArgs: + """Return options to be used on calls to Subversion that contact the server. + + These options are applicable for the following ``svn`` subcommands used + in this class. + + - checkout + - switch + - update + + :return: A list of command line arguments to pass to ``svn``. + """ + if not self.use_interactive: + # --non-interactive switch is available since Subversion 0.14.4. + # Subversion < 1.8 runs in interactive mode by default. + return ["--non-interactive"] + + svn_version = self.get_vcs_version() + # By default, Subversion >= 1.8 runs in non-interactive mode if + # stdin is not a TTY. Since that is how pip invokes SVN, in + # call_subprocess(), pip must pass --force-interactive to ensure + # the user can be prompted for a password, if required. + # SVN added the --force-interactive option in SVN 1.8. Since + # e.g. RHEL/CentOS 7, which is supported until 2024, ships with + # SVN 1.7, pip should continue to support SVN 1.7. Therefore, pip + # can't safely add the option if the SVN version is < 1.8 (or unknown). + if svn_version >= (1, 8): + return ["--force-interactive"] + + return [] + + def fetch_new( + self, dest: str, url: HiddenText, rev_options: RevOptions, verbosity: int + ) -> None: + rev_display = rev_options.to_display() + logger.info( + "Checking out %s%s to %s", + url, + rev_display, + display_path(dest), + ) + if verbosity <= 0: + flag = "--quiet" + else: + flag = "" + cmd_args = make_command( + "checkout", + flag, + self.get_remote_call_options(), + rev_options.to_args(), + url, + dest, + ) + self.run_command(cmd_args) + + def switch(self, dest: str, url: HiddenText, rev_options: RevOptions) -> None: + cmd_args = make_command( + "switch", + self.get_remote_call_options(), + rev_options.to_args(), + url, + dest, + ) + self.run_command(cmd_args) + + def update(self, dest: str, url: HiddenText, rev_options: RevOptions) -> None: + cmd_args = make_command( + "update", + self.get_remote_call_options(), + rev_options.to_args(), + dest, + ) + self.run_command(cmd_args) + + +vcs.register(Subversion) diff --git a/venv/lib/python3.12/site-packages/pip/_internal/vcs/versioncontrol.py b/venv/lib/python3.12/site-packages/pip/_internal/vcs/versioncontrol.py new file mode 100644 index 0000000..46ca279 --- /dev/null +++ b/venv/lib/python3.12/site-packages/pip/_internal/vcs/versioncontrol.py @@ -0,0 +1,705 @@ +"""Handles all VCS (version control) support""" + +import logging +import os +import shutil +import sys +import urllib.parse +from typing import ( + TYPE_CHECKING, + Any, + Dict, + Iterable, + Iterator, + List, + Mapping, + Optional, + Tuple, + Type, + Union, +) + +from pip._internal.cli.spinners import SpinnerInterface +from pip._internal.exceptions import BadCommand, InstallationError +from pip._internal.utils.misc import ( + HiddenText, + ask_path_exists, + backup_dir, + display_path, + hide_url, + hide_value, + is_installable_dir, + rmtree, +) +from pip._internal.utils.subprocess import ( + CommandArgs, + call_subprocess, + format_command_args, + make_command, +) +from pip._internal.utils.urls import get_url_scheme + +if TYPE_CHECKING: + # Literal was introduced in Python 3.8. + # + # TODO: Remove `if TYPE_CHECKING` when dropping support for Python 3.7. + from typing import Literal + + +__all__ = ["vcs"] + + +logger = logging.getLogger(__name__) + +AuthInfo = Tuple[Optional[str], Optional[str]] + + +def is_url(name: str) -> bool: + """ + Return true if the name looks like a URL. + """ + scheme = get_url_scheme(name) + if scheme is None: + return False + return scheme in ["http", "https", "file", "ftp"] + vcs.all_schemes + + +def make_vcs_requirement_url( + repo_url: str, rev: str, project_name: str, subdir: Optional[str] = None +) -> str: + """ + Return the URL for a VCS requirement. + + Args: + repo_url: the remote VCS url, with any needed VCS prefix (e.g. "git+"). + project_name: the (unescaped) project name. + """ + egg_project_name = project_name.replace("-", "_") + req = f"{repo_url}@{rev}#egg={egg_project_name}" + if subdir: + req += f"&subdirectory={subdir}" + + return req + + +def find_path_to_project_root_from_repo_root( + location: str, repo_root: str +) -> Optional[str]: + """ + Find the the Python project's root by searching up the filesystem from + `location`. Return the path to project root relative to `repo_root`. + Return None if the project root is `repo_root`, or cannot be found. + """ + # find project root. + orig_location = location + while not is_installable_dir(location): + last_location = location + location = os.path.dirname(location) + if location == last_location: + # We've traversed up to the root of the filesystem without + # finding a Python project. + logger.warning( + "Could not find a Python project for directory %s (tried all " + "parent directories)", + orig_location, + ) + return None + + if os.path.samefile(repo_root, location): + return None + + return os.path.relpath(location, repo_root) + + +class RemoteNotFoundError(Exception): + pass + + +class RemoteNotValidError(Exception): + def __init__(self, url: str): + super().__init__(url) + self.url = url + + +class RevOptions: + + """ + Encapsulates a VCS-specific revision to install, along with any VCS + install options. + + Instances of this class should be treated as if immutable. + """ + + def __init__( + self, + vc_class: Type["VersionControl"], + rev: Optional[str] = None, + extra_args: Optional[CommandArgs] = None, + ) -> None: + """ + Args: + vc_class: a VersionControl subclass. + rev: the name of the revision to install. + extra_args: a list of extra options. + """ + if extra_args is None: + extra_args = [] + + self.extra_args = extra_args + self.rev = rev + self.vc_class = vc_class + self.branch_name: Optional[str] = None + + def __repr__(self) -> str: + return f"" + + @property + def arg_rev(self) -> Optional[str]: + if self.rev is None: + return self.vc_class.default_arg_rev + + return self.rev + + def to_args(self) -> CommandArgs: + """ + Return the VCS-specific command arguments. + """ + args: CommandArgs = [] + rev = self.arg_rev + if rev is not None: + args += self.vc_class.get_base_rev_args(rev) + args += self.extra_args + + return args + + def to_display(self) -> str: + if not self.rev: + return "" + + return f" (to revision {self.rev})" + + def make_new(self, rev: str) -> "RevOptions": + """ + Make a copy of the current instance, but with a new rev. + + Args: + rev: the name of the revision for the new object. + """ + return self.vc_class.make_rev_options(rev, extra_args=self.extra_args) + + +class VcsSupport: + _registry: Dict[str, "VersionControl"] = {} + schemes = ["ssh", "git", "hg", "bzr", "sftp", "svn"] + + def __init__(self) -> None: + # Register more schemes with urlparse for various version control + # systems + urllib.parse.uses_netloc.extend(self.schemes) + super().__init__() + + def __iter__(self) -> Iterator[str]: + return self._registry.__iter__() + + @property + def backends(self) -> List["VersionControl"]: + return list(self._registry.values()) + + @property + def dirnames(self) -> List[str]: + return [backend.dirname for backend in self.backends] + + @property + def all_schemes(self) -> List[str]: + schemes: List[str] = [] + for backend in self.backends: + schemes.extend(backend.schemes) + return schemes + + def register(self, cls: Type["VersionControl"]) -> None: + if not hasattr(cls, "name"): + logger.warning("Cannot register VCS %s", cls.__name__) + return + if cls.name not in self._registry: + self._registry[cls.name] = cls() + logger.debug("Registered VCS backend: %s", cls.name) + + def unregister(self, name: str) -> None: + if name in self._registry: + del self._registry[name] + + def get_backend_for_dir(self, location: str) -> Optional["VersionControl"]: + """ + Return a VersionControl object if a repository of that type is found + at the given directory. + """ + vcs_backends = {} + for vcs_backend in self._registry.values(): + repo_path = vcs_backend.get_repository_root(location) + if not repo_path: + continue + logger.debug("Determine that %s uses VCS: %s", location, vcs_backend.name) + vcs_backends[repo_path] = vcs_backend + + if not vcs_backends: + return None + + # Choose the VCS in the inner-most directory. Since all repository + # roots found here would be either `location` or one of its + # parents, the longest path should have the most path components, + # i.e. the backend representing the inner-most repository. + inner_most_repo_path = max(vcs_backends, key=len) + return vcs_backends[inner_most_repo_path] + + def get_backend_for_scheme(self, scheme: str) -> Optional["VersionControl"]: + """ + Return a VersionControl object or None. + """ + for vcs_backend in self._registry.values(): + if scheme in vcs_backend.schemes: + return vcs_backend + return None + + def get_backend(self, name: str) -> Optional["VersionControl"]: + """ + Return a VersionControl object or None. + """ + name = name.lower() + return self._registry.get(name) + + +vcs = VcsSupport() + + +class VersionControl: + name = "" + dirname = "" + repo_name = "" + # List of supported schemes for this Version Control + schemes: Tuple[str, ...] = () + # Iterable of environment variable names to pass to call_subprocess(). + unset_environ: Tuple[str, ...] = () + default_arg_rev: Optional[str] = None + + @classmethod + def should_add_vcs_url_prefix(cls, remote_url: str) -> bool: + """ + Return whether the vcs prefix (e.g. "git+") should be added to a + repository's remote url when used in a requirement. + """ + return not remote_url.lower().startswith(f"{cls.name}:") + + @classmethod + def get_subdirectory(cls, location: str) -> Optional[str]: + """ + Return the path to Python project root, relative to the repo root. + Return None if the project root is in the repo root. + """ + return None + + @classmethod + def get_requirement_revision(cls, repo_dir: str) -> str: + """ + Return the revision string that should be used in a requirement. + """ + return cls.get_revision(repo_dir) + + @classmethod + def get_src_requirement(cls, repo_dir: str, project_name: str) -> str: + """ + Return the requirement string to use to redownload the files + currently at the given repository directory. + + Args: + project_name: the (unescaped) project name. + + The return value has a form similar to the following: + + {repository_url}@{revision}#egg={project_name} + """ + repo_url = cls.get_remote_url(repo_dir) + + if cls.should_add_vcs_url_prefix(repo_url): + repo_url = f"{cls.name}+{repo_url}" + + revision = cls.get_requirement_revision(repo_dir) + subdir = cls.get_subdirectory(repo_dir) + req = make_vcs_requirement_url(repo_url, revision, project_name, subdir=subdir) + + return req + + @staticmethod + def get_base_rev_args(rev: str) -> List[str]: + """ + Return the base revision arguments for a vcs command. + + Args: + rev: the name of a revision to install. Cannot be None. + """ + raise NotImplementedError + + def is_immutable_rev_checkout(self, url: str, dest: str) -> bool: + """ + Return true if the commit hash checked out at dest matches + the revision in url. + + Always return False, if the VCS does not support immutable commit + hashes. + + This method does not check if there are local uncommitted changes + in dest after checkout, as pip currently has no use case for that. + """ + return False + + @classmethod + def make_rev_options( + cls, rev: Optional[str] = None, extra_args: Optional[CommandArgs] = None + ) -> RevOptions: + """ + Return a RevOptions object. + + Args: + rev: the name of a revision to install. + extra_args: a list of extra options. + """ + return RevOptions(cls, rev, extra_args=extra_args) + + @classmethod + def _is_local_repository(cls, repo: str) -> bool: + """ + posix absolute paths start with os.path.sep, + win32 ones start with drive (like c:\\folder) + """ + drive, tail = os.path.splitdrive(repo) + return repo.startswith(os.path.sep) or bool(drive) + + @classmethod + def get_netloc_and_auth( + cls, netloc: str, scheme: str + ) -> Tuple[str, Tuple[Optional[str], Optional[str]]]: + """ + Parse the repository URL's netloc, and return the new netloc to use + along with auth information. + + Args: + netloc: the original repository URL netloc. + scheme: the repository URL's scheme without the vcs prefix. + + This is mainly for the Subversion class to override, so that auth + information can be provided via the --username and --password options + instead of through the URL. For other subclasses like Git without + such an option, auth information must stay in the URL. + + Returns: (netloc, (username, password)). + """ + return netloc, (None, None) + + @classmethod + def get_url_rev_and_auth(cls, url: str) -> Tuple[str, Optional[str], AuthInfo]: + """ + Parse the repository URL to use, and return the URL, revision, + and auth info to use. + + Returns: (url, rev, (username, password)). + """ + scheme, netloc, path, query, frag = urllib.parse.urlsplit(url) + if "+" not in scheme: + raise ValueError( + f"Sorry, {url!r} is a malformed VCS url. " + "The format is +://, " + "e.g. svn+http://myrepo/svn/MyApp#egg=MyApp" + ) + # Remove the vcs prefix. + scheme = scheme.split("+", 1)[1] + netloc, user_pass = cls.get_netloc_and_auth(netloc, scheme) + rev = None + if "@" in path: + path, rev = path.rsplit("@", 1) + if not rev: + raise InstallationError( + f"The URL {url!r} has an empty revision (after @) " + "which is not supported. Include a revision after @ " + "or remove @ from the URL." + ) + url = urllib.parse.urlunsplit((scheme, netloc, path, query, "")) + return url, rev, user_pass + + @staticmethod + def make_rev_args( + username: Optional[str], password: Optional[HiddenText] + ) -> CommandArgs: + """ + Return the RevOptions "extra arguments" to use in obtain(). + """ + return [] + + def get_url_rev_options(self, url: HiddenText) -> Tuple[HiddenText, RevOptions]: + """ + Return the URL and RevOptions object to use in obtain(), + as a tuple (url, rev_options). + """ + secret_url, rev, user_pass = self.get_url_rev_and_auth(url.secret) + username, secret_password = user_pass + password: Optional[HiddenText] = None + if secret_password is not None: + password = hide_value(secret_password) + extra_args = self.make_rev_args(username, password) + rev_options = self.make_rev_options(rev, extra_args=extra_args) + + return hide_url(secret_url), rev_options + + @staticmethod + def normalize_url(url: str) -> str: + """ + Normalize a URL for comparison by unquoting it and removing any + trailing slash. + """ + return urllib.parse.unquote(url).rstrip("/") + + @classmethod + def compare_urls(cls, url1: str, url2: str) -> bool: + """ + Compare two repo URLs for identity, ignoring incidental differences. + """ + return cls.normalize_url(url1) == cls.normalize_url(url2) + + def fetch_new( + self, dest: str, url: HiddenText, rev_options: RevOptions, verbosity: int + ) -> None: + """ + Fetch a revision from a repository, in the case that this is the + first fetch from the repository. + + Args: + dest: the directory to fetch the repository to. + rev_options: a RevOptions object. + verbosity: verbosity level. + """ + raise NotImplementedError + + def switch(self, dest: str, url: HiddenText, rev_options: RevOptions) -> None: + """ + Switch the repo at ``dest`` to point to ``URL``. + + Args: + rev_options: a RevOptions object. + """ + raise NotImplementedError + + def update(self, dest: str, url: HiddenText, rev_options: RevOptions) -> None: + """ + Update an already-existing repo to the given ``rev_options``. + + Args: + rev_options: a RevOptions object. + """ + raise NotImplementedError + + @classmethod + def is_commit_id_equal(cls, dest: str, name: Optional[str]) -> bool: + """ + Return whether the id of the current commit equals the given name. + + Args: + dest: the repository directory. + name: a string name. + """ + raise NotImplementedError + + def obtain(self, dest: str, url: HiddenText, verbosity: int) -> None: + """ + Install or update in editable mode the package represented by this + VersionControl object. + + :param dest: the repository directory in which to install or update. + :param url: the repository URL starting with a vcs prefix. + :param verbosity: verbosity level. + """ + url, rev_options = self.get_url_rev_options(url) + + if not os.path.exists(dest): + self.fetch_new(dest, url, rev_options, verbosity=verbosity) + return + + rev_display = rev_options.to_display() + if self.is_repository_directory(dest): + existing_url = self.get_remote_url(dest) + if self.compare_urls(existing_url, url.secret): + logger.debug( + "%s in %s exists, and has correct URL (%s)", + self.repo_name.title(), + display_path(dest), + url, + ) + if not self.is_commit_id_equal(dest, rev_options.rev): + logger.info( + "Updating %s %s%s", + display_path(dest), + self.repo_name, + rev_display, + ) + self.update(dest, url, rev_options) + else: + logger.info("Skipping because already up-to-date.") + return + + logger.warning( + "%s %s in %s exists with URL %s", + self.name, + self.repo_name, + display_path(dest), + existing_url, + ) + prompt = ("(s)witch, (i)gnore, (w)ipe, (b)ackup ", ("s", "i", "w", "b")) + else: + logger.warning( + "Directory %s already exists, and is not a %s %s.", + dest, + self.name, + self.repo_name, + ) + # https://github.com/python/mypy/issues/1174 + prompt = ("(i)gnore, (w)ipe, (b)ackup ", ("i", "w", "b")) # type: ignore + + logger.warning( + "The plan is to install the %s repository %s", + self.name, + url, + ) + response = ask_path_exists(f"What to do? {prompt[0]}", prompt[1]) + + if response == "a": + sys.exit(-1) + + if response == "w": + logger.warning("Deleting %s", display_path(dest)) + rmtree(dest) + self.fetch_new(dest, url, rev_options, verbosity=verbosity) + return + + if response == "b": + dest_dir = backup_dir(dest) + logger.warning("Backing up %s to %s", display_path(dest), dest_dir) + shutil.move(dest, dest_dir) + self.fetch_new(dest, url, rev_options, verbosity=verbosity) + return + + # Do nothing if the response is "i". + if response == "s": + logger.info( + "Switching %s %s to %s%s", + self.repo_name, + display_path(dest), + url, + rev_display, + ) + self.switch(dest, url, rev_options) + + def unpack(self, location: str, url: HiddenText, verbosity: int) -> None: + """ + Clean up current location and download the url repository + (and vcs infos) into location + + :param url: the repository URL starting with a vcs prefix. + :param verbosity: verbosity level. + """ + if os.path.exists(location): + rmtree(location) + self.obtain(location, url=url, verbosity=verbosity) + + @classmethod + def get_remote_url(cls, location: str) -> str: + """ + Return the url used at location + + Raises RemoteNotFoundError if the repository does not have a remote + url configured. + """ + raise NotImplementedError + + @classmethod + def get_revision(cls, location: str) -> str: + """ + Return the current commit id of the files at the given location. + """ + raise NotImplementedError + + @classmethod + def run_command( + cls, + cmd: Union[List[str], CommandArgs], + show_stdout: bool = True, + cwd: Optional[str] = None, + on_returncode: 'Literal["raise", "warn", "ignore"]' = "raise", + extra_ok_returncodes: Optional[Iterable[int]] = None, + command_desc: Optional[str] = None, + extra_environ: Optional[Mapping[str, Any]] = None, + spinner: Optional[SpinnerInterface] = None, + log_failed_cmd: bool = True, + stdout_only: bool = False, + ) -> str: + """ + Run a VCS subcommand + This is simply a wrapper around call_subprocess that adds the VCS + command name, and checks that the VCS is available + """ + cmd = make_command(cls.name, *cmd) + if command_desc is None: + command_desc = format_command_args(cmd) + try: + return call_subprocess( + cmd, + show_stdout, + cwd, + on_returncode=on_returncode, + extra_ok_returncodes=extra_ok_returncodes, + command_desc=command_desc, + extra_environ=extra_environ, + unset_environ=cls.unset_environ, + spinner=spinner, + log_failed_cmd=log_failed_cmd, + stdout_only=stdout_only, + ) + except FileNotFoundError: + # errno.ENOENT = no such file or directory + # In other words, the VCS executable isn't available + raise BadCommand( + f"Cannot find command {cls.name!r} - do you have " + f"{cls.name!r} installed and in your PATH?" + ) + except PermissionError: + # errno.EACCES = Permission denied + # This error occurs, for instance, when the command is installed + # only for another user. So, the current user don't have + # permission to call the other user command. + raise BadCommand( + f"No permission to execute {cls.name!r} - install it " + f"locally, globally (ask admin), or check your PATH. " + f"See possible solutions at " + f"https://pip.pypa.io/en/latest/reference/pip_freeze/" + f"#fixing-permission-denied." + ) + + @classmethod + def is_repository_directory(cls, path: str) -> bool: + """ + Return whether a directory path is a repository directory. + """ + logger.debug("Checking in %s for %s (%s)...", path, cls.dirname, cls.name) + return os.path.exists(os.path.join(path, cls.dirname)) + + @classmethod + def get_repository_root(cls, location: str) -> Optional[str]: + """ + Return the "root" (top-level) directory controlled by the vcs, + or `None` if the directory is not in any. + + It is meant to be overridden to implement smarter detection + mechanisms for specific vcs. + + This can do more than is_repository_directory() alone. For + example, the Git override checks that Git is actually available. + """ + if cls.is_repository_directory(location): + return location + return None diff --git a/venv/lib/python3.12/site-packages/pip/_internal/wheel_builder.py b/venv/lib/python3.12/site-packages/pip/_internal/wheel_builder.py new file mode 100644 index 0000000..b1debe3 --- /dev/null +++ b/venv/lib/python3.12/site-packages/pip/_internal/wheel_builder.py @@ -0,0 +1,354 @@ +"""Orchestrator for building wheels from InstallRequirements. +""" + +import logging +import os.path +import re +import shutil +from typing import Iterable, List, Optional, Tuple + +from pip._vendor.packaging.utils import canonicalize_name, canonicalize_version +from pip._vendor.packaging.version import InvalidVersion, Version + +from pip._internal.cache import WheelCache +from pip._internal.exceptions import InvalidWheelFilename, UnsupportedWheel +from pip._internal.metadata import FilesystemWheel, get_wheel_distribution +from pip._internal.models.link import Link +from pip._internal.models.wheel import Wheel +from pip._internal.operations.build.wheel import build_wheel_pep517 +from pip._internal.operations.build.wheel_editable import build_wheel_editable +from pip._internal.operations.build.wheel_legacy import build_wheel_legacy +from pip._internal.req.req_install import InstallRequirement +from pip._internal.utils.logging import indent_log +from pip._internal.utils.misc import ensure_dir, hash_file +from pip._internal.utils.setuptools_build import make_setuptools_clean_args +from pip._internal.utils.subprocess import call_subprocess +from pip._internal.utils.temp_dir import TempDirectory +from pip._internal.utils.urls import path_to_url +from pip._internal.vcs import vcs + +logger = logging.getLogger(__name__) + +_egg_info_re = re.compile(r"([a-z0-9_.]+)-([a-z0-9_.!+-]+)", re.IGNORECASE) + +BuildResult = Tuple[List[InstallRequirement], List[InstallRequirement]] + + +def _contains_egg_info(s: str) -> bool: + """Determine whether the string looks like an egg_info. + + :param s: The string to parse. E.g. foo-2.1 + """ + return bool(_egg_info_re.search(s)) + + +def _should_build( + req: InstallRequirement, + need_wheel: bool, +) -> bool: + """Return whether an InstallRequirement should be built into a wheel.""" + if req.constraint: + # never build requirements that are merely constraints + return False + if req.is_wheel: + if need_wheel: + logger.info( + "Skipping %s, due to already being wheel.", + req.name, + ) + return False + + if need_wheel: + # i.e. pip wheel, not pip install + return True + + # From this point, this concerns the pip install command only + # (need_wheel=False). + + if not req.source_dir: + return False + + if req.editable: + # we only build PEP 660 editable requirements + return req.supports_pyproject_editable() + + return True + + +def should_build_for_wheel_command( + req: InstallRequirement, +) -> bool: + return _should_build(req, need_wheel=True) + + +def should_build_for_install_command( + req: InstallRequirement, +) -> bool: + return _should_build(req, need_wheel=False) + + +def _should_cache( + req: InstallRequirement, +) -> Optional[bool]: + """ + Return whether a built InstallRequirement can be stored in the persistent + wheel cache, assuming the wheel cache is available, and _should_build() + has determined a wheel needs to be built. + """ + if req.editable or not req.source_dir: + # never cache editable requirements + return False + + if req.link and req.link.is_vcs: + # VCS checkout. Do not cache + # unless it points to an immutable commit hash. + assert not req.editable + assert req.source_dir + vcs_backend = vcs.get_backend_for_scheme(req.link.scheme) + assert vcs_backend + if vcs_backend.is_immutable_rev_checkout(req.link.url, req.source_dir): + return True + return False + + assert req.link + base, ext = req.link.splitext() + if _contains_egg_info(base): + return True + + # Otherwise, do not cache. + return False + + +def _get_cache_dir( + req: InstallRequirement, + wheel_cache: WheelCache, +) -> str: + """Return the persistent or temporary cache directory where the built + wheel need to be stored. + """ + cache_available = bool(wheel_cache.cache_dir) + assert req.link + if cache_available and _should_cache(req): + cache_dir = wheel_cache.get_path_for_link(req.link) + else: + cache_dir = wheel_cache.get_ephem_path_for_link(req.link) + return cache_dir + + +def _verify_one(req: InstallRequirement, wheel_path: str) -> None: + canonical_name = canonicalize_name(req.name or "") + w = Wheel(os.path.basename(wheel_path)) + if canonicalize_name(w.name) != canonical_name: + raise InvalidWheelFilename( + f"Wheel has unexpected file name: expected {canonical_name!r}, " + f"got {w.name!r}", + ) + dist = get_wheel_distribution(FilesystemWheel(wheel_path), canonical_name) + dist_verstr = str(dist.version) + if canonicalize_version(dist_verstr) != canonicalize_version(w.version): + raise InvalidWheelFilename( + f"Wheel has unexpected file name: expected {dist_verstr!r}, " + f"got {w.version!r}", + ) + metadata_version_value = dist.metadata_version + if metadata_version_value is None: + raise UnsupportedWheel("Missing Metadata-Version") + try: + metadata_version = Version(metadata_version_value) + except InvalidVersion: + msg = f"Invalid Metadata-Version: {metadata_version_value}" + raise UnsupportedWheel(msg) + if metadata_version >= Version("1.2") and not isinstance(dist.version, Version): + raise UnsupportedWheel( + f"Metadata 1.2 mandates PEP 440 version, but {dist_verstr!r} is not" + ) + + +def _build_one( + req: InstallRequirement, + output_dir: str, + verify: bool, + build_options: List[str], + global_options: List[str], + editable: bool, +) -> Optional[str]: + """Build one wheel. + + :return: The filename of the built wheel, or None if the build failed. + """ + artifact = "editable" if editable else "wheel" + try: + ensure_dir(output_dir) + except OSError as e: + logger.warning( + "Building %s for %s failed: %s", + artifact, + req.name, + e, + ) + return None + + # Install build deps into temporary directory (PEP 518) + with req.build_env: + wheel_path = _build_one_inside_env( + req, output_dir, build_options, global_options, editable + ) + if wheel_path and verify: + try: + _verify_one(req, wheel_path) + except (InvalidWheelFilename, UnsupportedWheel) as e: + logger.warning("Built %s for %s is invalid: %s", artifact, req.name, e) + return None + return wheel_path + + +def _build_one_inside_env( + req: InstallRequirement, + output_dir: str, + build_options: List[str], + global_options: List[str], + editable: bool, +) -> Optional[str]: + with TempDirectory(kind="wheel") as temp_dir: + assert req.name + if req.use_pep517: + assert req.metadata_directory + assert req.pep517_backend + if global_options: + logger.warning( + "Ignoring --global-option when building %s using PEP 517", req.name + ) + if build_options: + logger.warning( + "Ignoring --build-option when building %s using PEP 517", req.name + ) + if editable: + wheel_path = build_wheel_editable( + name=req.name, + backend=req.pep517_backend, + metadata_directory=req.metadata_directory, + tempd=temp_dir.path, + ) + else: + wheel_path = build_wheel_pep517( + name=req.name, + backend=req.pep517_backend, + metadata_directory=req.metadata_directory, + tempd=temp_dir.path, + ) + else: + wheel_path = build_wheel_legacy( + name=req.name, + setup_py_path=req.setup_py_path, + source_dir=req.unpacked_source_directory, + global_options=global_options, + build_options=build_options, + tempd=temp_dir.path, + ) + + if wheel_path is not None: + wheel_name = os.path.basename(wheel_path) + dest_path = os.path.join(output_dir, wheel_name) + try: + wheel_hash, length = hash_file(wheel_path) + shutil.move(wheel_path, dest_path) + logger.info( + "Created wheel for %s: filename=%s size=%d sha256=%s", + req.name, + wheel_name, + length, + wheel_hash.hexdigest(), + ) + logger.info("Stored in directory: %s", output_dir) + return dest_path + except Exception as e: + logger.warning( + "Building wheel for %s failed: %s", + req.name, + e, + ) + # Ignore return, we can't do anything else useful. + if not req.use_pep517: + _clean_one_legacy(req, global_options) + return None + + +def _clean_one_legacy(req: InstallRequirement, global_options: List[str]) -> bool: + clean_args = make_setuptools_clean_args( + req.setup_py_path, + global_options=global_options, + ) + + logger.info("Running setup.py clean for %s", req.name) + try: + call_subprocess( + clean_args, command_desc="python setup.py clean", cwd=req.source_dir + ) + return True + except Exception: + logger.error("Failed cleaning build dir for %s", req.name) + return False + + +def build( + requirements: Iterable[InstallRequirement], + wheel_cache: WheelCache, + verify: bool, + build_options: List[str], + global_options: List[str], +) -> BuildResult: + """Build wheels. + + :return: The list of InstallRequirement that succeeded to build and + the list of InstallRequirement that failed to build. + """ + if not requirements: + return [], [] + + # Build the wheels. + logger.info( + "Building wheels for collected packages: %s", + ", ".join(req.name for req in requirements), # type: ignore + ) + + with indent_log(): + build_successes, build_failures = [], [] + for req in requirements: + assert req.name + cache_dir = _get_cache_dir(req, wheel_cache) + wheel_file = _build_one( + req, + cache_dir, + verify, + build_options, + global_options, + req.editable and req.permit_editable_wheels, + ) + if wheel_file: + # Record the download origin in the cache + if req.download_info is not None: + # download_info is guaranteed to be set because when we build an + # InstallRequirement it has been through the preparer before, but + # let's be cautious. + wheel_cache.record_download_origin(cache_dir, req.download_info) + # Update the link for this. + req.link = Link(path_to_url(wheel_file)) + req.local_file_path = req.link.file_path + assert req.link.is_wheel + build_successes.append(req) + else: + build_failures.append(req) + + # notify success/failure + if build_successes: + logger.info( + "Successfully built %s", + " ".join([req.name for req in build_successes]), # type: ignore + ) + if build_failures: + logger.info( + "Failed to build %s", + " ".join([req.name for req in build_failures]), # type: ignore + ) + # Return a list of requirements that failed to build + return build_successes, build_failures diff --git a/venv/lib/python3.12/site-packages/pip/_vendor/__init__.py b/venv/lib/python3.12/site-packages/pip/_vendor/__init__.py new file mode 100644 index 0000000..c1884ba --- /dev/null +++ b/venv/lib/python3.12/site-packages/pip/_vendor/__init__.py @@ -0,0 +1,121 @@ +""" +pip._vendor is for vendoring dependencies of pip to prevent needing pip to +depend on something external. + +Files inside of pip._vendor should be considered immutable and should only be +updated to versions from upstream. +""" +from __future__ import absolute_import + +import glob +import os.path +import sys + +# Downstream redistributors which have debundled our dependencies should also +# patch this value to be true. This will trigger the additional patching +# to cause things like "six" to be available as pip. +DEBUNDLED = False + +# By default, look in this directory for a bunch of .whl files which we will +# add to the beginning of sys.path before attempting to import anything. This +# is done to support downstream re-distributors like Debian and Fedora who +# wish to create their own Wheels for our dependencies to aid in debundling. +WHEEL_DIR = os.path.abspath(os.path.dirname(__file__)) + + +# Define a small helper function to alias our vendored modules to the real ones +# if the vendored ones do not exist. This idea of this was taken from +# https://github.com/kennethreitz/requests/pull/2567. +def vendored(modulename): + vendored_name = "{0}.{1}".format(__name__, modulename) + + try: + __import__(modulename, globals(), locals(), level=0) + except ImportError: + # We can just silently allow import failures to pass here. If we + # got to this point it means that ``import pip._vendor.whatever`` + # failed and so did ``import whatever``. Since we're importing this + # upfront in an attempt to alias imports, not erroring here will + # just mean we get a regular import error whenever pip *actually* + # tries to import one of these modules to use it, which actually + # gives us a better error message than we would have otherwise + # gotten. + pass + else: + sys.modules[vendored_name] = sys.modules[modulename] + base, head = vendored_name.rsplit(".", 1) + setattr(sys.modules[base], head, sys.modules[modulename]) + + +# If we're operating in a debundled setup, then we want to go ahead and trigger +# the aliasing of our vendored libraries as well as looking for wheels to add +# to our sys.path. This will cause all of this code to be a no-op typically +# however downstream redistributors can enable it in a consistent way across +# all platforms. +if DEBUNDLED: + # Actually look inside of WHEEL_DIR to find .whl files and add them to the + # front of our sys.path. + sys.path[:] = glob.glob(os.path.join(WHEEL_DIR, "*.whl")) + sys.path + + # Actually alias all of our vendored dependencies. + vendored("cachecontrol") + vendored("certifi") + vendored("colorama") + vendored("distlib") + vendored("distro") + vendored("six") + vendored("six.moves") + vendored("six.moves.urllib") + vendored("six.moves.urllib.parse") + vendored("packaging") + vendored("packaging.version") + vendored("packaging.specifiers") + vendored("pep517") + vendored("pkg_resources") + vendored("platformdirs") + vendored("progress") + vendored("requests") + vendored("requests.exceptions") + vendored("requests.packages") + vendored("requests.packages.urllib3") + vendored("requests.packages.urllib3._collections") + vendored("requests.packages.urllib3.connection") + vendored("requests.packages.urllib3.connectionpool") + vendored("requests.packages.urllib3.contrib") + vendored("requests.packages.urllib3.contrib.ntlmpool") + vendored("requests.packages.urllib3.contrib.pyopenssl") + vendored("requests.packages.urllib3.exceptions") + vendored("requests.packages.urllib3.fields") + vendored("requests.packages.urllib3.filepost") + vendored("requests.packages.urllib3.packages") + vendored("requests.packages.urllib3.packages.ordered_dict") + vendored("requests.packages.urllib3.packages.six") + vendored("requests.packages.urllib3.packages.ssl_match_hostname") + vendored("requests.packages.urllib3.packages.ssl_match_hostname." + "_implementation") + vendored("requests.packages.urllib3.poolmanager") + vendored("requests.packages.urllib3.request") + vendored("requests.packages.urllib3.response") + vendored("requests.packages.urllib3.util") + vendored("requests.packages.urllib3.util.connection") + vendored("requests.packages.urllib3.util.request") + vendored("requests.packages.urllib3.util.response") + vendored("requests.packages.urllib3.util.retry") + vendored("requests.packages.urllib3.util.ssl_") + vendored("requests.packages.urllib3.util.timeout") + vendored("requests.packages.urllib3.util.url") + vendored("resolvelib") + vendored("rich") + vendored("rich.console") + vendored("rich.highlighter") + vendored("rich.logging") + vendored("rich.markup") + vendored("rich.progress") + vendored("rich.segment") + vendored("rich.style") + vendored("rich.text") + vendored("rich.traceback") + vendored("tenacity") + vendored("tomli") + vendored("truststore") + vendored("urllib3") diff --git a/venv/lib/python3.12/site-packages/pip/_vendor/__pycache__/__init__.cpython-312.pyc b/venv/lib/python3.12/site-packages/pip/_vendor/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..67221a2e477383036dbc259df1a781a6acf9c945 GIT binary patch literal 4690 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