pex 2.65.0__tar.gz → 2.66.1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of pex might be problematic. Click here for more details.
- {pex-2.65.0 → pex-2.66.1}/CHANGES.md +14 -0
- {pex-2.65.0 → pex-2.66.1}/PKG-INFO +4 -4
- {pex-2.65.0 → pex-2.66.1}/pex/hashing.py +71 -9
- {pex-2.65.0 → pex-2.66.1}/pex/pex_builder.py +1 -4
- {pex-2.65.0 → pex-2.66.1}/pex/pip/tool.py +3 -3
- pex-2.66.1/pex/pip/vcs.py +179 -0
- {pex-2.65.0 → pex-2.66.1}/pex/pip/version.py +7 -0
- {pex-2.65.0 → pex-2.66.1}/pex/resolve/lock_downloader.py +1 -0
- {pex-2.65.0 → pex-2.66.1}/pex/resolve/locker.py +30 -14
- {pex-2.65.0 → pex-2.66.1}/pex/resolve/lockfile/create.py +1 -6
- {pex-2.65.0 → pex-2.66.1}/pex/resolve/pre_resolved_resolver.py +1 -7
- {pex-2.65.0 → pex-2.66.1}/pex/resolver.py +40 -35
- {pex-2.65.0 → pex-2.66.1}/pex/version.py +1 -1
- {pex-2.65.0 → pex-2.66.1}/tests/integration/cli/commands/test_lock.py +65 -37
- {pex-2.65.0 → pex-2.66.1}/tests/integration/cli/commands/test_pep_751.py +21 -1
- {pex-2.65.0 → pex-2.66.1}/tests/integration/test_issue_1560.py +13 -7
- {pex-2.65.0 → pex-2.66.1}/tests/integration/test_issue_2343.py +15 -1
- {pex-2.65.0 → pex-2.66.1}/tests/test_hashing.py +53 -0
- {pex-2.65.0 → pex-2.66.1}/tests/test_resolver.py +23 -12
- pex-2.65.0/pex/pip/vcs.py +0 -130
- {pex-2.65.0 → pex-2.66.1}/LICENSE +0 -0
- {pex-2.65.0 → pex-2.66.1}/MANIFEST.in +0 -0
- {pex-2.65.0 → pex-2.66.1}/README.rst +0 -0
- {pex-2.65.0 → pex-2.66.1}/assets/download.svg +0 -0
- {pex-2.65.0 → pex-2.66.1}/assets/github.svg +0 -0
- {pex-2.65.0 → pex-2.66.1}/assets/pdf.svg +0 -0
- {pex-2.65.0 → pex-2.66.1}/assets/pex-icon-512.png +0 -0
- {pex-2.65.0 → pex-2.66.1}/assets/pex-icon-512x512.png +0 -0
- {pex-2.65.0 → pex-2.66.1}/assets/pex-logo-dark.png +0 -0
- {pex-2.65.0 → pex-2.66.1}/assets/pex-logo-light.png +0 -0
- {pex-2.65.0 → pex-2.66.1}/assets/pex.svg +0 -0
- {pex-2.65.0 → pex-2.66.1}/assets/python.svg +0 -0
- {pex-2.65.0 → pex-2.66.1}/build-backend/pex_build/__init__.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/build-backend/pex_build/setuptools/__init__.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/build-backend/pex_build/setuptools/build.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/docker/base/Dockerfile +0 -0
- {pex-2.65.0 → pex-2.66.1}/docker/base/install_pythons.sh +0 -0
- {pex-2.65.0 → pex-2.66.1}/docker/cache/Dockerfile +0 -0
- {pex-2.65.0 → pex-2.66.1}/docker/cache/populate_cache.sh +0 -0
- {pex-2.65.0 → pex-2.66.1}/docker/user/Dockerfile +0 -0
- {pex-2.65.0 → pex-2.66.1}/docker/user/create_docker_image_user.sh +0 -0
- {pex-2.65.0 → pex-2.66.1}/docs/_ext/sphinx_pex/__init__.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/docs/_ext/sphinx_pex/vars.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/docs/_static/pex-icon.png +0 -0
- {pex-2.65.0 → pex-2.66.1}/docs/_static/pex-logo-dark.png +0 -0
- {pex-2.65.0 → pex-2.66.1}/docs/_static/pex-logo-light.png +0 -0
- {pex-2.65.0 → pex-2.66.1}/docs/_templates/page.html +0 -0
- {pex-2.65.0 → pex-2.66.1}/docs/_templates/search.html +0 -0
- {pex-2.65.0 → pex-2.66.1}/docs/api/vars.md +0 -0
- {pex-2.65.0 → pex-2.66.1}/docs/buildingpex.rst +0 -0
- {pex-2.65.0 → pex-2.66.1}/docs/conf.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/docs/index.rst +0 -0
- {pex-2.65.0 → pex-2.66.1}/docs/recipes.rst +0 -0
- {pex-2.65.0 → pex-2.66.1}/docs/scie.md +0 -0
- {pex-2.65.0 → pex-2.66.1}/docs/whatispex.rst +0 -0
- {pex-2.65.0 → pex-2.66.1}/duvrc.sh +0 -0
- {pex-2.65.0 → pex-2.66.1}/mypy.ini +0 -0
- {pex-2.65.0 → pex-2.66.1}/package/__init__.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/package/complete-platforms/linux-aarch64.json +0 -0
- {pex-2.65.0 → pex-2.66.1}/package/complete-platforms/linux-armv7l.json +0 -0
- {pex-2.65.0 → pex-2.66.1}/package/complete-platforms/linux-riscv64.json +0 -0
- {pex-2.65.0 → pex-2.66.1}/package/complete-platforms/linux-x86_64.json +0 -0
- {pex-2.65.0 → pex-2.66.1}/package/complete-platforms/macos-aarch64.json +0 -0
- {pex-2.65.0 → pex-2.66.1}/package/complete-platforms/macos-x86_64.json +0 -0
- {pex-2.65.0 → pex-2.66.1}/package/package.toml +0 -0
- {pex-2.65.0 → pex-2.66.1}/package/pex-scie.lock +0 -0
- {pex-2.65.0 → pex-2.66.1}/package/scie_config.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/__init__.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/__main__.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/argparse.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/artifact_url.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/atexit.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/atomic_directory.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/attrs.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/auth.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/bin/__init__.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/bin/pex.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/bootstrap.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/build_backend/__init__.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/build_backend/configuration.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/build_backend/pylock.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/build_backend/wrap.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/build_system/__init__.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/build_system/pep_517.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/build_system/pep_518.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/cache/__init__.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/cache/access.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/cache/dirs.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/cache/prunable.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/cache/root.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/cli/__init__.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/cli/__main__.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/cli/command.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/cli/commands/__init__.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/cli/commands/cache/__init__.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/cli/commands/cache/bytes.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/cli/commands/cache/command.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/cli/commands/cache/du.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/cli/commands/cache_aware.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/cli/commands/docs.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/cli/commands/interpreter.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/cli/commands/lock.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/cli/commands/pip/__init__.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/cli/commands/pip/core.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/cli/commands/pip/download.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/cli/commands/pip/wheel.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/cli/commands/run.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/cli/commands/venv.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/cli/pex.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/cli_util.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/commands/__init__.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/commands/command.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/common.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/compatibility.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/compiler.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/dependency_configuration.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/dependency_manager.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/dist_metadata.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/distutils/__init__.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/distutils/commands/__init__.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/distutils/commands/bdist_pex.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/docs/__init__.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/docs/command.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/entry_points_txt.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/enum.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/environment.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/exceptions.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/executables.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/executor.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/fetcher.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/finders.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/fingerprinted_distribution.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/fs/__init__.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/fs/_posix.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/fs/_windows.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/fs/lock.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/globals.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/hashing.py.lck +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/http/__init__.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/http/server.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/inherit_path.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/installed_wheel.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/interpreter.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/interpreter_constraints.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/interpreter_implementation.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/jobs.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/lang.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/layout.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/network_configuration.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/orderedset.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/os.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/pep_376.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/pep_425.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/pep_427.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/pep_440.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/pep_503.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/pep_508.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/pep_723.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/pex.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/pex_boot.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/pex_bootstrapper.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/pex_info.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/pex_root.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/pex_warnings.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/pip/__init__.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/pip/dependencies/__init__.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/pip/dependencies/requires.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/pip/download_observer.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/pip/foreign_platform/__init__.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/pip/foreign_platform/markers.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/pip/foreign_platform/requires_python.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/pip/foreign_platform/tags.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/pip/installation.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/pip/local_project.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/pip/log_analyzer.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/pip/package_repositories/__init__.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/pip/package_repositories/link_collector.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/pip/tailer.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/platforms.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/pth.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/pyenv.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/rank.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/repl/__init__.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/repl/custom.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/repl/pex_repl.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/requirements.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/resolve/__init__.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/resolve/abbreviated_platforms.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/resolve/config.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/resolve/configured_resolve.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/resolve/configured_resolver.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/resolve/downloads.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/resolve/lock_resolver.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/resolve/locked_resolve.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/resolve/locker_patches.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/resolve/lockfile/__init__.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/resolve/lockfile/download_manager.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/resolve/lockfile/json_codec.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/resolve/lockfile/model.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/resolve/lockfile/pep_751.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/resolve/lockfile/requires_dist.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/resolve/lockfile/subset.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/resolve/lockfile/targets.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/resolve/lockfile/tarjan.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/resolve/lockfile/updater.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/resolve/package_repository.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/resolve/path_mappings.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/resolve/pep_691/__init__.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/resolve/pep_691/api.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/resolve/pep_691/fingerprint_service.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/resolve/pep_691/model.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/resolve/pex_repository_resolver.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/resolve/project.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/resolve/requirement_configuration.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/resolve/requirement_options.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/resolve/resolved_requirement.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/resolve/resolver_configuration.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/resolve/resolver_options.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/resolve/resolvers.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/resolve/script_metadata.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/resolve/target_configuration.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/resolve/target_options.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/resolve/target_system.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/resolve/venv_resolver.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/result.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/scie/__init__.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/scie/configure-binding.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/scie/model.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/scie/science.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/sh_boot.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/sorted_tuple.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/specifier_sets.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/subprocess.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/sysconfig.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/targets.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/third_party/__init__.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/toml.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/tools/__init__.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/tools/__main__.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/tools/command.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/tools/commands/__init__.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/tools/commands/digraph.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/tools/commands/graph.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/tools/commands/info.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/tools/commands/interpreter.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/tools/commands/repository.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/tools/commands/venv.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/tools/main.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/tracer.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/typing.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/util.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/variables.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/README.md +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/__init__.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/__main__.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/__init__.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/ansicolors/.layout.json +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/ansicolors/__init__.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/ansicolors/ansicolors-1.1.8.dist-info/DESCRIPTION.rst +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/ansicolors/ansicolors-1.1.8.dist-info/METADATA +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/ansicolors/ansicolors-1.1.8.dist-info/RECORD +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/ansicolors/ansicolors-1.1.8.dist-info/WHEEL +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/ansicolors/ansicolors-1.1.8.dist-info/metadata.json +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/ansicolors/ansicolors-1.1.8.dist-info/top_level.txt +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/ansicolors/ansicolors-1.1.8.pex-info/original-whl-info.json +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/ansicolors/colors/__init__.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/ansicolors/colors/colors.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/ansicolors/colors/csscolors.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/ansicolors/colors/version.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/ansicolors/constraints.txt +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/appdirs/.layout.json +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/appdirs/__init__.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/appdirs/appdirs-1.4.4.dist-info/LICENSE.txt +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/appdirs/appdirs-1.4.4.dist-info/METADATA +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/appdirs/appdirs-1.4.4.dist-info/RECORD +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/appdirs/appdirs-1.4.4.dist-info/WHEEL +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/appdirs/appdirs-1.4.4.dist-info/top_level.txt +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/appdirs/appdirs-1.4.4.pex-info/original-whl-info.json +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/appdirs/appdirs.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/appdirs/constraints.txt +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/attrs/.layout.json +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/attrs/__init__.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/attrs/attr/__init__.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/attrs/attr/__init__.pyi +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/attrs/attr/_cmp.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/attrs/attr/_cmp.pyi +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/attrs/attr/_compat.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/attrs/attr/_config.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/attrs/attr/_funcs.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/attrs/attr/_make.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/attrs/attr/_next_gen.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/attrs/attr/_version_info.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/attrs/attr/_version_info.pyi +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/attrs/attr/converters.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/attrs/attr/converters.pyi +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/attrs/attr/exceptions.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/attrs/attr/exceptions.pyi +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/attrs/attr/filters.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/attrs/attr/filters.pyi +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/attrs/attr/py.typed +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/attrs/attr/setters.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/attrs/attr/setters.pyi +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/attrs/attr/validators.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/attrs/attr/validators.pyi +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/attrs/attrs/__init__.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/attrs/attrs/__init__.pyi +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/attrs/attrs/converters.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/attrs/attrs/exceptions.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/attrs/attrs/filters.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/attrs/attrs/py.typed +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/attrs/attrs/setters.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/attrs/attrs/validators.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/attrs/attrs-21.5.0.dev0.dist-info/AUTHORS.rst +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/attrs/attrs-21.5.0.dev0.dist-info/LICENSE +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/attrs/attrs-21.5.0.dev0.dist-info/METADATA +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/attrs/attrs-21.5.0.dev0.dist-info/RECORD +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/attrs/attrs-21.5.0.dev0.dist-info/WHEEL +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/attrs/attrs-21.5.0.dev0.dist-info/top_level.txt +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/attrs/attrs-21.5.0.dev0.pex-info/original-whl-info.json +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/packaging_20_9/.layout.json +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/packaging_20_9/__init__.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/packaging_20_9/constraints.txt +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/packaging_20_9/packaging/__about__.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/packaging_20_9/packaging/__init__.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/packaging_20_9/packaging/_compat.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/packaging_20_9/packaging/_structures.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/packaging_20_9/packaging/_typing.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/packaging_20_9/packaging/markers.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/packaging_20_9/packaging/py.typed +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/packaging_20_9/packaging/requirements.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/packaging_20_9/packaging/specifiers.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/packaging_20_9/packaging/tags.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/packaging_20_9/packaging/utils.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/packaging_20_9/packaging/version.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/packaging_20_9/packaging-20.9.dist-info/LICENSE +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/packaging_20_9/packaging-20.9.dist-info/LICENSE.APACHE +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/packaging_20_9/packaging-20.9.dist-info/LICENSE.BSD +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/packaging_20_9/packaging-20.9.dist-info/METADATA +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/packaging_20_9/packaging-20.9.dist-info/RECORD +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/packaging_20_9/packaging-20.9.dist-info/WHEEL +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/packaging_20_9/packaging-20.9.dist-info/top_level.txt +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/packaging_20_9/packaging-20.9.pex-info/original-whl-info.json +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/packaging_20_9/pyparsing-2.4.7.dist-info/LICENSE +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/packaging_20_9/pyparsing-2.4.7.dist-info/METADATA +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/packaging_20_9/pyparsing-2.4.7.dist-info/RECORD +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/packaging_20_9/pyparsing-2.4.7.dist-info/WHEEL +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/packaging_20_9/pyparsing-2.4.7.dist-info/top_level.txt +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/packaging_20_9/pyparsing-2.4.7.pex-info/original-whl-info.json +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/packaging_20_9/pyparsing.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/packaging_21_3/.layout.json +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/packaging_21_3/__init__.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/packaging_21_3/constraints.txt +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/packaging_21_3/packaging/__about__.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/packaging_21_3/packaging/__init__.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/packaging_21_3/packaging/_manylinux.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/packaging_21_3/packaging/_musllinux.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/packaging_21_3/packaging/_structures.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/packaging_21_3/packaging/markers.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/packaging_21_3/packaging/py.typed +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/packaging_21_3/packaging/requirements.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/packaging_21_3/packaging/specifiers.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/packaging_21_3/packaging/tags.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/packaging_21_3/packaging/utils.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/packaging_21_3/packaging/version.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/packaging_21_3/packaging-21.3.dist-info/LICENSE +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/packaging_21_3/packaging-21.3.dist-info/LICENSE.APACHE +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/packaging_21_3/packaging-21.3.dist-info/LICENSE.BSD +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/packaging_21_3/packaging-21.3.dist-info/METADATA +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/packaging_21_3/packaging-21.3.dist-info/RECORD +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/packaging_21_3/packaging-21.3.dist-info/WHEEL +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/packaging_21_3/packaging-21.3.dist-info/top_level.txt +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/packaging_21_3/packaging-21.3.pex-info/original-whl-info.json +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/packaging_21_3/pyparsing/__init__.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/packaging_21_3/pyparsing/actions.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/packaging_21_3/pyparsing/common.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/packaging_21_3/pyparsing/core.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/packaging_21_3/pyparsing/diagram/__init__.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/packaging_21_3/pyparsing/diagram/template.jinja2 +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/packaging_21_3/pyparsing/exceptions.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/packaging_21_3/pyparsing/helpers.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/packaging_21_3/pyparsing/results.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/packaging_21_3/pyparsing/testing.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/packaging_21_3/pyparsing/unicode.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/packaging_21_3/pyparsing/util.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/packaging_21_3/pyparsing-3.0.7.dist-info/LICENSE +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/packaging_21_3/pyparsing-3.0.7.dist-info/METADATA +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/packaging_21_3/pyparsing-3.0.7.dist-info/RECORD +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/packaging_21_3/pyparsing-3.0.7.dist-info/WHEEL +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/packaging_21_3/pyparsing-3.0.7.dist-info/top_level.txt +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/packaging_21_3/pyparsing-3.0.7.pex-info/original-whl-info.json +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/packaging_24_0/.layout.json +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/packaging_24_0/__init__.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/packaging_24_0/constraints.txt +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/packaging_24_0/packaging/__init__.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/packaging_24_0/packaging/_elffile.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/packaging_24_0/packaging/_manylinux.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/packaging_24_0/packaging/_musllinux.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/packaging_24_0/packaging/_parser.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/packaging_24_0/packaging/_structures.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/packaging_24_0/packaging/_tokenizer.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/packaging_24_0/packaging/markers.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/packaging_24_0/packaging/metadata.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/packaging_24_0/packaging/py.typed +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/packaging_24_0/packaging/requirements.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/packaging_24_0/packaging/specifiers.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/packaging_24_0/packaging/tags.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/packaging_24_0/packaging/utils.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/packaging_24_0/packaging/version.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/packaging_24_0/packaging-24.0.dist-info/LICENSE +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/packaging_24_0/packaging-24.0.dist-info/LICENSE.APACHE +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/packaging_24_0/packaging-24.0.dist-info/LICENSE.BSD +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/packaging_24_0/packaging-24.0.dist-info/METADATA +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/packaging_24_0/packaging-24.0.dist-info/RECORD +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/packaging_24_0/packaging-24.0.dist-info/WHEEL +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/packaging_24_0/packaging-24.0.pex-info/original-whl-info.json +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/packaging_25_0/.layout.json +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/packaging_25_0/__init__.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/packaging_25_0/constraints.txt +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/packaging_25_0/packaging/__init__.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/packaging_25_0/packaging/_elffile.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/packaging_25_0/packaging/_manylinux.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/packaging_25_0/packaging/_musllinux.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/packaging_25_0/packaging/_parser.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/packaging_25_0/packaging/_structures.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/packaging_25_0/packaging/_tokenizer.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/packaging_25_0/packaging/licenses/__init__.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/packaging_25_0/packaging/licenses/_spdx.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/packaging_25_0/packaging/markers.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/packaging_25_0/packaging/metadata.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/packaging_25_0/packaging/py.typed +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/packaging_25_0/packaging/requirements.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/packaging_25_0/packaging/specifiers.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/packaging_25_0/packaging/tags.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/packaging_25_0/packaging/utils.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/packaging_25_0/packaging/version.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/packaging_25_0/packaging-25.0.dist-info/METADATA +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/packaging_25_0/packaging-25.0.dist-info/RECORD +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/packaging_25_0/packaging-25.0.dist-info/WHEEL +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/packaging_25_0/packaging-25.0.dist-info/licenses/LICENSE +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/packaging_25_0/packaging-25.0.dist-info/licenses/LICENSE.APACHE +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/packaging_25_0/packaging-25.0.dist-info/licenses/LICENSE.BSD +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/packaging_25_0/packaging-25.0.pex-info/original-whl-info.json +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/.layout.json +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/.prefix/bin/pip +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/.prefix/bin/pip3 +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/.prefix/bin/pip3.9 +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/__init__.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/__init__.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/__main__.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_internal/__init__.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_internal/build_env.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_internal/cache.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_internal/cli/__init__.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_internal/cli/autocompletion.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_internal/cli/base_command.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_internal/cli/cmdoptions.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_internal/cli/command_context.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_internal/cli/main.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_internal/cli/main_parser.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_internal/cli/parser.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_internal/cli/progress_bars.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_internal/cli/req_command.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_internal/cli/spinners.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_internal/cli/status_codes.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_internal/commands/__init__.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_internal/commands/cache.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_internal/commands/check.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_internal/commands/completion.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_internal/commands/configuration.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_internal/commands/debug.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_internal/commands/download.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_internal/commands/freeze.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_internal/commands/hash.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_internal/commands/help.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_internal/commands/install.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_internal/commands/list.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_internal/commands/search.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_internal/commands/show.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_internal/commands/uninstall.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_internal/commands/wheel.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_internal/configuration.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_internal/distributions/__init__.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_internal/distributions/base.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_internal/distributions/installed.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_internal/distributions/sdist.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_internal/distributions/wheel.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_internal/exceptions.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_internal/index/__init__.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_internal/index/collector.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_internal/index/package_finder.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_internal/locations.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_internal/main.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_internal/models/__init__.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_internal/models/candidate.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_internal/models/direct_url.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_internal/models/format_control.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_internal/models/index.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_internal/models/link.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_internal/models/scheme.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_internal/models/search_scope.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_internal/models/selection_prefs.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_internal/models/target_python.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_internal/models/wheel.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_internal/network/__init__.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_internal/network/auth.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_internal/network/cache.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_internal/network/download.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_internal/network/lazy_wheel.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_internal/network/session.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_internal/network/utils.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_internal/network/xmlrpc.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_internal/operations/__init__.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_internal/operations/build/__init__.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_internal/operations/build/metadata.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_internal/operations/build/metadata_legacy.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_internal/operations/build/wheel.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_internal/operations/build/wheel_legacy.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_internal/operations/check.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_internal/operations/freeze.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_internal/operations/install/__init__.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_internal/operations/install/editable_legacy.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_internal/operations/install/legacy.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_internal/operations/install/wheel.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_internal/operations/prepare.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_internal/pyproject.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_internal/req/__init__.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_internal/req/constructors.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_internal/req/req_file.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_internal/req/req_install.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_internal/req/req_set.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_internal/req/req_tracker.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_internal/req/req_uninstall.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_internal/resolution/__init__.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_internal/resolution/base.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_internal/resolution/legacy/__init__.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_internal/resolution/legacy/resolver.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_internal/resolution/resolvelib/__init__.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_internal/resolution/resolvelib/base.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_internal/resolution/resolvelib/candidates.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_internal/resolution/resolvelib/factory.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_internal/resolution/resolvelib/found_candidates.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_internal/resolution/resolvelib/provider.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_internal/resolution/resolvelib/reporter.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_internal/resolution/resolvelib/requirements.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_internal/resolution/resolvelib/resolver.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_internal/self_outdated_check.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_internal/utils/__init__.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_internal/utils/appdirs.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_internal/utils/compat.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_internal/utils/compatibility_tags.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_internal/utils/datetime.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_internal/utils/deprecation.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_internal/utils/direct_url_helpers.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_internal/utils/distutils_args.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_internal/utils/encoding.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_internal/utils/entrypoints.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_internal/utils/filesystem.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_internal/utils/filetypes.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_internal/utils/glibc.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_internal/utils/hashes.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_internal/utils/inject_securetransport.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_internal/utils/logging.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_internal/utils/misc.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_internal/utils/models.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_internal/utils/packaging.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_internal/utils/parallel.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_internal/utils/pkg_resources.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_internal/utils/setuptools_build.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_internal/utils/subprocess.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_internal/utils/temp_dir.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_internal/utils/typing.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_internal/utils/unpacking.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_internal/utils/urls.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_internal/utils/virtualenv.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_internal/utils/wheel.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_internal/vcs/__init__.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_internal/vcs/bazaar.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_internal/vcs/git.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_internal/vcs/mercurial.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_internal/vcs/subversion.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_internal/vcs/versioncontrol.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_internal/wheel_builder.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_vendor/__init__.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_vendor/appdirs.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_vendor/cachecontrol/__init__.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_vendor/cachecontrol/_cmd.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_vendor/cachecontrol/adapter.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_vendor/cachecontrol/cache.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_vendor/cachecontrol/caches/__init__.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_vendor/cachecontrol/caches/file_cache.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_vendor/cachecontrol/caches/redis_cache.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_vendor/cachecontrol/compat.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_vendor/cachecontrol/controller.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_vendor/cachecontrol/filewrapper.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_vendor/cachecontrol/heuristics.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_vendor/cachecontrol/serialize.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_vendor/cachecontrol/wrapper.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_vendor/certifi/__init__.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_vendor/certifi/__main__.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_vendor/certifi/cacert.pem +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_vendor/certifi/core.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_vendor/chardet/__init__.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_vendor/chardet/big5freq.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_vendor/chardet/big5prober.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_vendor/chardet/chardistribution.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_vendor/chardet/charsetgroupprober.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_vendor/chardet/charsetprober.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_vendor/chardet/cli/__init__.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_vendor/chardet/cli/chardetect.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_vendor/chardet/codingstatemachine.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_vendor/chardet/compat.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_vendor/chardet/cp949prober.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_vendor/chardet/enums.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_vendor/chardet/escprober.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_vendor/chardet/escsm.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_vendor/chardet/eucjpprober.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_vendor/chardet/euckrfreq.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_vendor/chardet/euckrprober.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_vendor/chardet/euctwfreq.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_vendor/chardet/euctwprober.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_vendor/chardet/gb2312freq.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_vendor/chardet/gb2312prober.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_vendor/chardet/hebrewprober.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_vendor/chardet/jisfreq.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_vendor/chardet/jpcntx.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_vendor/chardet/langbulgarianmodel.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_vendor/chardet/langcyrillicmodel.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_vendor/chardet/langgreekmodel.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_vendor/chardet/langhebrewmodel.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_vendor/chardet/langhungarianmodel.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_vendor/chardet/langthaimodel.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_vendor/chardet/langturkishmodel.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_vendor/chardet/latin1prober.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_vendor/chardet/mbcharsetprober.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_vendor/chardet/mbcsgroupprober.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_vendor/chardet/mbcssm.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_vendor/chardet/sbcharsetprober.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_vendor/chardet/sbcsgroupprober.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_vendor/chardet/sjisprober.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_vendor/chardet/universaldetector.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_vendor/chardet/utf8prober.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_vendor/chardet/version.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_vendor/colorama/__init__.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_vendor/colorama/ansi.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_vendor/colorama/ansitowin32.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_vendor/colorama/initialise.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_vendor/colorama/win32.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_vendor/colorama/winterm.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_vendor/contextlib2.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_vendor/distlib/__init__.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_vendor/distlib/_backport/__init__.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_vendor/distlib/_backport/misc.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_vendor/distlib/_backport/shutil.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_vendor/distlib/_backport/sysconfig.cfg +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_vendor/distlib/_backport/sysconfig.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_vendor/distlib/_backport/tarfile.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_vendor/distlib/compat.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_vendor/distlib/database.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_vendor/distlib/index.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_vendor/distlib/locators.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_vendor/distlib/manifest.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_vendor/distlib/markers.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_vendor/distlib/metadata.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_vendor/distlib/resources.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_vendor/distlib/scripts.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_vendor/distlib/t32.exe +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_vendor/distlib/t64.exe +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_vendor/distlib/util.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_vendor/distlib/version.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_vendor/distlib/w32.exe +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_vendor/distlib/w64.exe +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_vendor/distlib/wheel.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_vendor/distro.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_vendor/html5lib/__init__.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_vendor/html5lib/_ihatexml.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_vendor/html5lib/_inputstream.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_vendor/html5lib/_tokenizer.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_vendor/html5lib/_trie/__init__.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_vendor/html5lib/_trie/_base.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_vendor/html5lib/_trie/py.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_vendor/html5lib/_utils.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_vendor/html5lib/constants.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_vendor/html5lib/filters/__init__.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_vendor/html5lib/filters/alphabeticalattributes.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_vendor/html5lib/filters/base.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_vendor/html5lib/filters/inject_meta_charset.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_vendor/html5lib/filters/lint.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_vendor/html5lib/filters/optionaltags.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_vendor/html5lib/filters/sanitizer.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_vendor/html5lib/filters/whitespace.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_vendor/html5lib/html5parser.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_vendor/html5lib/serializer.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_vendor/html5lib/treeadapters/__init__.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_vendor/html5lib/treeadapters/genshi.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_vendor/html5lib/treeadapters/sax.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_vendor/html5lib/treebuilders/__init__.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_vendor/html5lib/treebuilders/base.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_vendor/html5lib/treebuilders/dom.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_vendor/html5lib/treebuilders/etree.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_vendor/html5lib/treebuilders/etree_lxml.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_vendor/html5lib/treewalkers/__init__.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_vendor/html5lib/treewalkers/base.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_vendor/html5lib/treewalkers/dom.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_vendor/html5lib/treewalkers/etree.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_vendor/html5lib/treewalkers/etree_lxml.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_vendor/html5lib/treewalkers/genshi.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_vendor/idna/__init__.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_vendor/idna/codec.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_vendor/idna/compat.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_vendor/idna/core.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_vendor/idna/idnadata.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_vendor/idna/intranges.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_vendor/idna/package_data.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_vendor/idna/uts46data.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_vendor/ipaddress.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_vendor/msgpack/__init__.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_vendor/msgpack/_version.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_vendor/msgpack/exceptions.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_vendor/msgpack/ext.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_vendor/msgpack/fallback.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_vendor/packaging/__about__.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_vendor/packaging/__init__.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_vendor/packaging/_compat.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_vendor/packaging/_structures.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_vendor/packaging/_typing.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_vendor/packaging/markers.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_vendor/packaging/requirements.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_vendor/packaging/specifiers.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_vendor/packaging/tags.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_vendor/packaging/utils.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_vendor/packaging/version.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_vendor/pep517/__init__.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_vendor/pep517/_in_process.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_vendor/pep517/build.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_vendor/pep517/check.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_vendor/pep517/colorlog.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_vendor/pep517/compat.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_vendor/pep517/dirtools.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_vendor/pep517/envbuild.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_vendor/pep517/meta.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_vendor/pep517/wrappers.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_vendor/pkg_resources/__init__.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_vendor/pkg_resources/py31compat.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_vendor/progress/__init__.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_vendor/progress/bar.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_vendor/progress/counter.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_vendor/progress/spinner.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_vendor/pyparsing.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_vendor/requests/__init__.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_vendor/requests/__version__.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_vendor/requests/_internal_utils.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_vendor/requests/adapters.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_vendor/requests/api.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_vendor/requests/auth.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_vendor/requests/certs.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_vendor/requests/compat.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_vendor/requests/cookies.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_vendor/requests/exceptions.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_vendor/requests/help.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_vendor/requests/hooks.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_vendor/requests/models.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_vendor/requests/packages.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_vendor/requests/sessions.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_vendor/requests/status_codes.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_vendor/requests/structures.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_vendor/requests/utils.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_vendor/resolvelib/__init__.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_vendor/resolvelib/compat/__init__.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_vendor/resolvelib/compat/collections_abc.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_vendor/resolvelib/providers.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_vendor/resolvelib/reporters.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_vendor/resolvelib/resolvers.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_vendor/resolvelib/structs.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_vendor/retrying.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_vendor/six.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_vendor/toml/__init__.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_vendor/toml/decoder.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_vendor/toml/encoder.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_vendor/toml/ordered.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_vendor/toml/tz.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_vendor/urllib3/__init__.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_vendor/urllib3/_collections.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_vendor/urllib3/_version.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_vendor/urllib3/connection.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_vendor/urllib3/connectionpool.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_vendor/urllib3/contrib/__init__.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_vendor/urllib3/contrib/_appengine_environ.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_vendor/urllib3/contrib/_securetransport/__init__.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_vendor/urllib3/contrib/_securetransport/bindings.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_vendor/urllib3/contrib/_securetransport/low_level.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_vendor/urllib3/contrib/appengine.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_vendor/urllib3/contrib/ntlmpool.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_vendor/urllib3/contrib/pyopenssl.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_vendor/urllib3/contrib/securetransport.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_vendor/urllib3/contrib/socks.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_vendor/urllib3/exceptions.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_vendor/urllib3/fields.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_vendor/urllib3/filepost.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_vendor/urllib3/packages/__init__.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_vendor/urllib3/packages/backports/__init__.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_vendor/urllib3/packages/backports/makefile.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_vendor/urllib3/packages/six.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_vendor/urllib3/packages/ssl_match_hostname/__init__.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_vendor/urllib3/packages/ssl_match_hostname/_implementation.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_vendor/urllib3/poolmanager.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_vendor/urllib3/request.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_vendor/urllib3/response.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_vendor/urllib3/util/__init__.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_vendor/urllib3/util/connection.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_vendor/urllib3/util/proxy.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_vendor/urllib3/util/queue.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_vendor/urllib3/util/request.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_vendor/urllib3/util/response.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_vendor/urllib3/util/retry.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_vendor/urllib3/util/ssl_.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_vendor/urllib3/util/ssltransport.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_vendor/urllib3/util/timeout.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_vendor/urllib3/util/url.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_vendor/urllib3/util/wait.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_vendor/vendor.txt +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_vendor/webencodings/__init__.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_vendor/webencodings/labels.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_vendor/webencodings/mklabels.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_vendor/webencodings/tests.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip/_vendor/webencodings/x_user_defined.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip-20.3.4.dist-info/LICENSE.txt +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip-20.3.4.dist-info/METADATA +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip-20.3.4.dist-info/RECORD +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip-20.3.4.dist-info/WHEEL +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip-20.3.4.dist-info/entry_points.txt +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip-20.3.4.dist-info/top_level.txt +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/pip/pip-20.3.4.pex-info/original-whl-info.json +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/setuptools/.layout.json +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/setuptools/.prefix/bin/easy_install +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/setuptools/.prefix/bin/easy_install-3.9 +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/setuptools/__init__.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/setuptools/easy_install.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/setuptools/pkg_resources/__init__.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/setuptools/pkg_resources/_vendor/__init__.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/setuptools/pkg_resources/_vendor/appdirs.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/setuptools/pkg_resources/_vendor/packaging/__about__.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/setuptools/pkg_resources/_vendor/packaging/__init__.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/setuptools/pkg_resources/_vendor/packaging/_compat.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/setuptools/pkg_resources/_vendor/packaging/_structures.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/setuptools/pkg_resources/_vendor/packaging/markers.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/setuptools/pkg_resources/_vendor/packaging/requirements.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/setuptools/pkg_resources/_vendor/packaging/specifiers.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/setuptools/pkg_resources/_vendor/packaging/utils.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/setuptools/pkg_resources/_vendor/packaging/version.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/setuptools/pkg_resources/_vendor/pyparsing.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/setuptools/pkg_resources/_vendor/six.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/setuptools/pkg_resources/extern/__init__.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/setuptools/pkg_resources/py31compat.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/setuptools/setuptools/__init__.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/setuptools/setuptools/_deprecation_warning.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/setuptools/setuptools/_imp.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/setuptools/setuptools/_vendor/__init__.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/setuptools/setuptools/_vendor/ordered_set.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/setuptools/setuptools/_vendor/packaging/__about__.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/setuptools/setuptools/_vendor/packaging/__init__.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/setuptools/setuptools/_vendor/packaging/_compat.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/setuptools/setuptools/_vendor/packaging/_structures.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/setuptools/setuptools/_vendor/packaging/markers.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/setuptools/setuptools/_vendor/packaging/requirements.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/setuptools/setuptools/_vendor/packaging/specifiers.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/setuptools/setuptools/_vendor/packaging/tags.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/setuptools/setuptools/_vendor/packaging/utils.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/setuptools/setuptools/_vendor/packaging/version.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/setuptools/setuptools/_vendor/pyparsing.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/setuptools/setuptools/_vendor/six.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/setuptools/setuptools/archive_util.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/setuptools/setuptools/build_meta.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/setuptools/setuptools/cli-32.exe +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/setuptools/setuptools/cli-64.exe +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/setuptools/setuptools/cli.exe +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/setuptools/setuptools/command/__init__.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/setuptools/setuptools/command/alias.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/setuptools/setuptools/command/bdist_egg.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/setuptools/setuptools/command/bdist_rpm.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/setuptools/setuptools/command/bdist_wininst.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/setuptools/setuptools/command/build_clib.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/setuptools/setuptools/command/build_ext.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/setuptools/setuptools/command/build_py.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/setuptools/setuptools/command/develop.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/setuptools/setuptools/command/dist_info.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/setuptools/setuptools/command/easy_install.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/setuptools/setuptools/command/egg_info.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/setuptools/setuptools/command/install.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/setuptools/setuptools/command/install_egg_info.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/setuptools/setuptools/command/install_lib.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/setuptools/setuptools/command/install_scripts.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/setuptools/setuptools/command/launcher manifest.xml +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/setuptools/setuptools/command/py36compat.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/setuptools/setuptools/command/register.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/setuptools/setuptools/command/rotate.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/setuptools/setuptools/command/saveopts.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/setuptools/setuptools/command/sdist.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/setuptools/setuptools/command/setopt.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/setuptools/setuptools/command/test.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/setuptools/setuptools/command/upload.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/setuptools/setuptools/command/upload_docs.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/setuptools/setuptools/config.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/setuptools/setuptools/dep_util.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/setuptools/setuptools/depends.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/setuptools/setuptools/dist.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/setuptools/setuptools/errors.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/setuptools/setuptools/extension.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/setuptools/setuptools/extern/__init__.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/setuptools/setuptools/glob.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/setuptools/setuptools/gui-32.exe +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/setuptools/setuptools/gui-64.exe +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/setuptools/setuptools/gui.exe +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/setuptools/setuptools/installer.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/setuptools/setuptools/launch.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/setuptools/setuptools/lib2to3_ex.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/setuptools/setuptools/monkey.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/setuptools/setuptools/msvc.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/setuptools/setuptools/namespaces.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/setuptools/setuptools/package_index.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/setuptools/setuptools/py27compat.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/setuptools/setuptools/py31compat.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/setuptools/setuptools/py33compat.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/setuptools/setuptools/py34compat.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/setuptools/setuptools/sandbox.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/setuptools/setuptools/script (dev).tmpl +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/setuptools/setuptools/script.tmpl +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/setuptools/setuptools/site-patch.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/setuptools/setuptools/ssl_support.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/setuptools/setuptools/unicode_utils.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/setuptools/setuptools/version.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/setuptools/setuptools/wheel.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/setuptools/setuptools/windows_support.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/setuptools/setuptools-44.0.0+3acb925dd708430aeaf197ea53ac8a752f7c1863.dist-info/LICENSE +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/setuptools/setuptools-44.0.0+3acb925dd708430aeaf197ea53ac8a752f7c1863.dist-info/METADATA +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/setuptools/setuptools-44.0.0+3acb925dd708430aeaf197ea53ac8a752f7c1863.dist-info/RECORD +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/setuptools/setuptools-44.0.0+3acb925dd708430aeaf197ea53ac8a752f7c1863.dist-info/WHEEL +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/setuptools/setuptools-44.0.0+3acb925dd708430aeaf197ea53ac8a752f7c1863.dist-info/dependency_links.txt +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/setuptools/setuptools-44.0.0+3acb925dd708430aeaf197ea53ac8a752f7c1863.dist-info/entry_points.txt +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/setuptools/setuptools-44.0.0+3acb925dd708430aeaf197ea53ac8a752f7c1863.dist-info/top_level.txt +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/setuptools/setuptools-44.0.0+3acb925dd708430aeaf197ea53ac8a752f7c1863.dist-info/zip-safe +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/setuptools/setuptools-44.0.0+3acb925dd708430aeaf197ea53ac8a752f7c1863.pex-info/original-whl-info.json +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/toml/.layout.json +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/toml/__init__.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/toml/constraints.txt +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/toml/toml/__init__.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/toml/toml/decoder.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/toml/toml/encoder.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/toml/toml/ordered.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/toml/toml/tz.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/toml/toml-0.10.2.dist-info/LICENSE +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/toml/toml-0.10.2.dist-info/METADATA +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/toml/toml-0.10.2.dist-info/RECORD +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/toml/toml-0.10.2.dist-info/WHEEL +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/toml/toml-0.10.2.dist-info/top_level.txt +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/toml/toml-0.10.2.pex-info/original-whl-info.json +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/tomli/.layout.json +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/tomli/__init__.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/tomli/constraints.txt +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/tomli/tomli/__init__.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/tomli/tomli/_parser.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/tomli/tomli/_re.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/tomli/tomli/_types.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/tomli/tomli/py.typed +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/tomli/tomli-2.0.1.dist-info/LICENSE +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/tomli/tomli-2.0.1.dist-info/METADATA +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/tomli/tomli-2.0.1.dist-info/RECORD +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/tomli/tomli-2.0.1.dist-info/WHEEL +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/vendor/_vendored/tomli/tomli-2.0.1.pex-info/original-whl-info.json +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/venv/README.md +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/venv/__init__.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/venv/bin_path.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/venv/install_scope.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/venv/installer.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/venv/installer_configuration.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/venv/installer_options.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/venv/venv_pex.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/venv/virtualenv.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/venv/virtualenv_16.7.12_py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/wheel.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/whl.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/windows/__init__.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/windows/stubs/uv-trampoline-aarch64-console.exe +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/windows/stubs/uv-trampoline-aarch64-gui.exe +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/windows/stubs/uv-trampoline-x86_64-console.exe +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/windows/stubs/uv-trampoline-x86_64-gui.exe +0 -0
- {pex-2.65.0 → pex-2.66.1}/pex/ziputils.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/pylock.toml +0 -0
- {pex-2.65.0 → pex-2.66.1}/pyproject.toml +0 -0
- {pex-2.65.0 → pex-2.66.1}/scripts/analyze-CI-shard-timeout.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/scripts/build-cache-image.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/scripts/build-docs.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/scripts/create-packages.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/scripts/dev-cmd-fix-egg-link.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/scripts/dev-cmd-pip-install-pex-next.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/scripts/embed-virtualenv.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/scripts/format.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/scripts/gen-scie-platform.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/scripts/lint.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/scripts/py27/lint_enum.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/scripts/requires-python-check.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/scripts/typecheck.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/setup.cfg +0 -0
- {pex-2.65.0 → pex-2.66.1}/setup.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/testing/__init__.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/testing/bin/run_tests.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/testing/build_system.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/testing/cli.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/testing/data/__init__.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/testing/data/locks/__init__.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/testing/data/locks/devpi-server.lock.json +0 -0
- {pex-2.65.0 → pex-2.66.1}/testing/data/locks/issue-2415.lock.json +0 -0
- {pex-2.65.0 → pex-2.66.1}/testing/data/locks/issue-2683.lock.json +0 -0
- {pex-2.65.0 → pex-2.66.1}/testing/data/locks/mitmproxy.lock.json +0 -0
- {pex-2.65.0 → pex-2.66.1}/testing/data/locks/pylock.issue-2887.toml +0 -0
- {pex-2.65.0 → pex-2.66.1}/testing/data/locks/requests.lock.json +0 -0
- {pex-2.65.0 → pex-2.66.1}/testing/data/pip_logs/issue-2414.pip-23.2.log +0 -0
- {pex-2.65.0 → pex-2.66.1}/testing/data/pip_logs/issue-2414.pip-23.3.1.log +0 -0
- {pex-2.65.0 → pex-2.66.1}/testing/data/platforms/__init__.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/testing/data/platforms/complete_platform_linux_armv7l_py312.json +0 -0
- {pex-2.65.0 → pex-2.66.1}/testing/data/platforms/complete_platform_linux_x86-64_py311.json +0 -0
- {pex-2.65.0 → pex-2.66.1}/testing/data/platforms/macosx_10_13_x86_64-cp-36-m.tags.txt +0 -0
- {pex-2.65.0 → pex-2.66.1}/testing/devpi.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/testing/dist_metadata.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/testing/docker.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/testing/find_links.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/testing/lock.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/testing/mitmproxy.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/testing/pep_427.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/testing/pex_dist.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/testing/pip.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/testing/pytest_utils/__init__.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/testing/pytest_utils/shard.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/testing/pytest_utils/tmp.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/testing/pytest_utils/track_status_hook.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/testing/pytest_utils/track_status_hook_py2.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/testing/pytest_utils/track_status_hook_py3.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/testing/resolve.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/testing/scie.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/testing/subprocess.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/testing/venv.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/bin/test_sh_boot.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/build_backend/test_configuration.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/build_backend/test_pylock.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/build_system/test_issue_2125.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/build_system/test_pep_517.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/build_system/test_pep_518.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/commands/test_command.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/conftest.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/example_packages/MarkupSafe-1.0-cp27-cp27mu-linux_x86_64.whl +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/example_packages/PyAthena-1.11.5-py2.py3-none-any.whl +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/example_packages/PyAthena-1.9.0-py2.py3-none-any.whl +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/example_packages/aws_cfn_bootstrap-1.4-py2-none-any.whl +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/example_packages/pyparsing-2.1.10-py2.py3-none-any.whl +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/integration/__init__.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/integration/build_backend/test_wrap.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/integration/build_system/__init__.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/integration/build_system/test_issue_2063.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/integration/build_system/test_issue_2125.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/integration/build_system/test_issue_2913.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/integration/build_system/test_pep_517.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/integration/build_system/test_pep_518.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/integration/cli/commands/test_cache_prune.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/integration/cli/commands/test_discussion_2752.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/integration/cli/commands/test_download.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/integration/cli/commands/test_export.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/integration/cli/commands/test_export_subset.lock.json +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/integration/cli/commands/test_export_subset.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/integration/cli/commands/test_interpreter_inspect.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/integration/cli/commands/test_issue_1413.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/integration/cli/commands/test_issue_1665.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/integration/cli/commands/test_issue_1667.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/integration/cli/commands/test_issue_1688.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/integration/cli/commands/test_issue_1711.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/integration/cli/commands/test_issue_1734.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/integration/cli/commands/test_issue_1741.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/integration/cli/commands/test_issue_1801.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/integration/cli/commands/test_issue_1821.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/integration/cli/commands/test_issue_2050.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/integration/cli/commands/test_issue_2057.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/integration/cli/commands/test_issue_2059.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/integration/cli/commands/test_issue_2098.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/integration/cli/commands/test_issue_2211.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/integration/cli/commands/test_issue_2268.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/integration/cli/commands/test_issue_2313.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/integration/cli/commands/test_issue_2414.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/integration/cli/commands/test_issue_2519.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/integration/cli/commands/test_local_project_lock.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/integration/cli/commands/test_lock_dependency_groups.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/integration/cli/commands/test_lock_elide_unused_requires_dist.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/integration/cli/commands/test_lock_foreign_platform_sdist.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/integration/cli/commands/test_lock_report.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/integration/cli/commands/test_lock_reproducibility_hash_seed.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/integration/cli/commands/test_lock_requirements_file.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/integration/cli/commands/test_lock_resolve_auth.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/integration/cli/commands/test_lock_script_metadata.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/integration/cli/commands/test_lock_subset.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/integration/cli/commands/test_lock_sync.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/integration/cli/commands/test_lock_update.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/integration/cli/commands/test_lock_update_issues_2332_2334.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/integration/cli/commands/test_run.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/integration/cli/commands/test_split_universal_locks.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/integration/cli/commands/test_vcs_lock.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/integration/cli/commands/test_venv_create.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/integration/cli/commands/test_venv_inspect.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/integration/cli/commands/test_wheel.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/integration/conftest.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/integration/resolve/__init__.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/integration/resolve/pep_691/__init__.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/integration/resolve/pep_691/test_api.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/integration/resolve/test_dependency_groups.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/integration/resolve/test_issue_1361.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/integration/resolve/test_issue_1907.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/integration/resolve/test_issue_1918.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/integration/resolve/test_issue_2092.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/integration/resolve/test_issue_2412.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/integration/resolve/test_issue_2532.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/integration/resolve/test_issue_2568.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/integration/resolve/test_issue_2772.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/integration/resolve/test_issue_2877.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/integration/resolve/test_issue_2926.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/integration/resolve/test_issue_2930_and_2931.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/integration/resolve/test_universal_lock_splits.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/integration/scie/__init__.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/integration/scie/test_discussion_2516.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/integration/scie/test_issue_2733.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/integration/scie/test_issue_2740.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/integration/scie/test_issue_2810.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/integration/scie/test_issue_2827.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/integration/scie/test_pex_scie.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/integration/test_downloads.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/integration/test_excludes.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/integration/test_executuon_mode_venv.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/integration/test_inject_env_and_args.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/integration/test_inject_python_args.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/integration/test_integration.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/integration/test_interpreter.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/integration/test_interpreter_selection.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/integration/test_issue_1017.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/integration/test_issue_1018.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/integration/test_issue_1025.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/integration/test_issue_1031.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/integration/test_issue_1179.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/integration/test_issue_1201.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/integration/test_issue_1202.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/integration/test_issue_1218.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/integration/test_issue_1225.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/integration/test_issue_1232.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/integration/test_issue_1302.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/integration/test_issue_1316.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/integration/test_issue_1336.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/integration/test_issue_1422.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/integration/test_issue_1447.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/integration/test_issue_1479.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/integration/test_issue_1520.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/integration/test_issue_1537.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/integration/test_issue_1540.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/integration/test_issue_1550.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/integration/test_issue_157.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/integration/test_issue_1597.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/integration/test_issue_1598.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/integration/test_issue_1656.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/integration/test_issue_1683.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/integration/test_issue_1726.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/integration/test_issue_1730.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/integration/test_issue_1802.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/integration/test_issue_1809.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/integration/test_issue_1817.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/integration/test_issue_1825.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/integration/test_issue_1856.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/integration/test_issue_1861.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/integration/test_issue_1870.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/integration/test_issue_1872.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/integration/test_issue_1879.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/integration/test_issue_1933.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/integration/test_issue_1936.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/integration/test_issue_1949.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/integration/test_issue_1995.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/integration/test_issue_2001.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/integration/test_issue_2006.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/integration/test_issue_2017.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/integration/test_issue_2023.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/integration/test_issue_2038.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/integration/test_issue_2073.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/integration/test_issue_2087.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/integration/test_issue_2088.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/integration/test_issue_2113.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/integration/test_issue_2134.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/integration/test_issue_2183.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/integration/test_issue_2186.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/integration/test_issue_2203.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/integration/test_issue_2235.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/integration/test_issue_2249.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/integration/test_issue_2299.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/integration/test_issue_2324.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/integration/test_issue_2348.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/integration/test_issue_2355.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/integration/test_issue_2389.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/integration/test_issue_2391.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/integration/test_issue_2395.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/integration/test_issue_2410.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/integration/test_issue_2412.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/integration/test_issue_2413.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/integration/test_issue_2415.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/integration/test_issue_2432.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/integration/test_issue_2441.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/integration/test_issue_2572.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/integration/test_issue_2631.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/integration/test_issue_2706.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/integration/test_issue_2739.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/integration/test_issue_2819.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/integration/test_issue_2822.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/integration/test_issue_2862.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/integration/test_issue_2885.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/integration/test_issue_2897.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/integration/test_issue_2941.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/integration/test_issue_2942.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/integration/test_issue_2949.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/integration/test_issue_298.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/integration/test_issue_434.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/integration/test_issue_455.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/integration/test_issue_539.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/integration/test_issue_598.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/integration/test_issue_661.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/integration/test_issue_729.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/integration/test_issue_736.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/integration/test_issue_745.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/integration/test_issue_749.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/integration/test_issue_898.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/integration/test_issue_899.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/integration/test_issue_940.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/integration/test_issue_996.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/integration/test_keyring_support.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/integration/test_layout.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/integration/test_lock_resolver.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/integration/test_locked_resolve.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/integration/test_no_pre_install_wheels.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/integration/test_override_replace.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/integration/test_overrides.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/integration/test_pep_427.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/integration/test_pex_bootstrapper.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/integration/test_pex_entry_points.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/integration/test_pex_import.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/integration/test_reexec.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/integration/test_reproducible.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/integration/test_scoped_repos.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/integration/test_script_metadata.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/integration/test_setproctitle.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/integration/test_sh_boot.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/integration/test_shebang_length_limit.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/integration/test_variables.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/integration/tools/commands/test_issue_2105.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/integration/tools/commands/test_venv.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/integration/venv_ITs/__init__.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/integration/venv_ITs/conftest.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/integration/venv_ITs/test_install_wheel_multiple_site_packages_dirs.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/integration/venv_ITs/test_issue_1630.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/integration/venv_ITs/test_issue_1637.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/integration/venv_ITs/test_issue_1641.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/integration/venv_ITs/test_issue_1668.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/integration/venv_ITs/test_issue_1745.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/integration/venv_ITs/test_issue_1973.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/integration/venv_ITs/test_issue_2065.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/integration/venv_ITs/test_issue_2160.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/integration/venv_ITs/test_issue_2248.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/integration/venv_ITs/test_virtualenv.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/pip/test_log_analyzer.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/pip/test_tailer.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/pip/test_version.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/resolve/__init__.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/resolve/conftest.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/resolve/lockfile/__init__.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/resolve/lockfile/test_download_manager.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/resolve/lockfile/test_issue_2887.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/resolve/lockfile/test_json_codec.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/resolve/lockfile/test_lockfile.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/resolve/lockfile/test_pep_751.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/resolve/lockfile/test_requires_dist.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/resolve/pep_691/__init__.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/resolve/pep_691/test_api.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/resolve/pep_691/test_fingerprint_service.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/resolve/pep_691/test_model.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/resolve/test_dependency_groups.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/resolve/test_locked_resolve.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/resolve/test_locker.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/resolve/test_package_repository.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/resolve/test_path_mappings.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/resolve/test_pex_repository_resolver.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/resolve/test_resolved_requirement.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/resolve/test_resolver_options.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/resolve/test_script_metadata.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/resolve/test_target_options.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/test_artifact_url.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/test_atexit.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/test_atomic_directory.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/test_bdist_pex.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/test_common.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/test_compatibility.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/test_compiler.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/test_dependency_configuration.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/test_dependency_manager.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/test_dist_metadata.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/test_enum.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/test_environment.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/test_executables.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/test_execution_mode.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/test_executor.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/test_fetcher.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/test_finders.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/test_inherits_path_option.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/test_interpreter.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/test_interpreter_constraints.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/test_jobs.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/test_lang.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/test_os.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/test_packaging.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/test_pep_425.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/test_pep_508.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/test_pep_723.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/test_pex.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/test_pex_binary.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/test_pex_bootstrapper.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/test_pex_builder.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/test_pex_info.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/test_pex_root.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/test_pex_warnings.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/test_pip.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/test_platform.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/test_pth.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/test_pyvenv_cfg.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/test_requirements.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/test_sorted_tuple.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/test_specifier_sets.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/test_target_system.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/test_targets.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/test_tarjan.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/test_third_party.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/test_util.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/test_variables.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/test_vendor.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/test_windows.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/test_zip_utils.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/tools/__init__.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/tools/commands/__init__.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/tools/commands/test_interpreter_command.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/tools/commands/test_repository.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/tests/tools/commands/test_venv.py +0 -0
- {pex-2.65.0 → pex-2.66.1}/uv.lock +0 -0
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# Release Notes
|
|
2
2
|
|
|
3
|
+
## 2.66.1
|
|
4
|
+
|
|
5
|
+
This release improves upon the local project directory hashing fix in [2.61.1](#2.61.1) by
|
|
6
|
+
avoiding the hashing altogether unless creating a lock, where the resulting fingerprint is
|
|
7
|
+
needed.
|
|
8
|
+
|
|
9
|
+
* Avoid fingerprinting local projects. (#2975)
|
|
10
|
+
|
|
11
|
+
## 2.66.0
|
|
12
|
+
|
|
13
|
+
This release adds support for `--pip-version 25.3`.
|
|
14
|
+
|
|
15
|
+
* Add support for `--pip-version 25.3`. (#2968)
|
|
16
|
+
|
|
3
17
|
## 2.65.0
|
|
4
18
|
|
|
5
19
|
This release adds support for PEX scies using CPython free-threaded builds. Most such scies should
|
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: pex
|
|
3
|
-
Version: 2.
|
|
3
|
+
Version: 2.66.1
|
|
4
4
|
Summary: The PEX packaging toolchain.
|
|
5
5
|
Home-page: https://github.com/pex-tool/pex
|
|
6
|
-
Download-URL: https://github.com/pex-tool/pex/releases/download/v2.
|
|
6
|
+
Download-URL: https://github.com/pex-tool/pex/releases/download/v2.66.1/pex
|
|
7
7
|
Author: The PEX developers
|
|
8
8
|
Author-email: developers@pex-tool.org
|
|
9
9
|
License-Expression: Apache-2.0
|
|
10
|
-
Project-URL: Changelog, https://github.com/pex-tool/pex/blob/v2.
|
|
10
|
+
Project-URL: Changelog, https://github.com/pex-tool/pex/blob/v2.66.1/CHANGES.md
|
|
11
11
|
Project-URL: Documentation, https://docs.pex-tool.org/
|
|
12
|
-
Project-URL: Source, https://github.com/pex-tool/pex/tree/v2.
|
|
12
|
+
Project-URL: Source, https://github.com/pex-tool/pex/tree/v2.66.1
|
|
13
13
|
Keywords: package,executable,virtualenv,lock,freeze
|
|
14
14
|
Classifier: Development Status :: 5 - Production/Stable
|
|
15
15
|
Classifier: Intended Audience :: Developers
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
# Copyright 2022 Pex project contributors.
|
|
2
2
|
# Licensed under the Apache License, Version 2.0 (see LICENSE).
|
|
3
3
|
|
|
4
|
-
from __future__ import absolute_import
|
|
4
|
+
from __future__ import absolute_import, print_function
|
|
5
5
|
|
|
6
6
|
import hashlib
|
|
7
7
|
import os
|
|
@@ -241,10 +241,12 @@ def dir_hash(
|
|
|
241
241
|
def iter_files():
|
|
242
242
|
# type: () -> Iterator[Text]
|
|
243
243
|
for root, dirs, files in os.walk(top, followlinks=True):
|
|
244
|
-
dirs[:] = [
|
|
244
|
+
dirs[:] = [
|
|
245
|
+
d for d in dirs if dir_filter(os.path.relpath(os.path.join(root, d), top))
|
|
246
|
+
]
|
|
245
247
|
for f in files:
|
|
246
248
|
path = os.path.join(root, f)
|
|
247
|
-
if file_filter(path):
|
|
249
|
+
if file_filter(os.path.relpath(path, top)):
|
|
248
250
|
yield path
|
|
249
251
|
|
|
250
252
|
file_paths = sorted(iter_files())
|
|
@@ -278,16 +280,26 @@ def zip_hash(
|
|
|
278
280
|
else zf.namelist()
|
|
279
281
|
)
|
|
280
282
|
|
|
281
|
-
dirs =
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
283
|
+
dirs = set()
|
|
284
|
+
for name in namelist:
|
|
285
|
+
if name.endswith("/"):
|
|
286
|
+
dirname = name.rstrip("/")
|
|
287
|
+
else:
|
|
288
|
+
dirname = os.path.dirname(name)
|
|
289
|
+
while dirname:
|
|
290
|
+
dirs.add(dirname)
|
|
291
|
+
dirname = os.path.dirname(dirname)
|
|
292
|
+
|
|
293
|
+
accept_dirs = frozenset(
|
|
294
|
+
d for d in dirs if dir_filter(os.path.relpath(d, relpath) if relpath else d)
|
|
295
|
+
)
|
|
296
|
+
reject_dirs = tuple("{dir}/".format(dir=path) for path in (dirs - accept_dirs))
|
|
285
297
|
accept_files = sorted(
|
|
286
298
|
name
|
|
287
299
|
for name in namelist
|
|
288
300
|
if not name.endswith("/")
|
|
289
|
-
and not
|
|
290
|
-
and file_filter(os.path.
|
|
301
|
+
and not name.startswith(reject_dirs)
|
|
302
|
+
and file_filter(os.path.relpath(name, relpath) if relpath else name)
|
|
291
303
|
)
|
|
292
304
|
|
|
293
305
|
hashed_names = (
|
|
@@ -297,3 +309,53 @@ def zip_hash(
|
|
|
297
309
|
|
|
298
310
|
for filename in accept_files:
|
|
299
311
|
update_hash(zf.open(filename, "r"), digest)
|
|
312
|
+
|
|
313
|
+
|
|
314
|
+
if __name__ == "__main__":
|
|
315
|
+
import sys
|
|
316
|
+
import zipfile
|
|
317
|
+
from argparse import ArgumentParser
|
|
318
|
+
|
|
319
|
+
from pex.common import is_pyc_dir, is_pyc_file
|
|
320
|
+
|
|
321
|
+
parser = ArgumentParser()
|
|
322
|
+
parser.add_argument(
|
|
323
|
+
"--exclude-dir",
|
|
324
|
+
dest="exclude_dirs",
|
|
325
|
+
action="append",
|
|
326
|
+
default=[],
|
|
327
|
+
)
|
|
328
|
+
parser.add_argument("--zip-relpath")
|
|
329
|
+
parser.add_argument("paths", nargs="+")
|
|
330
|
+
|
|
331
|
+
options = parser.parse_args()
|
|
332
|
+
exclude_dirs = frozenset(options.exclude_dirs)
|
|
333
|
+
|
|
334
|
+
for path in options.paths:
|
|
335
|
+
digest = Sha256()
|
|
336
|
+
if zipfile.is_zipfile(path):
|
|
337
|
+
zip_hash(
|
|
338
|
+
path,
|
|
339
|
+
digest=digest,
|
|
340
|
+
relpath=options.zip_relpath,
|
|
341
|
+
dir_filter=(
|
|
342
|
+
lambda dir_path: (
|
|
343
|
+
not is_pyc_dir(dir_path) and os.path.basename(dir_path) not in exclude_dirs
|
|
344
|
+
)
|
|
345
|
+
),
|
|
346
|
+
file_filter=lambda f: not is_pyc_file(f),
|
|
347
|
+
)
|
|
348
|
+
elif os.path.isdir(path):
|
|
349
|
+
dir_hash(
|
|
350
|
+
path,
|
|
351
|
+
digest=digest,
|
|
352
|
+
dir_filter=(
|
|
353
|
+
lambda dir_path: (
|
|
354
|
+
not is_pyc_dir(dir_path) and os.path.basename(dir_path) not in exclude_dirs
|
|
355
|
+
)
|
|
356
|
+
),
|
|
357
|
+
file_filter=lambda f: not is_pyc_file(f),
|
|
358
|
+
)
|
|
359
|
+
else:
|
|
360
|
+
print("Can only hash zip files or directories. Skipping file", path, file=sys.stderr)
|
|
361
|
+
print(path, digest.hexdigest(), file=sys.stdout)
|
|
@@ -470,10 +470,7 @@ class PEXBuilder(object):
|
|
|
470
470
|
def _prepare_code(self):
|
|
471
471
|
chroot_path = self._chroot.path()
|
|
472
472
|
self._pex_info.code_hash = CacheHelper.pex_code_hash(
|
|
473
|
-
chroot_path,
|
|
474
|
-
exclude_dirs=tuple(
|
|
475
|
-
os.path.join(chroot_path, d) for d in (layout.BOOTSTRAP_DIR, layout.DEPS_DIR)
|
|
476
|
-
),
|
|
473
|
+
chroot_path, exclude_dirs=(layout.BOOTSTRAP_DIR, layout.DEPS_DIR)
|
|
477
474
|
)
|
|
478
475
|
self._pex_info.pex_hash = hashlib.sha1(self._pex_info.dump().encode("utf-8")).hexdigest()
|
|
479
476
|
self._chroot.write(self._pex_info.dump().encode("utf-8"), PexInfo.PATH, label="manifest")
|
|
@@ -552,8 +552,7 @@ class Pip(object):
|
|
|
552
552
|
)
|
|
553
553
|
return Job(command=command, process=process, finalizer=finalizer, context="pip")
|
|
554
554
|
|
|
555
|
-
|
|
556
|
-
def _iter_build_configuration_options(build_configuration):
|
|
555
|
+
def _iter_build_configuration_options(self, build_configuration):
|
|
557
556
|
# type: (BuildConfiguration) -> Iterator[str]
|
|
558
557
|
|
|
559
558
|
# N.B.: BuildConfiguration maintains invariants that ensure --only-binary, --no-binary,
|
|
@@ -576,7 +575,8 @@ class Pip(object):
|
|
|
576
575
|
if build_configuration.prefer_older_binary:
|
|
577
576
|
yield "--prefer-binary"
|
|
578
577
|
|
|
579
|
-
|
|
578
|
+
# N.B.: In 25.3 `--use-pep517` became the default and only option.
|
|
579
|
+
if build_configuration.use_pep517 is not None and self.version < PipVersion.v25_3:
|
|
580
580
|
yield "--use-pep517" if build_configuration.use_pep517 else "--no-use-pep517"
|
|
581
581
|
|
|
582
582
|
if not build_configuration.build_isolation:
|
|
@@ -0,0 +1,179 @@
|
|
|
1
|
+
# Copyright 2022 Pex project contributors.
|
|
2
|
+
# Licensed under the Apache License, Version 2.0 (see LICENSE).
|
|
3
|
+
|
|
4
|
+
from __future__ import absolute_import
|
|
5
|
+
|
|
6
|
+
import os
|
|
7
|
+
import re
|
|
8
|
+
|
|
9
|
+
from pex import hashing
|
|
10
|
+
from pex.artifact_url import VCS, Fingerprint
|
|
11
|
+
from pex.common import is_pyc_dir, is_pyc_file
|
|
12
|
+
from pex.exceptions import reportable_unexpected_error_msg
|
|
13
|
+
from pex.hashing import Sha256
|
|
14
|
+
from pex.pep_440 import Version
|
|
15
|
+
from pex.pep_503 import ProjectName
|
|
16
|
+
from pex.result import Error, try_
|
|
17
|
+
from pex.typing import TYPE_CHECKING
|
|
18
|
+
|
|
19
|
+
if TYPE_CHECKING:
|
|
20
|
+
# N.B.: The `re.Pattern` type is not available in all Python versions Pex supports.
|
|
21
|
+
from re import Pattern # type: ignore[attr-defined]
|
|
22
|
+
from typing import Callable, Optional, Text, Tuple, Union
|
|
23
|
+
|
|
24
|
+
from pex.hashing import HintedDigest
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
def _project_name_re(project_name):
|
|
28
|
+
# type: (ProjectName) -> str
|
|
29
|
+
return project_name.normalized.replace("-", "[-_.]+")
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
def _built_source_dist_pattern(project_name):
|
|
33
|
+
# type: (ProjectName) -> Pattern
|
|
34
|
+
return re.compile(
|
|
35
|
+
r"(?P<project_name>{project_name_re})-(?P<version>.+)\.zip".format(
|
|
36
|
+
project_name_re=_project_name_re(project_name)
|
|
37
|
+
),
|
|
38
|
+
re.IGNORECASE,
|
|
39
|
+
)
|
|
40
|
+
|
|
41
|
+
|
|
42
|
+
def _find_built_source_dist(
|
|
43
|
+
build_dir, # type: str
|
|
44
|
+
project_name, # type: ProjectName
|
|
45
|
+
version, # type: Version
|
|
46
|
+
):
|
|
47
|
+
# type: (...) -> Union[str, Error]
|
|
48
|
+
|
|
49
|
+
# All VCS requirements are prepared as zip archives with this naming scheme as
|
|
50
|
+
# encoded in: `pip._internal.req.req_install.InstallRequirement.archive`.
|
|
51
|
+
|
|
52
|
+
listing = os.listdir(build_dir)
|
|
53
|
+
pattern = _built_source_dist_pattern(project_name)
|
|
54
|
+
for name in listing:
|
|
55
|
+
match = pattern.match(name)
|
|
56
|
+
if match and Version(match.group("version")) == version:
|
|
57
|
+
return os.path.join(build_dir, name)
|
|
58
|
+
|
|
59
|
+
return Error(
|
|
60
|
+
"Expected to find built sdist for {project_name} {version} in {build_dir} but only found:\n"
|
|
61
|
+
"{listing}".format(
|
|
62
|
+
project_name=project_name.raw,
|
|
63
|
+
version=version.raw,
|
|
64
|
+
build_dir=build_dir,
|
|
65
|
+
listing="\n".join(listing),
|
|
66
|
+
)
|
|
67
|
+
)
|
|
68
|
+
|
|
69
|
+
|
|
70
|
+
def fingerprint_downloaded_vcs_archive(
|
|
71
|
+
download_dir, # type: str
|
|
72
|
+
project_name, # type: ProjectName
|
|
73
|
+
version, # type: Version
|
|
74
|
+
vcs, # type: VCS.Value
|
|
75
|
+
):
|
|
76
|
+
# type: (...) -> Tuple[Fingerprint, str]
|
|
77
|
+
|
|
78
|
+
archive_path = try_(
|
|
79
|
+
_find_built_source_dist(build_dir=download_dir, project_name=project_name, version=version)
|
|
80
|
+
)
|
|
81
|
+
digest = Sha256()
|
|
82
|
+
digest_vcs_archive(project_name=project_name, archive_path=archive_path, vcs=vcs, digest=digest)
|
|
83
|
+
return Fingerprint.from_digest(digest), archive_path
|
|
84
|
+
|
|
85
|
+
|
|
86
|
+
def _vcs_dir_filter(
|
|
87
|
+
vcs, # type: VCS.Value
|
|
88
|
+
project_name, # type: ProjectName
|
|
89
|
+
):
|
|
90
|
+
# type: (...) -> Callable[[Text], bool]
|
|
91
|
+
|
|
92
|
+
# Ignore VCS control directories for the purposes of fingerprinting the version controlled
|
|
93
|
+
# source tree. VCS control directories can contain non-reproducible content (Git at least
|
|
94
|
+
# has files that contain timestamps).
|
|
95
|
+
#
|
|
96
|
+
# We cannot prune these directories from the source archive directly unfortunately since
|
|
97
|
+
# some build processes use VCS version information to derive their version numbers (C.F.:
|
|
98
|
+
# https://pypi.org/project/setuptools-scm/). As such, we'll get a stable fingerprint, but be
|
|
99
|
+
# forced to re-build a wheel each time the VCS requirement is re-locked later, even when it
|
|
100
|
+
# hashes the same.
|
|
101
|
+
vcs_control_dir = ".{vcs}".format(vcs=vcs)
|
|
102
|
+
|
|
103
|
+
# N.B.: If the VCS project uses setuptools as its build backend, depending on the version of
|
|
104
|
+
# Pip used, the VCS checkout can have a `<project name>.egg-info/` directory littering its root
|
|
105
|
+
# left over from Pip generating project metadata to determine version and dependencies. No other
|
|
106
|
+
# well known build-backend has this problem at this time (checked hatchling, poetry-core,
|
|
107
|
+
# pdm-backend and uv_build).
|
|
108
|
+
# C.F.: https://github.com/pypa/pip/pull/13602
|
|
109
|
+
egg_info_dir_re = re.compile(
|
|
110
|
+
r"^{project_name_re}\.egg-info$".format(project_name_re=_project_name_re(project_name)),
|
|
111
|
+
re.IGNORECASE,
|
|
112
|
+
)
|
|
113
|
+
|
|
114
|
+
def vcs_dir_filter(dir_path):
|
|
115
|
+
# type: (Text) -> bool
|
|
116
|
+
if is_pyc_dir(dir_path):
|
|
117
|
+
return False
|
|
118
|
+
|
|
119
|
+
base_dir_name = dir_path.split(os.sep)[0]
|
|
120
|
+
return base_dir_name != vcs_control_dir and not egg_info_dir_re.match(base_dir_name)
|
|
121
|
+
|
|
122
|
+
return vcs_dir_filter
|
|
123
|
+
|
|
124
|
+
|
|
125
|
+
def _vcs_file_filter(vcs):
|
|
126
|
+
# type: (VCS.Value) -> Callable[[Text], bool]
|
|
127
|
+
return lambda f: not is_pyc_file(f)
|
|
128
|
+
|
|
129
|
+
|
|
130
|
+
def digest_vcs_archive(
|
|
131
|
+
project_name, # type: ProjectName
|
|
132
|
+
archive_path, # type: str
|
|
133
|
+
vcs, # type: VCS.Value
|
|
134
|
+
digest, # type: HintedDigest
|
|
135
|
+
):
|
|
136
|
+
# type: (...) -> None
|
|
137
|
+
|
|
138
|
+
# All VCS requirements are prepared as zip archives as encoded in:
|
|
139
|
+
# `pip._internal.req.req_install.InstallRequirement.archive` and the archive is already offset
|
|
140
|
+
# by a subdirectory (if any).
|
|
141
|
+
|
|
142
|
+
# The zip archives created by Pip have a single project name top-level directory housing
|
|
143
|
+
# the full clone. We look for that to get a consistent clone hash with a bare clone.
|
|
144
|
+
match = _built_source_dist_pattern(project_name).match(os.path.basename(archive_path))
|
|
145
|
+
if match is None:
|
|
146
|
+
raise AssertionError(
|
|
147
|
+
reportable_unexpected_error_msg(
|
|
148
|
+
"Failed to determine the project name prefix for the VCS zip {zip} with expected "
|
|
149
|
+
"canonical project name {project_name}".format(
|
|
150
|
+
zip=archive_path, project_name=project_name
|
|
151
|
+
)
|
|
152
|
+
)
|
|
153
|
+
)
|
|
154
|
+
top_dir = match.group("project_name")
|
|
155
|
+
|
|
156
|
+
hashing.zip_hash(
|
|
157
|
+
zip_path=archive_path,
|
|
158
|
+
digest=digest,
|
|
159
|
+
relpath=top_dir,
|
|
160
|
+
dir_filter=_vcs_dir_filter(vcs, project_name),
|
|
161
|
+
file_filter=_vcs_file_filter(vcs),
|
|
162
|
+
)
|
|
163
|
+
|
|
164
|
+
|
|
165
|
+
def digest_vcs_repo(
|
|
166
|
+
project_name, # type: ProjectName
|
|
167
|
+
repo_path, # type: str
|
|
168
|
+
vcs, # type: VCS.Value
|
|
169
|
+
digest, # type: HintedDigest
|
|
170
|
+
subdirectory=None, # type: Optional[str]
|
|
171
|
+
):
|
|
172
|
+
# type: (...) -> None
|
|
173
|
+
|
|
174
|
+
hashing.dir_hash(
|
|
175
|
+
directory=os.path.join(repo_path, subdirectory) if subdirectory else repo_path,
|
|
176
|
+
digest=digest,
|
|
177
|
+
dir_filter=_vcs_dir_filter(vcs, project_name),
|
|
178
|
+
file_filter=_vcs_file_filter(vcs),
|
|
179
|
+
)
|
|
@@ -369,6 +369,13 @@ class PipVersion(Enum["PipVersionValue"]):
|
|
|
369
369
|
requires_python=">=3.9,<3.16",
|
|
370
370
|
)
|
|
371
371
|
|
|
372
|
+
v25_3 = PipVersionValue(
|
|
373
|
+
version="25.3",
|
|
374
|
+
setuptools_version="80.9.0",
|
|
375
|
+
wheel_version="0.45.1",
|
|
376
|
+
requires_python=">=3.9,<3.16",
|
|
377
|
+
)
|
|
378
|
+
|
|
372
379
|
VENDORED = v20_3_4_patched
|
|
373
380
|
LATEST = LatestPipVersion()
|
|
374
381
|
LATEST_COMPATIBLE = LatestCompatiblePipVersion()
|
|
@@ -154,6 +154,7 @@ class VCSArtifactDownloadManager(DownloadManager[VCSArtifact]):
|
|
|
154
154
|
local_distribution = downloaded_vcs.local_distributions[0]
|
|
155
155
|
filename = os.path.basename(local_distribution.path)
|
|
156
156
|
digest_vcs_archive(
|
|
157
|
+
project_name=project_name,
|
|
157
158
|
archive_path=local_distribution.path,
|
|
158
159
|
vcs=artifact.vcs,
|
|
159
160
|
digest=digest,
|
|
@@ -30,6 +30,7 @@ from pex.resolve.pep_691.model import Endpoint
|
|
|
30
30
|
from pex.resolve.resolved_requirement import PartialArtifact, Pin, ResolvedRequirement
|
|
31
31
|
from pex.resolve.resolvers import Resolver
|
|
32
32
|
from pex.resolve.target_system import UniversalTarget
|
|
33
|
+
from pex.result import try_
|
|
33
34
|
from pex.targets import Target
|
|
34
35
|
from pex.typing import TYPE_CHECKING
|
|
35
36
|
|
|
@@ -291,6 +292,16 @@ class Locker(LogAnalyzer):
|
|
|
291
292
|
def _maybe_record_wheel(self, url):
|
|
292
293
|
# type: (str) -> ArtifactURL
|
|
293
294
|
artifact_url = self.parse_url_and_maybe_record_fingerprint(url)
|
|
295
|
+
|
|
296
|
+
# N.B.: Lock resolves driven by `pip install --dry-run --report` will only consult PEP-658
|
|
297
|
+
# `.whl.metadata` side-car files in the happy path; so we must use these as a proxy for the
|
|
298
|
+
# `.whl` file they are paired with.
|
|
299
|
+
# See: https://peps.python.org/pep-0658/
|
|
300
|
+
if not self._lock_is_via_pip_download and artifact_url.url_info.path.endswith(".metadata"):
|
|
301
|
+
artifact_url = ArtifactURL.from_url_info(
|
|
302
|
+
artifact_url.url_info._replace(path=artifact_url.url_info.path[:-9])
|
|
303
|
+
)
|
|
304
|
+
|
|
294
305
|
if artifact_url.is_wheel:
|
|
295
306
|
pin, partial_artifact = self._extract_resolve_data(artifact_url)
|
|
296
307
|
|
|
@@ -371,8 +382,8 @@ class Locker(LogAnalyzer):
|
|
|
371
382
|
if isinstance(artifact_url.scheme, VCSScheme):
|
|
372
383
|
source_fingerprint, archive_path = fingerprint_downloaded_vcs_archive(
|
|
373
384
|
download_dir=self._download_dir,
|
|
374
|
-
project_name=
|
|
375
|
-
version=
|
|
385
|
+
project_name=build_result.pin.project_name,
|
|
386
|
+
version=build_result.pin.version,
|
|
376
387
|
vcs=artifact_url.scheme.vcs,
|
|
377
388
|
)
|
|
378
389
|
verified = True
|
|
@@ -407,12 +418,14 @@ class Locker(LogAnalyzer):
|
|
|
407
418
|
os.path.basename(artifact_url.path)
|
|
408
419
|
] = build_result.pin
|
|
409
420
|
else:
|
|
410
|
-
|
|
411
|
-
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
|
|
421
|
+
try_(
|
|
422
|
+
digest_local_project(
|
|
423
|
+
directory=artifact_url.path,
|
|
424
|
+
digest=digest,
|
|
425
|
+
pip_version=self._pip_version,
|
|
426
|
+
target=self._target,
|
|
427
|
+
resolver=self._resolver,
|
|
428
|
+
)
|
|
416
429
|
)
|
|
417
430
|
self._local_projects.add(artifact_url.path)
|
|
418
431
|
self._saved.add(build_result.pin)
|
|
@@ -445,6 +458,7 @@ class Locker(LogAnalyzer):
|
|
|
445
458
|
if isinstance(artifact_url.scheme, VCSScheme):
|
|
446
459
|
digest = Sha256()
|
|
447
460
|
digest_vcs_repo(
|
|
461
|
+
project_name=build_result.pin.project_name,
|
|
448
462
|
repo_path=build_result.path,
|
|
449
463
|
vcs=artifact_url.scheme.vcs,
|
|
450
464
|
digest=digest,
|
|
@@ -479,12 +493,14 @@ class Locker(LogAnalyzer):
|
|
|
479
493
|
os.path.basename(artifact_url.path)
|
|
480
494
|
] = build_result.pin
|
|
481
495
|
else:
|
|
482
|
-
|
|
483
|
-
|
|
484
|
-
|
|
485
|
-
|
|
486
|
-
|
|
487
|
-
|
|
496
|
+
try_(
|
|
497
|
+
digest_local_project(
|
|
498
|
+
directory=artifact_url.path,
|
|
499
|
+
digest=digest,
|
|
500
|
+
pip_version=self._pip_version,
|
|
501
|
+
target=self._target,
|
|
502
|
+
resolver=self._resolver,
|
|
503
|
+
)
|
|
488
504
|
)
|
|
489
505
|
self._local_projects.add(artifact_url.path)
|
|
490
506
|
self._saved.add(build_result.pin)
|
|
@@ -357,8 +357,6 @@ class LockObserver(ResolveObserver):
|
|
|
357
357
|
target=local_distribution.download_target,
|
|
358
358
|
source_path=local_distribution.path,
|
|
359
359
|
subdirectory=local_distribution.subdirectory,
|
|
360
|
-
resolver=self.resolver,
|
|
361
|
-
pip_version=self.package_index_configuration.pip_version,
|
|
362
360
|
)
|
|
363
361
|
)
|
|
364
362
|
|
|
@@ -369,10 +367,7 @@ class LockObserver(ResolveObserver):
|
|
|
369
367
|
lock_result = analysis.analyzer.lock_result
|
|
370
368
|
build_requests.update(
|
|
371
369
|
BuildRequest.for_directory(
|
|
372
|
-
target=analysis.download_target,
|
|
373
|
-
source_path=local_project,
|
|
374
|
-
resolver=self.resolver,
|
|
375
|
-
pip_version=self.package_index_configuration.pip_version,
|
|
370
|
+
target=analysis.download_target, source_path=local_project
|
|
376
371
|
)
|
|
377
372
|
for local_project in lock_result.local_projects
|
|
378
373
|
)
|
|
@@ -101,19 +101,13 @@ def resolve_from_dists(
|
|
|
101
101
|
extra_pip_requirements=pip_configuration.extra_requirements,
|
|
102
102
|
keyring_provider=pip_configuration.keyring_provider,
|
|
103
103
|
)
|
|
104
|
-
resolver = ConfiguredResolver(pip_configuration=pip_configuration)
|
|
105
104
|
build_requests = [
|
|
106
105
|
BuildRequest.for_file(target=target, source_path=sdist)
|
|
107
106
|
for sdist in sdists
|
|
108
107
|
for target in unique_targets
|
|
109
108
|
]
|
|
110
109
|
build_requests.extend(
|
|
111
|
-
BuildRequest.for_directory(
|
|
112
|
-
target=target,
|
|
113
|
-
source_path=local_project.path,
|
|
114
|
-
resolver=resolver,
|
|
115
|
-
pip_version=pip_configuration.version,
|
|
116
|
-
)
|
|
110
|
+
BuildRequest.for_directory(target=target, source_path=local_project.path)
|
|
117
111
|
for local_project in local_projects
|
|
118
112
|
for target in unique_targets
|
|
119
113
|
)
|
|
@@ -65,6 +65,7 @@ from pex.resolve.resolvers import (
|
|
|
65
65
|
check_resolve,
|
|
66
66
|
)
|
|
67
67
|
from pex.resolve.target_system import TargetSystem, UniversalTarget
|
|
68
|
+
from pex.result import Error
|
|
68
69
|
from pex.targets import AbbreviatedPlatform, CompletePlatform, LocalInterpreter, Target, Targets
|
|
69
70
|
from pex.third_party.packaging.specifiers import SpecifierSet
|
|
70
71
|
from pex.third_party.packaging.tags import Tag
|
|
@@ -309,10 +310,7 @@ class _PipSession(object):
|
|
|
309
310
|
if isinstance(requirement, LocalProjectRequirement):
|
|
310
311
|
for request in self.requests:
|
|
311
312
|
yield BuildRequest.for_directory(
|
|
312
|
-
target=request.target,
|
|
313
|
-
source_path=requirement.path,
|
|
314
|
-
resolver=self.resolver,
|
|
315
|
-
pip_version=self.pip_version,
|
|
313
|
+
target=request.target, source_path=requirement.path
|
|
316
314
|
)
|
|
317
315
|
|
|
318
316
|
def generate_reports(self, max_parallel_jobs=None):
|
|
@@ -594,12 +592,17 @@ def _fingerprint_directory(path):
|
|
|
594
592
|
return CacheHelper.dir_hash(path, digest=_hasher())
|
|
595
593
|
|
|
596
594
|
|
|
595
|
+
class BuildError(Exception):
|
|
596
|
+
pass
|
|
597
|
+
|
|
598
|
+
|
|
597
599
|
def _fingerprint_local_project(
|
|
598
600
|
path, # type: str
|
|
599
601
|
target, # type: Target
|
|
600
602
|
resolver=None, # type: Optional[Resolver]
|
|
601
603
|
pip_version=None, # type: Optional[PipVersionValue]
|
|
602
604
|
):
|
|
605
|
+
# type: (...) -> str
|
|
603
606
|
if resolver:
|
|
604
607
|
build_system_resolver = resolver
|
|
605
608
|
else:
|
|
@@ -607,17 +610,20 @@ def _fingerprint_local_project(
|
|
|
607
610
|
|
|
608
611
|
build_system_resolver = ConfiguredResolver.default()
|
|
609
612
|
|
|
610
|
-
|
|
613
|
+
hasher = _hasher()
|
|
614
|
+
result = digest_local_project(
|
|
611
615
|
directory=path,
|
|
612
|
-
digest=
|
|
616
|
+
digest=hasher,
|
|
613
617
|
target=target,
|
|
614
618
|
resolver=build_system_resolver,
|
|
615
619
|
pip_version=pip_version,
|
|
616
620
|
)
|
|
617
|
-
|
|
618
|
-
|
|
619
|
-
|
|
620
|
-
|
|
621
|
+
if isinstance(result, Error):
|
|
622
|
+
raise BuildError(
|
|
623
|
+
"Failed to create an sdist for hashing from the local project at {path}: "
|
|
624
|
+
"{err}".format(path=path, err=result)
|
|
625
|
+
)
|
|
626
|
+
return hasher.hexdigest()
|
|
621
627
|
|
|
622
628
|
|
|
623
629
|
def _as_download_target(target):
|
|
@@ -649,27 +655,19 @@ class BuildRequest(object):
|
|
|
649
655
|
target, # type: Union[DownloadTarget, Target]
|
|
650
656
|
source_path, # type: str
|
|
651
657
|
subdirectory=None, # type: Optional[str]
|
|
652
|
-
resolver=None, # type: Optional[Resolver]
|
|
653
|
-
pip_version=None, # type: Optional[PipVersionValue]
|
|
654
658
|
):
|
|
655
659
|
# type: (...) -> BuildRequest
|
|
656
660
|
download_target = _as_download_target(target)
|
|
657
|
-
fingerprint = _fingerprint_local_project(
|
|
658
|
-
path=source_path,
|
|
659
|
-
target=download_target.target,
|
|
660
|
-
resolver=resolver,
|
|
661
|
-
pip_version=pip_version,
|
|
662
|
-
)
|
|
663
661
|
return cls(
|
|
664
662
|
download_target=download_target,
|
|
665
663
|
source_path=source_path,
|
|
666
|
-
fingerprint=
|
|
664
|
+
fingerprint=None,
|
|
667
665
|
subdirectory=subdirectory,
|
|
668
666
|
)
|
|
669
667
|
|
|
670
668
|
download_target = attr.ib(converter=_as_download_target) # type: DownloadTarget
|
|
671
669
|
source_path = attr.ib() # type: str
|
|
672
|
-
fingerprint = attr.ib() # type: str
|
|
670
|
+
fingerprint = attr.ib() # type: Optional[str]
|
|
673
671
|
subdirectory = attr.ib() # type: Optional[str]
|
|
674
672
|
|
|
675
673
|
@property
|
|
@@ -724,12 +722,16 @@ class BuildResult(object):
|
|
|
724
722
|
source_path=None, # type: Optional[str]
|
|
725
723
|
):
|
|
726
724
|
# type: (...) -> BuildResult
|
|
727
|
-
|
|
728
|
-
|
|
729
|
-
|
|
730
|
-
|
|
731
|
-
|
|
732
|
-
|
|
725
|
+
if build_request.fingerprint:
|
|
726
|
+
built_wheel = BuiltWheelDir.create(
|
|
727
|
+
sdist=source_path or build_request.source_path,
|
|
728
|
+
fingerprint=build_request.fingerprint,
|
|
729
|
+
target=build_request.target,
|
|
730
|
+
)
|
|
731
|
+
target_dir = built_wheel.dist_dir
|
|
732
|
+
else:
|
|
733
|
+
target_dir = os.path.join(safe_mkdtemp(), "build")
|
|
734
|
+
return cls(request=build_request, atomic_dir=AtomicDirectory(target_dir))
|
|
733
735
|
|
|
734
736
|
request = attr.ib() # type: BuildRequest
|
|
735
737
|
_atomic_dir = attr.ib() # type: AtomicDirectory
|
|
@@ -1290,14 +1292,7 @@ class BuildAndInstallRequest(object):
|
|
|
1290
1292
|
if is_wheel(dist_path):
|
|
1291
1293
|
to_install.add(InstallRequest.create(install_request.target, dist_path))
|
|
1292
1294
|
elif os.path.isdir(dist_path):
|
|
1293
|
-
to_build.add(
|
|
1294
|
-
BuildRequest.for_directory(
|
|
1295
|
-
install_request.target,
|
|
1296
|
-
dist_path,
|
|
1297
|
-
resolver=self._resolver,
|
|
1298
|
-
pip_version=self._pip_version,
|
|
1299
|
-
)
|
|
1300
|
-
)
|
|
1295
|
+
to_build.add(BuildRequest.for_directory(install_request.target, dist_path))
|
|
1301
1296
|
else:
|
|
1302
1297
|
to_build.add(BuildRequest.for_file(install_request.target, dist_path))
|
|
1303
1298
|
already_analyzed.add(metadata.project_name)
|
|
@@ -1907,11 +1902,21 @@ def download_requests(
|
|
|
1907
1902
|
def add_build_requests(requests):
|
|
1908
1903
|
# type: (Iterable[BuildRequest]) -> None
|
|
1909
1904
|
for request in requests:
|
|
1905
|
+
if request.fingerprint:
|
|
1906
|
+
fingerprint = request.fingerprint
|
|
1907
|
+
else:
|
|
1908
|
+
production_assert(os.path.isdir(request.source_path))
|
|
1909
|
+
fingerprint = _fingerprint_local_project(
|
|
1910
|
+
path=request.source_path,
|
|
1911
|
+
target=request.target,
|
|
1912
|
+
resolver=resolver,
|
|
1913
|
+
pip_version=pip_version,
|
|
1914
|
+
)
|
|
1910
1915
|
local_distributions.append(
|
|
1911
1916
|
LocalDistribution(
|
|
1912
1917
|
download_target=request.download_target,
|
|
1913
1918
|
path=request.source_path,
|
|
1914
|
-
fingerprint=
|
|
1919
|
+
fingerprint=fingerprint,
|
|
1915
1920
|
subdirectory=request.subdirectory,
|
|
1916
1921
|
)
|
|
1917
1922
|
)
|