pex 2.58.0__py2.py3-none-any.whl → 2.59.0__py2.py3-none-any.whl
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/bin/pex.py +1 -0
- pex/build_system/pep_517.py +4 -1
- pex/cli/commands/venv.py +5 -1
- pex/dependency_configuration.py +6 -2
- pex/dist_metadata.py +30 -8
- pex/docs/html/_pagefind/fragment/en_23dc437.pf_fragment +0 -0
- pex/docs/html/_pagefind/fragment/{en_a1e44ad.pf_fragment → en_3b86fa5.pf_fragment} +0 -0
- pex/docs/html/_pagefind/fragment/en_65c3a5b.pf_fragment +0 -0
- pex/docs/html/_pagefind/fragment/en_6c2e6ff.pf_fragment +0 -0
- pex/docs/html/_pagefind/fragment/{en_cb46368.pf_fragment → en_7320871.pf_fragment} +0 -0
- pex/docs/html/_pagefind/fragment/en_7cfdecb.pf_fragment +0 -0
- pex/docs/html/_pagefind/fragment/en_89e2d7c.pf_fragment +0 -0
- pex/docs/html/_pagefind/fragment/{en_1bcc8ee.pf_fragment → en_d4675e3.pf_fragment} +0 -0
- pex/docs/html/_pagefind/index/en_34a4497.pf_index +0 -0
- pex/docs/html/_pagefind/pagefind-entry.json +1 -1
- pex/docs/html/_pagefind/pagefind.en_4ade7b3598.pf_meta +0 -0
- pex/docs/html/_static/documentation_options.js +1 -1
- pex/docs/html/api/vars.html +5 -5
- pex/docs/html/buildingpex.html +5 -5
- pex/docs/html/genindex.html +5 -5
- pex/docs/html/index.html +5 -5
- pex/docs/html/recipes.html +5 -5
- pex/docs/html/scie.html +5 -5
- pex/docs/html/search.html +5 -5
- pex/docs/html/whatispex.html +5 -5
- pex/environment.py +17 -3
- pex/pep_425.py +11 -2
- pex/pep_427.py +218 -73
- pex/pip/installation.py +1 -1
- pex/pip/tool.py +1 -1
- pex/resolve/configured_resolve.py +20 -0
- pex/resolve/configured_resolver.py +7 -3
- pex/resolve/pex_repository_resolver.py +1 -1
- pex/resolve/resolver_configuration.py +17 -0
- pex/resolve/resolver_options.py +88 -16
- pex/resolve/resolvers.py +3 -0
- pex/resolve/target_options.py +18 -2
- pex/resolve/venv_resolver.py +446 -0
- pex/resolver.py +2 -4
- pex/targets.py +9 -4
- pex/vendor/__main__.py +1 -1
- pex/version.py +1 -1
- pex/wheel.py +89 -27
- {pex-2.58.0.dist-info → pex-2.59.0.dist-info}/METADATA +4 -4
- {pex-2.58.0.dist-info → pex-2.59.0.dist-info}/RECORD +50 -49
- pex/docs/html/_pagefind/fragment/en_17c092c.pf_fragment +0 -0
- pex/docs/html/_pagefind/fragment/en_4f6b776.pf_fragment +0 -0
- pex/docs/html/_pagefind/fragment/en_7be5753.pf_fragment +0 -0
- pex/docs/html/_pagefind/fragment/en_dbfc5c3.pf_fragment +0 -0
- pex/docs/html/_pagefind/fragment/en_ea2f1cd.pf_fragment +0 -0
- pex/docs/html/_pagefind/index/en_a415613.pf_index +0 -0
- pex/docs/html/_pagefind/pagefind.en_3d1b9e5425.pf_meta +0 -0
- {pex-2.58.0.dist-info → pex-2.59.0.dist-info}/WHEEL +0 -0
- {pex-2.58.0.dist-info → pex-2.59.0.dist-info}/entry_points.txt +0 -0
- {pex-2.58.0.dist-info → pex-2.59.0.dist-info}/licenses/LICENSE +0 -0
- {pex-2.58.0.dist-info → pex-2.59.0.dist-info}/pylock/pylock.toml +0 -0
- {pex-2.58.0.dist-info → pex-2.59.0.dist-info}/top_level.txt +0 -0
pex/resolver.py
CHANGED
|
@@ -583,7 +583,7 @@ class BuildResult(object):
|
|
|
583
583
|
return frozenset(platforms), is_linux
|
|
584
584
|
|
|
585
585
|
wheel_platform_tags, is_linux_wheel = collect_platforms(
|
|
586
|
-
CompatibilityTags.from_wheel(wheel
|
|
586
|
+
CompatibilityTags.from_wheel(wheel)
|
|
587
587
|
)
|
|
588
588
|
abbreviated_target_platform_tags, is_linux_abbreviated_target = collect_platforms(
|
|
589
589
|
self.request.target.supported_tags
|
|
@@ -987,9 +987,7 @@ def _perform_install(
|
|
|
987
987
|
):
|
|
988
988
|
# type: (...) -> InstallResult
|
|
989
989
|
install_result = install_request.result(installed_wheels_dir)
|
|
990
|
-
install_wheel_chroot(
|
|
991
|
-
wheel_path=install_request.wheel_path, destination=install_result.build_chroot
|
|
992
|
-
)
|
|
990
|
+
install_wheel_chroot(wheel=install_request.wheel_path, destination=install_result.build_chroot)
|
|
993
991
|
return install_result
|
|
994
992
|
|
|
995
993
|
|
pex/targets.py
CHANGED
|
@@ -5,7 +5,7 @@ from __future__ import absolute_import
|
|
|
5
5
|
|
|
6
6
|
import os
|
|
7
7
|
|
|
8
|
-
from pex.dist_metadata import
|
|
8
|
+
from pex.dist_metadata import Constraint, Distribution
|
|
9
9
|
from pex.interpreter import PythonInterpreter
|
|
10
10
|
from pex.interpreter_implementation import InterpreterImplementation
|
|
11
11
|
from pex.orderedset import OrderedSet
|
|
@@ -157,7 +157,7 @@ class Target(object):
|
|
|
157
157
|
|
|
158
158
|
def requirement_applies(
|
|
159
159
|
self,
|
|
160
|
-
requirement, # type:
|
|
160
|
+
requirement, # type: Constraint
|
|
161
161
|
extras=(), # type: Iterable[str]
|
|
162
162
|
):
|
|
163
163
|
# type: (...) -> bool
|
|
@@ -183,7 +183,7 @@ class Target(object):
|
|
|
183
183
|
|
|
184
184
|
def wheel_applies(self, wheel):
|
|
185
185
|
# type: (Distribution) -> WheelEvaluation
|
|
186
|
-
wheel_tags = CompatibilityTags.from_wheel(wheel
|
|
186
|
+
wheel_tags = CompatibilityTags.from_wheel(wheel)
|
|
187
187
|
ranked_tag = self.supported_tags.best_match(wheel_tags)
|
|
188
188
|
return WheelEvaluation(
|
|
189
189
|
tags=tuple(wheel_tags),
|
|
@@ -346,6 +346,11 @@ class Targets(object):
|
|
|
346
346
|
complete_platforms = attr.ib(default=()) # type: Tuple[CompletePlatform, ...]
|
|
347
347
|
platforms = attr.ib(default=()) # type: Tuple[Optional[Platform], ...]
|
|
348
348
|
|
|
349
|
+
@property
|
|
350
|
+
def is_empty(self):
|
|
351
|
+
# type: () -> bool
|
|
352
|
+
return not self.interpreters and not self.complete_platforms and not self.platforms
|
|
353
|
+
|
|
349
354
|
@property
|
|
350
355
|
def interpreter(self):
|
|
351
356
|
# type: () -> Optional[PythonInterpreter]
|
|
@@ -407,7 +412,7 @@ class Targets(object):
|
|
|
407
412
|
|
|
408
413
|
def require_at_most_one_target(self, purpose):
|
|
409
414
|
# type: (str) -> Union[Optional[Target], Error]
|
|
410
|
-
resolved_targets = self.unique_targets(only_explicit=
|
|
415
|
+
resolved_targets = self.unique_targets(only_explicit=True)
|
|
411
416
|
if len(resolved_targets) > 1:
|
|
412
417
|
return Error(
|
|
413
418
|
"At most a single target is required for {purpose}.\n"
|
pex/vendor/__main__.py
CHANGED
|
@@ -534,7 +534,7 @@ def vendorize(root_dir, vendor_specs, prefix, update):
|
|
|
534
534
|
count=len(wheel_files),
|
|
535
535
|
wheel_files="\n".join(os.path.basename(wheel_file) for wheel_file in wheel_files),
|
|
536
536
|
)
|
|
537
|
-
install_wheel_chroot(
|
|
537
|
+
install_wheel_chroot(wheel=wheel_files[0], destination=vendor_spec.target_dir)
|
|
538
538
|
|
|
539
539
|
|
|
540
540
|
if __name__ == "__main__":
|
pex/version.py
CHANGED
pex/wheel.py
CHANGED
|
@@ -10,6 +10,7 @@ from email.message import Message
|
|
|
10
10
|
|
|
11
11
|
from pex.dist_metadata import (
|
|
12
12
|
DistMetadata,
|
|
13
|
+
Distribution,
|
|
13
14
|
MetadataFiles,
|
|
14
15
|
MetadataType,
|
|
15
16
|
load_metadata,
|
|
@@ -20,14 +21,14 @@ from pex.third_party.packaging import tags
|
|
|
20
21
|
from pex.typing import TYPE_CHECKING, cast
|
|
21
22
|
|
|
22
23
|
if TYPE_CHECKING:
|
|
23
|
-
from typing import Dict, Text, Tuple
|
|
24
|
+
from typing import Dict, Optional, Text, Tuple
|
|
24
25
|
|
|
25
26
|
import attr # vendor:skip
|
|
26
27
|
else:
|
|
27
28
|
from pex.third_party import attr
|
|
28
29
|
|
|
29
30
|
|
|
30
|
-
class WheelMetadataLoadError(
|
|
31
|
+
class WheelMetadataLoadError(ValueError):
|
|
31
32
|
"""Indicates an error loading WHEEL metadata."""
|
|
32
33
|
|
|
33
34
|
|
|
@@ -38,6 +39,20 @@ class WHEEL(object):
|
|
|
38
39
|
See item 6 here for the WHEEL file contents: https://peps.python.org/pep-0427/#file-contents
|
|
39
40
|
"""
|
|
40
41
|
|
|
42
|
+
@classmethod
|
|
43
|
+
def _from_metadata_files(cls, metadata_files):
|
|
44
|
+
# type: (MetadataFiles) -> WHEEL
|
|
45
|
+
|
|
46
|
+
metadata_bytes = metadata_files.read("WHEEL")
|
|
47
|
+
if not metadata_bytes:
|
|
48
|
+
raise WheelMetadataLoadError(
|
|
49
|
+
"Could not find WHEEL metadata in {wheel}.".format(
|
|
50
|
+
wheel=metadata_files.render_description(metadata_file_name="WHEEL")
|
|
51
|
+
)
|
|
52
|
+
)
|
|
53
|
+
metadata = parse_message(metadata_bytes)
|
|
54
|
+
return cls(files=metadata_files, metadata=metadata)
|
|
55
|
+
|
|
41
56
|
_CACHE = {} # type: Dict[Text, WHEEL]
|
|
42
57
|
|
|
43
58
|
@classmethod
|
|
@@ -50,14 +65,17 @@ class WHEEL(object):
|
|
|
50
65
|
raise WheelMetadataLoadError(
|
|
51
66
|
"Could not find any metadata in {wheel}.".format(wheel=location)
|
|
52
67
|
)
|
|
68
|
+
wheel = cls._from_metadata_files(metadata_files)
|
|
69
|
+
cls._CACHE[location] = wheel
|
|
70
|
+
return wheel
|
|
53
71
|
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
wheel = cls(files
|
|
72
|
+
@classmethod
|
|
73
|
+
def from_distribution(cls, distribution):
|
|
74
|
+
# type: (Distribution) -> WHEEL
|
|
75
|
+
location = distribution.metadata.files.metadata.path
|
|
76
|
+
wheel = cls._CACHE.get(location)
|
|
77
|
+
if not wheel:
|
|
78
|
+
wheel = cls._from_metadata_files(distribution.metadata.files)
|
|
61
79
|
cls._CACHE[location] = wheel
|
|
62
80
|
return wheel
|
|
63
81
|
|
|
@@ -84,26 +102,49 @@ class WHEEL(object):
|
|
|
84
102
|
|
|
85
103
|
@attr.s(frozen=True)
|
|
86
104
|
class Wheel(object):
|
|
87
|
-
@
|
|
88
|
-
def
|
|
89
|
-
# type:
|
|
90
|
-
|
|
91
|
-
|
|
105
|
+
@staticmethod
|
|
106
|
+
def _source(
|
|
107
|
+
location, # type: str
|
|
108
|
+
metadata_files, # type: MetadataFiles
|
|
109
|
+
):
|
|
110
|
+
# type: (...) -> str
|
|
111
|
+
return "{project_name} {version} at {location}".format(
|
|
112
|
+
project_name=metadata_files.metadata.project_name,
|
|
113
|
+
version=metadata_files.metadata.version,
|
|
114
|
+
location=location,
|
|
115
|
+
)
|
|
92
116
|
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
117
|
+
@classmethod
|
|
118
|
+
def _from_metadata_files(
|
|
119
|
+
cls,
|
|
120
|
+
location, # type: str
|
|
121
|
+
metadata_files, # type: MetadataFiles
|
|
122
|
+
wheel=None, # type: Optional[WHEEL]
|
|
123
|
+
):
|
|
124
|
+
# type: (...) -> Wheel
|
|
125
|
+
|
|
126
|
+
if wheel:
|
|
127
|
+
metadata = wheel
|
|
128
|
+
else:
|
|
129
|
+
wheel_data = metadata_files.read("WHEEL")
|
|
130
|
+
if not wheel_data:
|
|
131
|
+
raise WheelMetadataLoadError(
|
|
132
|
+
"Could not find WHEEL metadata in {source}.".format(
|
|
133
|
+
source=cls._source(location, metadata_files)
|
|
134
|
+
)
|
|
135
|
+
)
|
|
136
|
+
metadata = WHEEL(files=metadata_files, metadata=parse_message(wheel_data))
|
|
98
137
|
|
|
99
|
-
wheel_metadata_dir = os.path.dirname(
|
|
138
|
+
wheel_metadata_dir = os.path.dirname(metadata_files.metadata.rel_path)
|
|
100
139
|
if not wheel_metadata_dir.endswith(".dist-info"):
|
|
101
140
|
raise WheelMetadataLoadError(
|
|
102
|
-
"Expected
|
|
103
|
-
"found at {wheel_metadata_path}.".format(
|
|
104
|
-
|
|
141
|
+
"Expected METADATA file for {source} to be housed in a .dist-info directory, but "
|
|
142
|
+
"was found at {wheel_metadata_path}.".format(
|
|
143
|
+
source=cls._source(location, metadata_files),
|
|
144
|
+
wheel_metadata_path=metadata_files.metadata.rel_path,
|
|
105
145
|
)
|
|
106
146
|
)
|
|
147
|
+
|
|
107
148
|
# Although not crisply defined, all PEPs lead to PEP-508 which restricts project names
|
|
108
149
|
# to ASCII: https://peps.python.org/pep-0508/#names. Likewise, version numbers are also
|
|
109
150
|
# restricted to ASCII: https://peps.python.org/pep-0440/. Since the `.dist-info` dir
|
|
@@ -115,19 +156,40 @@ class Wheel(object):
|
|
|
115
156
|
data_dir = re.sub(r"\.dist-info$", ".data", metadata_dir)
|
|
116
157
|
|
|
117
158
|
return cls(
|
|
118
|
-
location=
|
|
159
|
+
location=location,
|
|
119
160
|
metadata_dir=metadata_dir,
|
|
120
|
-
metadata_files=
|
|
161
|
+
metadata_files=metadata_files,
|
|
121
162
|
metadata=metadata,
|
|
122
163
|
data_dir=data_dir,
|
|
123
164
|
)
|
|
124
165
|
|
|
166
|
+
@classmethod
|
|
167
|
+
def load(cls, wheel_path):
|
|
168
|
+
# type: (str) -> Wheel
|
|
169
|
+
|
|
170
|
+
wheel = WHEEL.load(wheel_path)
|
|
171
|
+
return cls._from_metadata_files(
|
|
172
|
+
location=wheel_path, metadata_files=wheel.files, wheel=wheel
|
|
173
|
+
)
|
|
174
|
+
|
|
175
|
+
@classmethod
|
|
176
|
+
def from_distribution(cls, distribution):
|
|
177
|
+
# type: (Distribution) -> Wheel
|
|
178
|
+
return cls._from_metadata_files(
|
|
179
|
+
location=distribution.location, metadata_files=distribution.metadata.files
|
|
180
|
+
)
|
|
181
|
+
|
|
125
182
|
location = attr.ib() # type: str
|
|
126
183
|
metadata_dir = attr.ib() # type: str
|
|
127
184
|
metadata_files = attr.ib() # type: MetadataFiles
|
|
128
185
|
metadata = attr.ib() # type: WHEEL
|
|
129
186
|
data_dir = attr.ib() # type: str
|
|
130
187
|
|
|
188
|
+
@property
|
|
189
|
+
def source(self):
|
|
190
|
+
# type: () -> str
|
|
191
|
+
return self._source(self.location, self.metadata_files)
|
|
192
|
+
|
|
131
193
|
@property
|
|
132
194
|
def wheel_file_name(self):
|
|
133
195
|
# type: () -> str
|
|
@@ -159,9 +221,9 @@ class Wheel(object):
|
|
|
159
221
|
return DistMetadata.from_metadata_files(self.metadata_files)
|
|
160
222
|
|
|
161
223
|
def metadata_path(self, *components):
|
|
162
|
-
#
|
|
224
|
+
# type: (*str) -> str
|
|
163
225
|
return os.path.join(self.metadata_dir, *components)
|
|
164
226
|
|
|
165
227
|
def data_path(self, *components):
|
|
166
|
-
#
|
|
228
|
+
# type: (*str) -> str
|
|
167
229
|
return os.path.join(self.data_dir, *components)
|
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: pex
|
|
3
|
-
Version: 2.
|
|
3
|
+
Version: 2.59.0
|
|
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.59.0/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.59.0/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.59.0
|
|
13
13
|
Keywords: package,executable,virtualenv,lock,freeze
|
|
14
14
|
Classifier: Development Status :: 5 - Production/Stable
|
|
15
15
|
Classifier: Intended Audience :: Developers
|
|
@@ -11,11 +11,11 @@ pex/cli_util.py,sha256=F67UHGT5xBGFQBy2D-mxxMBCJ2V_gDtekjWni9u_J84,1192
|
|
|
11
11
|
pex/common.py,sha256=TukYFf-td_Gi0CRzWwiV8KICEDa1LybN03bi8aESBXw,32159
|
|
12
12
|
pex/compatibility.py,sha256=ixbXjBrYniL95m8oUi50ss4IDEXPM70J2AlnpJNlUeI,10110
|
|
13
13
|
pex/compiler.py,sha256=oDQ8env2V2Vo8KCXxQ6U7J9wxXB7y8vLazvDl_oJ8vo,3568
|
|
14
|
-
pex/dependency_configuration.py,sha256=
|
|
14
|
+
pex/dependency_configuration.py,sha256=F-aFtAoODe69lmI8wE2KN1T_RYvEdOUxktg_mjp78Ko,9197
|
|
15
15
|
pex/dependency_manager.py,sha256=DsqhgTGozNVUwStqcZR9WgJgjhZCzPp4wUa7PtbL8-M,4379
|
|
16
|
-
pex/dist_metadata.py,sha256=
|
|
16
|
+
pex/dist_metadata.py,sha256=3eJiuNWgZNjeC9M3XBQhk9s3-KGcliSd37hq5KJzE2s,46216
|
|
17
17
|
pex/enum.py,sha256=kBW7RJLtef3pfltVpp0Uvs5uCpiXql_ncdKDn2In7vM,6174
|
|
18
|
-
pex/environment.py,sha256=
|
|
18
|
+
pex/environment.py,sha256=PrklrmSAZfUGhF0hhNPR5br0anVd4Hu-7TC_FrV_0z0,36107
|
|
19
19
|
pex/exceptions.py,sha256=HpnL0zwlh2PwUl2qkcm9pIeBaD_rXZYHKWyBsW8ogIg,2056
|
|
20
20
|
pex/executables.py,sha256=Y7M67KWPlMjRkvYBXMfhTPKsEf1JT8HEC_FSI4gRKf0,5614
|
|
21
21
|
pex/executor.py,sha256=QDD4tAdqw3XkBoJjQrDqLvsm69UQzhmfGYcz2lyIeKE,4127
|
|
@@ -36,8 +36,8 @@ pex/network_configuration.py,sha256=Nim3wdAwpF4KmUgDcC-LEUPtJVurvm0bX0yTwnN8vVA,
|
|
|
36
36
|
pex/orderedset.py,sha256=jZ06iLmsplRngd4mfCeS-swRYlVqs6NBop5tFxSEwtY,3723
|
|
37
37
|
pex/os.py,sha256=QfEFtrXjLcz_yRW3ng3k1YCC1DzbhwpjByOF8ARYc4g,7576
|
|
38
38
|
pex/pep_376.py,sha256=13xJz-i7lEnPzQ8eOqzK4laOeCRs-GlUOzAGyu5VBpM,18611
|
|
39
|
-
pex/pep_425.py,sha256=
|
|
40
|
-
pex/pep_427.py,sha256=
|
|
39
|
+
pex/pep_425.py,sha256=vuU80pL49jGVqOpACkFipsJqTYneXXAx-o6vBLxkeKE,6698
|
|
40
|
+
pex/pep_427.py,sha256=xU6ZMpb5U6B4SMzpv86URPmh4MrH3OcY88JgHz4-q8M,18902
|
|
41
41
|
pex/pep_440.py,sha256=HLyVaZgO3_FZx1eoZyNYyHGB0w3I3q2oBBe3PZabt4c,3053
|
|
42
42
|
pex/pep_503.py,sha256=iwq32QPIO0SCir8iTl8elAQRyvMqasbX_XLp1ax5_bo,1828
|
|
43
43
|
pex/pep_508.py,sha256=DyDbO-HAM7QSkRaCdUijgDkZYR5AnSRQx8fzfGok3e8,6715
|
|
@@ -54,30 +54,30 @@ pex/pth.py,sha256=YGiWmW99vPvPm5-iU_Kbvbu1NTtJyyTp32ilHyAJ_VQ,3402
|
|
|
54
54
|
pex/pyenv.py,sha256=O5_Ec26J8GQpa5Xt_TtSB0A9rV62vYgciIwBlW4aiZ8,9276
|
|
55
55
|
pex/rank.py,sha256=dNFi6Y7bBe8gwcKSon81EOs9Jw4uhUzoHgRnIDYV8lU,3901
|
|
56
56
|
pex/requirements.py,sha256=NpseoFVrUfTDSd0JAoOnVstbvYC140ecDgiHeb39b3s,29007
|
|
57
|
-
pex/resolver.py,sha256
|
|
57
|
+
pex/resolver.py,sha256=-TXyEUU9qhhES0C2d-i4D8hi4SEisAv-SwkhcPwMhaQ,68778
|
|
58
58
|
pex/result.py,sha256=VTE_n-IffLf-FD4ENNbRvq_ebahh-IDYAna1y5Iw1WI,3090
|
|
59
59
|
pex/sh_boot.py,sha256=IBpqPHnfYlImx8SMMYeeXD7BEmqnlFVAxmArieNMtU0,11217
|
|
60
60
|
pex/sorted_tuple.py,sha256=L_49iVoVZ57J-q44nVRO-boT0bc8ynhJlhS_yUp2xeo,2371
|
|
61
61
|
pex/specifier_sets.py,sha256=iT2h4lSB09Rdk4t64iP5abI39s0TpTDDwFVLDHiPj2Q,11559
|
|
62
62
|
pex/subprocess.py,sha256=yexT74-Ji4X6y8Z2MQopV8q6DfX7KTM8ozaelwwuWmg,1492
|
|
63
63
|
pex/sysconfig.py,sha256=W1kYz8ZVsNUEwIYxKC2lFflxDc0JapWYLQXuUiENUVE,4776
|
|
64
|
-
pex/targets.py,sha256=
|
|
64
|
+
pex/targets.py,sha256=uU1rMrkA6NyuYKMCBxI02SGSJF6JhsZCw6dsV_zyqCI,16795
|
|
65
65
|
pex/toml.py,sha256=pZ8xbRAVofqZJdyGiVt9XGYIY8UYuIYwFfsoFpnIm4w,7467
|
|
66
66
|
pex/tracer.py,sha256=nob_hNooCYWZev7_ABhAVyO4HBZ8Q_OajQUvNnr82Rc,4481
|
|
67
67
|
pex/typing.py,sha256=J1JTB1V48zIWmhWRHEMDHWMaFPMzsEonWJ9s57Ev43Q,3050
|
|
68
68
|
pex/util.py,sha256=TxTxpdDmrDTLVXt9e2XuRq9c3N6jRYNCce87QBFkCVo,5491
|
|
69
69
|
pex/variables.py,sha256=h3-JeMzXfRzEsWqTYsoU-6vt5W4Kr0VvbfSDAYtuZOU,34728
|
|
70
|
-
pex/version.py,sha256=
|
|
71
|
-
pex/wheel.py,sha256=
|
|
70
|
+
pex/version.py,sha256=6OWr8dwdgkJWmWOQN2McbVBKDYg9lbd6N0n627jerMo,131
|
|
71
|
+
pex/wheel.py,sha256=BVs55zm3F-W3wS60-fsliPqEqkgtNmgY6Y4Vi37lG_Y,7547
|
|
72
72
|
pex/ziputils.py,sha256=thUrto9vEdG9mFCIJ59Js3d1y6bSfFdl7pb1lSb7KAQ,9620
|
|
73
73
|
pex/bin/__init__.py,sha256=Kb2dGrZYVtb0cd9ngKHuLShndNU1GSWdeDzN-u_L6Io,107
|
|
74
|
-
pex/bin/pex.py,sha256=
|
|
74
|
+
pex/bin/pex.py,sha256=K8rx3V05GpDej5dHggTBH-3IYjm1XSSZW7ueSqBUTfg,56056
|
|
75
75
|
pex/build_backend/__init__.py,sha256=tmA8i5f0-IGhFekR1VJF9kn3LXbhs3nToTuvh4S3hEQ,188
|
|
76
76
|
pex/build_backend/configuration.py,sha256=s95XQMc2P23GWrS8z8O6pyfUDYNlFlBkuegqTEpJYOA,9353
|
|
77
77
|
pex/build_backend/pylock.py,sha256=xY9OO6pNPneqEQAxDTwHH5XNbU_aoM6MACuPOiT7jo0,8318
|
|
78
78
|
pex/build_backend/wrap.py,sha256=DH1jJWQ9g2FGdLEvLLMny9koYEP0_9O_138SMVTB6YM,5504
|
|
79
79
|
pex/build_system/__init__.py,sha256=JYbpW71Z5Jkft7b5VSMg2VQJUNWzRDXji-2DFyXUvmQ,564
|
|
80
|
-
pex/build_system/pep_517.py,sha256=
|
|
80
|
+
pex/build_system/pep_517.py,sha256=ZGeDso2Pmv2JjB0dMBUcXHlCMhram7QhJneYskXtH4U,10458
|
|
81
81
|
pex/build_system/pep_518.py,sha256=LMgvpHqcifQAHe6jgGBEGgPolMIk7BBcKBunN5u7jr4,8355
|
|
82
82
|
pex/cache/__init__.py,sha256=yOeHhVmwd_TbkV62FglXwYaf6Hn2SpBbS9fGfHBRjx0,107
|
|
83
83
|
pex/cache/access.py,sha256=_2Iq6NC0o-0IIjgljiOq1ajugiMUL7-V9NdrSXkkJWw,3847
|
|
@@ -94,7 +94,7 @@ pex/cli/commands/docs.py,sha256=z4KWsTlVZqOda-RrxfMn34JwLtmSHTBFh-w7AuG45KE,2615
|
|
|
94
94
|
pex/cli/commands/interpreter.py,sha256=grgIqFkWlv5c1Bf38CgdXRJ0IqsvKrn_OxQFIbejsQY,7684
|
|
95
95
|
pex/cli/commands/lock.py,sha256=0FaZnJsrUO0gwPslqYQPgPnIe-rPdwzPT0jdaG-GNCo,101322
|
|
96
96
|
pex/cli/commands/run.py,sha256=gWkuaxPFnGqFi-kr7ROkBG-YvSddWbj0UtKRk9QzcEU,34997
|
|
97
|
-
pex/cli/commands/venv.py,sha256=
|
|
97
|
+
pex/cli/commands/venv.py,sha256=SCmqIjwQhgKZ-4MQFNmRGBHIT0oS23a3Ml4TMjmoxLE,17823
|
|
98
98
|
pex/cli/commands/cache/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
99
99
|
pex/cli/commands/cache/bytes.py,sha256=2bnNpwLYTUvVf2q_g9jqi-0ORbOFs_csYmCTEG3IQhM,3952
|
|
100
100
|
pex/cli/commands/cache/command.py,sha256=92mmobaEfEjPAFhL_s6Opb9YniEopJN-llJ0yDKcc2k,26957
|
|
@@ -110,33 +110,33 @@ pex/distutils/commands/__init__.py,sha256=uASB5OU996Jax-h3kMmeZjG5Jdy9BYDR6A1swk
|
|
|
110
110
|
pex/distutils/commands/bdist_pex.py,sha256=SLwBj0ALpArhKQT94X0niKWfyLaySjOZuZrGXG332K0,5117
|
|
111
111
|
pex/docs/__init__.py,sha256=u9hPOij1fpo1yPBLTQTdSCnSIUuRCSXHomCkEAaCciA,439
|
|
112
112
|
pex/docs/command.py,sha256=uQyD8bO_DBNIlkPd6F7SFZbZUVh1Xn6gT8OmVxP4qxk,3046
|
|
113
|
-
pex/docs/html/buildingpex.html,sha256=
|
|
114
|
-
pex/docs/html/genindex.html,sha256=
|
|
115
|
-
pex/docs/html/index.html,sha256=
|
|
116
|
-
pex/docs/html/recipes.html,sha256=
|
|
117
|
-
pex/docs/html/scie.html,sha256=
|
|
118
|
-
pex/docs/html/search.html,sha256=
|
|
113
|
+
pex/docs/html/buildingpex.html,sha256=tIhC8sa8nm-wQRzGPxuC6rCCk6yo1D7nxfC5Hhv0wYs,57743
|
|
114
|
+
pex/docs/html/genindex.html,sha256=COs-BUk7vQPTAstSKfh8ogDEWJimQGe5PdyrnUi9QxU,17530
|
|
115
|
+
pex/docs/html/index.html,sha256=FTE6Q-d1mfNpXyQBwarExA0jywjY00rF9hxTswHvzDM,25362
|
|
116
|
+
pex/docs/html/recipes.html,sha256=w-Kt1CId9k1XfLwGyqdxtv6Z0jZnrbAkPDz1BLhDxgc,35528
|
|
117
|
+
pex/docs/html/scie.html,sha256=D3MGENcj50muFDqDdE3E0i2eN_EjuOaOGolU8y8_DKg,62518
|
|
118
|
+
pex/docs/html/search.html,sha256=jd2CLclqjVO1MMNWoynN1-DwbykkO0soYdSc8uVTKDA,18501
|
|
119
119
|
pex/docs/html/searchindex.js,sha256=R_L6Oveik_wlK5CmaE7YwRvmu81r6fd7jtnZUjfk1sA,18009
|
|
120
|
-
pex/docs/html/whatispex.html,sha256=
|
|
121
|
-
pex/docs/html/_pagefind/pagefind-entry.json,sha256=
|
|
120
|
+
pex/docs/html/whatispex.html,sha256=UJrToC6fnZrL3xGCxf6HdfLKnkZYn2mp4kQqBDJcs0Q,23090
|
|
121
|
+
pex/docs/html/_pagefind/pagefind-entry.json,sha256=QnZ3yIp4oWPyk_a1xm5W2WMIEaKTEQKNWUyxcHzFRbc,90
|
|
122
122
|
pex/docs/html/_pagefind/pagefind-highlight.js,sha256=5hRyi7gOMY9tlTe-tbmDrVJpoxbnYxhbJeoGwtmCfXA,43944
|
|
123
123
|
pex/docs/html/_pagefind/pagefind-modular-ui.css,sha256=ZTqynk3lYp9t319vzfXSs-tTmowH__ila4ziFWpXB4g,7336
|
|
124
124
|
pex/docs/html/_pagefind/pagefind-modular-ui.js,sha256=-DCEOJ2cInrvjEGZFxCuYy81EMWbKHhMu4wivlJmUzE,14486
|
|
125
125
|
pex/docs/html/_pagefind/pagefind-ui.css,sha256=GL61nVezuyVA4ynNRJejhEwUBxhBtx4rDYVlAgI_W1U,14486
|
|
126
126
|
pex/docs/html/_pagefind/pagefind-ui.js,sha256=WQ3yec_CMkBKswl16Ig5N_zJzeCgL4z9y344TcJeKAQ,78367
|
|
127
|
-
pex/docs/html/_pagefind/pagefind.
|
|
127
|
+
pex/docs/html/_pagefind/pagefind.en_4ade7b3598.pf_meta,sha256=pMLwS-ATEQChBuWYsZXRlzjGSPmHRCMA4y_2QkphTCs,153
|
|
128
128
|
pex/docs/html/_pagefind/pagefind.js,sha256=Q-4jKyPif6awDU9x8IoWXTWoJJR1JZicegUYQ-QI4MA,32912
|
|
129
129
|
pex/docs/html/_pagefind/wasm.en.pagefind,sha256=mG0TKIE7WXynsyg-tpiMZiVG2Hwebbt2UqFqlqdTTsE,70873
|
|
130
130
|
pex/docs/html/_pagefind/wasm.unknown.pagefind,sha256=eAREknqQnc_y96pbl8eYz9zqfUXsqe64B7HwrQE2SkY,67202
|
|
131
|
-
pex/docs/html/_pagefind/fragment/
|
|
132
|
-
pex/docs/html/_pagefind/fragment/
|
|
133
|
-
pex/docs/html/_pagefind/fragment/
|
|
134
|
-
pex/docs/html/_pagefind/fragment/
|
|
135
|
-
pex/docs/html/_pagefind/fragment/
|
|
136
|
-
pex/docs/html/_pagefind/fragment/
|
|
137
|
-
pex/docs/html/_pagefind/fragment/
|
|
138
|
-
pex/docs/html/_pagefind/fragment/
|
|
139
|
-
pex/docs/html/_pagefind/index/
|
|
131
|
+
pex/docs/html/_pagefind/fragment/en_23dc437.pf_fragment,sha256=zu4tk6whuOlXSKQcaKwiPMHHMlu-bWM6w5f10CW7thw,1187
|
|
132
|
+
pex/docs/html/_pagefind/fragment/en_3b86fa5.pf_fragment,sha256=qWwHXwlSh4VN1otB1SK9XE65Hm0tPZtnSyU_IWnQfVU,6845
|
|
133
|
+
pex/docs/html/_pagefind/fragment/en_65c3a5b.pf_fragment,sha256=R-aO4xY9QcLOm7whS8A_TrCwijIFY34aRbjH3bBx2P8,3053
|
|
134
|
+
pex/docs/html/_pagefind/fragment/en_6c2e6ff.pf_fragment,sha256=E22Xs8KWXscOXpWb38aDKk5FeSAl_z8wD_CHJ0J0JAg,1172
|
|
135
|
+
pex/docs/html/_pagefind/fragment/en_7320871.pf_fragment,sha256=GHt4Ou4Z-YenjLCvwQvEZoM0WZtmuNhBLATKluLkxE0,4884
|
|
136
|
+
pex/docs/html/_pagefind/fragment/en_7cfdecb.pf_fragment,sha256=2YBopCA6ayEEpUwDjr1SAMwWUuqSdzagZpblNQJWirA,402
|
|
137
|
+
pex/docs/html/_pagefind/fragment/en_89e2d7c.pf_fragment,sha256=kPhKLDwy_uMrP4ntL2hphot4Y3rHKeLG-ukPkREzRyA,392
|
|
138
|
+
pex/docs/html/_pagefind/fragment/en_d4675e3.pf_fragment,sha256=Vln92qa09oGG40fEHw8A7X7FqN9wtqvQclL4Bny94Tg,3679
|
|
139
|
+
pex/docs/html/_pagefind/index/en_34a4497.pf_index,sha256=g-QyHRi51oEJu8epB0AiCjCCTnsrEcrOdIDyCkoc-3Y,29072
|
|
140
140
|
pex/docs/html/_sources/buildingpex.rst.txt,sha256=87P3ZO871MILL9pmpDM8_M7_YV1z5HjTYa9m8yuxTa4,19138
|
|
141
141
|
pex/docs/html/_sources/index.rst.txt,sha256=vWt1s6dirYeR-9mFJY1SClwWvbWqIqJSFCAF1CdZojc,1468
|
|
142
142
|
pex/docs/html/_sources/recipes.rst.txt,sha256=kerzvp8_t5io6eGl3YJODtNBQy7GmY2AA6RHaij9C-g,6958
|
|
@@ -146,7 +146,7 @@ pex/docs/html/_sources/api/vars.md.txt,sha256=C9gu5czyB-g788xRfYKF8P176ew_q97X6z
|
|
|
146
146
|
pex/docs/html/_static/basic.css,sha256=ZW_xus1vJg_H1xuX-cLx_L9pLchL9GnNlSA078ue7-0,14685
|
|
147
147
|
pex/docs/html/_static/debug.css,sha256=DQXNnnnVMjQwRmfAjwKXHeYZbA_8pZPDkDs2Z7QFWtY,1266
|
|
148
148
|
pex/docs/html/_static/doctools.js,sha256=KZLAnfkYJqjTPjtItkXud-RXrc98cS13aoFOHixEi0M,4322
|
|
149
|
-
pex/docs/html/_static/documentation_options.js,sha256=
|
|
149
|
+
pex/docs/html/_static/documentation_options.js,sha256=TldCEneLdUoDGLxtJnOVRBSoFCc3jULQ4PHR8sz18g8,329
|
|
150
150
|
pex/docs/html/_static/file.png,sha256=XEvJoWrr84xLlQ9ZuOUByjZJUyjLnrYiIYvOkGSjXj4,286
|
|
151
151
|
pex/docs/html/_static/language_data.js,sha256=O8MRVjt_xegPyrL4Ypd0vzy2swICAA3zbf-OaVqQI7c,4598
|
|
152
152
|
pex/docs/html/_static/minus.png,sha256=R-f8UNs2mfHKQc6aL_ogLADF0dUYDFX2K6hZsb1swAg,90
|
|
@@ -166,7 +166,7 @@ pex/docs/html/_static/styles/furo-extensions.css,sha256=PSsCB3EaBzE9-2yLJyKV9fkx
|
|
|
166
166
|
pex/docs/html/_static/styles/furo-extensions.css.map,sha256=CzW267gfKqH8ruMlwJbWg-MsGAipIgZwoaP4gwDGkVw,7762
|
|
167
167
|
pex/docs/html/_static/styles/furo.css,sha256=_VadhXUHMzTBCFYkutwKheVkdQlyNZJYRa8uhVGcpZ4,51074
|
|
168
168
|
pex/docs/html/_static/styles/furo.css.map,sha256=fsUcXMqaSwEFTorfGfQjJ8xnUzkkWIjGkGfAgxKj5lA,76865
|
|
169
|
-
pex/docs/html/api/vars.html,sha256=
|
|
169
|
+
pex/docs/html/api/vars.html,sha256=Qp04uhCnd1zwLa4-KiGhZ_6xTEEafTTKc5lT7JWVjlc,35237
|
|
170
170
|
pex/fs/__init__.py,sha256=ues2bnsufy1lYRyoWsiP-G4kuPrV-tXaZ0x-HFJFpwY,3605
|
|
171
171
|
pex/fs/_posix.py,sha256=p-VkjEfRNXduBmkxcuEXWM1g6y6xrkufSYzEy93tqjA,1275
|
|
172
172
|
pex/fs/_windows.py,sha256=apacgHpxNutF5HkU6cYOLHq7yqaijRMsFBdsdKSviDo,3304
|
|
@@ -175,11 +175,11 @@ pex/http/__init__.py,sha256=Rj5yTDE0EVOH9FkbmGOUxqUfHTXmU6bPg2MkWOGpVIc,107
|
|
|
175
175
|
pex/http/server.py,sha256=7XdrBUF7aZm9CpvmQEsU-lP8jsTEljrZI7FbFqRFXA4,7045
|
|
176
176
|
pex/pip/__init__.py,sha256=hbVu8HKJGOAmXQlIyMjcEt0EsBK311HumeAwENvHHxY,107
|
|
177
177
|
pex/pip/download_observer.py,sha256=bDnVowpA_7_NFeJIBSZXr5byY2kcbyf5M2riieo7LKY,3719
|
|
178
|
-
pex/pip/installation.py,sha256=
|
|
178
|
+
pex/pip/installation.py,sha256=CFykX2FEPygqO0jxMzPG-rvd2Eos8YJ2cviyMsOUayU,21301
|
|
179
179
|
pex/pip/local_project.py,sha256=0HsnUgb0d1XX1TokVogF1xV-pTFNuBLDG-7K2j5VUVI,2040
|
|
180
180
|
pex/pip/log_analyzer.py,sha256=YLecIWrjTBvDZA_OwvQlcR1gf6-rI_eBt_LFZTA2E-U,4362
|
|
181
181
|
pex/pip/tailer.py,sha256=af7yJ1rxvtTltno1BEVgJ6lf1C0PPnCzCs6CWto7Y9s,4445
|
|
182
|
-
pex/pip/tool.py,sha256=
|
|
182
|
+
pex/pip/tool.py,sha256=P0mbUUqkvYFAnMsFGGg4KkQ4gF0JEnR3Z9CTj6gOw60,34835
|
|
183
183
|
pex/pip/vcs.py,sha256=PWrS6pR2vm6rf08HCws4EVwX3kHAOyarMWj_KznoMoM,4041
|
|
184
184
|
pex/pip/version.py,sha256=NADXFCx9g8D_QugtN7a6lTo_6YuBEpdicJvA8t7Mps4,12644
|
|
185
185
|
pex/pip/dependencies/__init__.py,sha256=Hwrin59pqb2QPU4ysCPUhqzfsE1PHx56a-ED39eEV0Q,5126
|
|
@@ -196,8 +196,8 @@ pex/repl/pex_repl.py,sha256=2jKrhzhZnGedHnbaZEyekt0jGKictqP4UmOipgM2Bu0,10020
|
|
|
196
196
|
pex/resolve/__init__.py,sha256=uASB5OU996Jax-h3kMmeZjG5Jdy9BYDR6A1swkBoFDg,107
|
|
197
197
|
pex/resolve/abbreviated_platforms.py,sha256=2CY6_AUIROeEBEsFn228MxY_IonQYknXotfSTypoRpM,7168
|
|
198
198
|
pex/resolve/config.py,sha256=2urR5rvh6pY8tZzUfRdUVGYrAY1iXURp_N4lrnXIdJA,3362
|
|
199
|
-
pex/resolve/configured_resolve.py,sha256=
|
|
200
|
-
pex/resolve/configured_resolver.py,sha256=
|
|
199
|
+
pex/resolve/configured_resolve.py,sha256=jd-lVJjXXtNlEbTlfaRpprETcDAywrpmm2Hpu0-T9ns,9617
|
|
200
|
+
pex/resolve/configured_resolver.py,sha256=MRzp1hVHl7ooKHEhESN7oxMd5fOpxuXOGYiUXZe0Yww,3457
|
|
201
201
|
pex/resolve/downloads.py,sha256=8R4GI-PSSLw2qv6XKsGyDFEiugfJgw2G6F4lywtU_Xk,7074
|
|
202
202
|
pex/resolve/lock_downloader.py,sha256=PisFgzZsMaGjRrE6M-BLvDeoZqDnhvCdf2qJNe2-PW8,15395
|
|
203
203
|
pex/resolve/lock_resolver.py,sha256=b6UoqaXPNdWEt1JC8S6HSc4el5ows6kmIa5T87OsAm0,23398
|
|
@@ -206,19 +206,20 @@ pex/resolve/locker.py,sha256=NnSs60GxCVFyuxc5w-st4tzkC2xhYmJcxNUeRGp_UDQ,27049
|
|
|
206
206
|
pex/resolve/locker_patches.py,sha256=t_30hjSYG570UJHgpf7i1L5ssvi1LZ2YbM4iHd44V6s,11294
|
|
207
207
|
pex/resolve/package_repository.py,sha256=xMU9aTxojS2sNmWp03jfMBTIGhq3eqNuNOacl8BiiGY,15123
|
|
208
208
|
pex/resolve/path_mappings.py,sha256=d6JVzD0K342ELz3O8AcsaXoikLDF3xYrgbXkixMmf3Q,2073
|
|
209
|
-
pex/resolve/pex_repository_resolver.py,sha256=
|
|
209
|
+
pex/resolve/pex_repository_resolver.py,sha256=nr-qtnT-vGTan20vygbW8VH_uTv7jK9HdF4c4yrbBMY,5528
|
|
210
210
|
pex/resolve/pre_resolved_resolver.py,sha256=SVafV5U4TSkolV2mqfte6QX6VnBgTTlQ9ZMoY83KOTk,9943
|
|
211
211
|
pex/resolve/project.py,sha256=BYy1m8-jUsiaBR1DF3eJiqpqvdqrzB-cQDPvcMD2v-0,14923
|
|
212
212
|
pex/resolve/requirement_configuration.py,sha256=kK_si5GsaZUlaQMrwq6SWauk-0nWnwEbeeJB4V1qzfI,2891
|
|
213
213
|
pex/resolve/requirement_options.py,sha256=4E5e_81ANZMg3-a1zYnJ--rixyqaEJ49197GjB3AYbA,2288
|
|
214
214
|
pex/resolve/resolved_requirement.py,sha256=78dn81rEqnbkbhR9C6rAh_rTfQTLq-zUaZZVh9Z7ZAQ,2480
|
|
215
|
-
pex/resolve/resolver_configuration.py,sha256=
|
|
216
|
-
pex/resolve/resolver_options.py,sha256=
|
|
217
|
-
pex/resolve/resolvers.py,sha256=
|
|
215
|
+
pex/resolve/resolver_configuration.py,sha256=H1yx6LoO1bZO5wAAVrC5kSNvwSK-el9brmIiPZSIMDY,9780
|
|
216
|
+
pex/resolve/resolver_options.py,sha256=AYOcrnOdmJ2oxbUYfJbReFJTOanEKZW5Fk2qHf4d2Hg,43832
|
|
217
|
+
pex/resolve/resolvers.py,sha256=0YFFukBDDTe0laT7at7wRMMbynaPzZhaZl55NgI1hS4,10156
|
|
218
218
|
pex/resolve/script_metadata.py,sha256=6PdrBvUmKQGdTIPHfE-F07460drqjQB_HuBgz_35ql0,6903
|
|
219
219
|
pex/resolve/target_configuration.py,sha256=FFrVHKgceCMlse2xOgxTtdnQ7ENw3A59t4IId0F1GDw,10349
|
|
220
|
-
pex/resolve/target_options.py,sha256=
|
|
220
|
+
pex/resolve/target_options.py,sha256=6YoXvIWSyTKfkJ3fcEhqu7eDzF-TlUKhSoNlGoLApQI,12550
|
|
221
221
|
pex/resolve/target_system.py,sha256=iar6NKzFoQNu05r6EQ8Jgw1XaMYRQAIcTbL69nb5o3c,17180
|
|
222
|
+
pex/resolve/venv_resolver.py,sha256=TrxbnC85S-gTm3xGgH-H3RX9Xjz6B87WMTJPEWa_8qg,18294
|
|
222
223
|
pex/resolve/lockfile/__init__.py,sha256=uASB5OU996Jax-h3kMmeZjG5Jdy9BYDR6A1swkBoFDg,107
|
|
223
224
|
pex/resolve/lockfile/create.py,sha256=MnMb4e1opHvim_-gdXqb6xiNJAfXCVi7M0HnfMNExJg,27979
|
|
224
225
|
pex/resolve/lockfile/download_manager.py,sha256=7mI_vUIIn4VxG3RDNxyT5yTpFLG9LH_IlGDKRMB_OJ0,9176
|
|
@@ -252,7 +253,7 @@ pex/tools/commands/repository.py,sha256=kyUX-ygK2KgbLgQi9t19mnq-7XMCA21M4pTI-7tU
|
|
|
252
253
|
pex/tools/commands/venv.py,sha256=MriujQyIYFjZBnH6uZ9_OKCvxn6rsi4lti1zn7iMctE,5908
|
|
253
254
|
pex/vendor/README.md,sha256=ALpofIYGpo6-TheVfYJpm3M9t6iKygQ0WETWxKojcuo,2370
|
|
254
255
|
pex/vendor/__init__.py,sha256=nS5Ui5VPBHCL6TlWYtP-P_xIHZZnKMi8wxmiYB8I844,18058
|
|
255
|
-
pex/vendor/__main__.py,sha256=
|
|
256
|
+
pex/vendor/__main__.py,sha256=DfNj51SnodS2bOhG8bEPDlhNVc_PH724fpieyuBnoR8,22524
|
|
256
257
|
pex/vendor/_vendored/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
257
258
|
pex/vendor/_vendored/ansicolors/.layout.json,sha256=4UpbHC81cBmfEikOdC9Ypmim01_aIanC0_EbaOIaaIY,187
|
|
258
259
|
pex/vendor/_vendored/ansicolors/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -968,10 +969,10 @@ pex/windows/stubs/uv-trampoline-aarch64-console.exe,sha256=1S2aM-6CV7rKz-3ncM5X7
|
|
|
968
969
|
pex/windows/stubs/uv-trampoline-aarch64-gui.exe,sha256=mb8x1FpyH-wy11X5YgWfqh_VUwBb62M4Zf9aFr5V4EE,40448
|
|
969
970
|
pex/windows/stubs/uv-trampoline-x86_64-console.exe,sha256=nLopBrlCMMFjkKVRlY7Ke2zFGpQOyF5mSlLs0d7-HRQ,40960
|
|
970
971
|
pex/windows/stubs/uv-trampoline-x86_64-gui.exe,sha256=icnp1oXrOZpc-dHTGvDbTHjr-D8M0eamvRrC9bPI_KI,41984
|
|
971
|
-
pex-2.
|
|
972
|
-
pex-2.
|
|
973
|
-
pex-2.
|
|
974
|
-
pex-2.
|
|
975
|
-
pex-2.
|
|
976
|
-
pex-2.
|
|
977
|
-
pex-2.
|
|
972
|
+
pex-2.59.0.dist-info/METADATA,sha256=W-_KRMAgEzBeojrQT8QZEB2fb4K4XWtLxADhThnNHkI,7425
|
|
973
|
+
pex-2.59.0.dist-info/WHEEL,sha256=JNWh1Fm1UdwIQV075glCn4MVuCRs0sotJIq-J6rbxCU,109
|
|
974
|
+
pex-2.59.0.dist-info/entry_points.txt,sha256=LD9tcxNxdsVLeIF6zR7dyH1vgo2eD9a-05TC1UraGMQ,174
|
|
975
|
+
pex-2.59.0.dist-info/top_level.txt,sha256=HlafJUPu7mfjxv3SDH-RbkxsHOWSVbPXTEBC1hzonpM,4
|
|
976
|
+
pex-2.59.0.dist-info/licenses/LICENSE,sha256=bcDgaNzzpbyOBUIFuFt3IOHUkmW7xkv1FdLPeRl99po,11323
|
|
977
|
+
pex-2.59.0.dist-info/pylock/pylock.toml,sha256=ar9a6_myHcpeU4Ttsts2XQ15x6vs5aqDzjlRUATZHoI,7151
|
|
978
|
+
pex-2.59.0.dist-info/RECORD,,
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|