pex 2.61.0__py2.py3-none-any.whl → 2.61.1__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/cache/dirs.py +3 -8
- pex/cli/commands/pip/wheel.py +1 -1
- pex/docs/html/_pagefind/fragment/en_245699a.pf_fragment +0 -0
- pex/docs/html/_pagefind/fragment/{en_d7a44fe.pf_fragment → en_4695b51.pf_fragment} +0 -0
- pex/docs/html/_pagefind/fragment/en_57f2ab1.pf_fragment +0 -0
- pex/docs/html/_pagefind/fragment/en_aefc110.pf_fragment +0 -0
- pex/docs/html/_pagefind/fragment/en_b7fad62.pf_fragment +0 -0
- pex/docs/html/_pagefind/fragment/{en_7f63cbe.pf_fragment → en_bf32fcd.pf_fragment} +0 -0
- pex/docs/html/_pagefind/fragment/{en_9ce19f0.pf_fragment → en_c9714ee.pf_fragment} +0 -0
- pex/docs/html/_pagefind/fragment/en_e6c0aae.pf_fragment +0 -0
- pex/docs/html/_pagefind/index/{en_3ad4a26.pf_index → en_7e57d09.pf_index} +0 -0
- pex/docs/html/_pagefind/pagefind-entry.json +1 -1
- pex/docs/html/_pagefind/pagefind.en_c578c4b677.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/resolve/lockfile/create.py +17 -2
- pex/resolve/pre_resolved_resolver.py +21 -12
- pex/resolver.py +89 -29
- pex/version.py +1 -1
- {pex-2.61.0.dist-info → pex-2.61.1.dist-info}/METADATA +4 -4
- {pex-2.61.0.dist-info → pex-2.61.1.dist-info}/RECORD +33 -33
- pex/docs/html/_pagefind/fragment/en_5c93d32.pf_fragment +0 -0
- pex/docs/html/_pagefind/fragment/en_6262b88.pf_fragment +0 -0
- pex/docs/html/_pagefind/fragment/en_cd3f4ce.pf_fragment +0 -0
- pex/docs/html/_pagefind/fragment/en_d1987a6.pf_fragment +0 -0
- pex/docs/html/_pagefind/fragment/en_f6e4117.pf_fragment +0 -0
- pex/docs/html/_pagefind/pagefind.en_50edc69c3c.pf_meta +0 -0
- {pex-2.61.0.dist-info → pex-2.61.1.dist-info}/WHEEL +0 -0
- {pex-2.61.0.dist-info → pex-2.61.1.dist-info}/entry_points.txt +0 -0
- {pex-2.61.0.dist-info → pex-2.61.1.dist-info}/licenses/LICENSE +0 -0
- {pex-2.61.0.dist-info → pex-2.61.1.dist-info}/pylock/pylock.toml +0 -0
- {pex-2.61.0.dist-info → pex-2.61.1.dist-info}/top_level.txt +0 -0
pex/cache/dirs.py
CHANGED
|
@@ -729,7 +729,7 @@ class BuiltWheelDir(AtomicCacheDir):
|
|
|
729
729
|
|
|
730
730
|
from pex.dist_metadata import ProjectNameAndVersion, UnrecognizedDistributionFormat
|
|
731
731
|
|
|
732
|
-
for path in glob.glob(CacheDir.BUILT_WHEELS.path("sdists", "*", "*")):
|
|
732
|
+
for path in glob.glob(CacheDir.BUILT_WHEELS.path("sdists", "*", "*", pex_root=pex_root)):
|
|
733
733
|
sdist, fingerprint = os.path.split(path)
|
|
734
734
|
try:
|
|
735
735
|
pnav = ProjectNameAndVersion.from_filename(sdist)
|
|
@@ -745,7 +745,7 @@ class BuiltWheelDir(AtomicCacheDir):
|
|
|
745
745
|
yield BuiltWheelDir(path=dist_dir, dist_dir=dist_dir, file_name=file_name)
|
|
746
746
|
|
|
747
747
|
for built_wheel in glob.glob(
|
|
748
|
-
CacheDir.BUILT_WHEELS.path("local_projects", "*", "*", "*", "*")
|
|
748
|
+
CacheDir.BUILT_WHEELS.path("local_projects", "*", "*", "*", "*", pex_root=pex_root)
|
|
749
749
|
):
|
|
750
750
|
file_name = os.path.basename(built_wheel)
|
|
751
751
|
dist_dir = os.path.dirname(built_wheel)
|
|
@@ -755,26 +755,21 @@ class BuiltWheelDir(AtomicCacheDir):
|
|
|
755
755
|
def create(
|
|
756
756
|
cls,
|
|
757
757
|
sdist, # type: str
|
|
758
|
-
fingerprint
|
|
758
|
+
fingerprint, # type: str
|
|
759
759
|
pnav=None, # type: Optional[ProjectNameAndVersion]
|
|
760
760
|
target=None, # type: Optional[Target]
|
|
761
761
|
pex_root=ENV, # type: Union[str, Variables]
|
|
762
762
|
):
|
|
763
763
|
# type: (...) -> BuiltWheelDir
|
|
764
764
|
|
|
765
|
-
import hashlib
|
|
766
|
-
|
|
767
765
|
from pex import targets
|
|
768
766
|
from pex.dist_metadata import is_sdist
|
|
769
|
-
from pex.util import CacheHelper
|
|
770
767
|
|
|
771
768
|
if is_sdist(sdist):
|
|
772
769
|
dist_type = "sdists"
|
|
773
|
-
fingerprint = fingerprint or CacheHelper.hash(sdist, hasher=hashlib.sha256)
|
|
774
770
|
file_name = os.path.basename(sdist)
|
|
775
771
|
else:
|
|
776
772
|
dist_type = "local_projects"
|
|
777
|
-
fingerprint = fingerprint or CacheHelper.dir_hash(sdist, hasher=hashlib.sha256)
|
|
778
773
|
file_name = None
|
|
779
774
|
|
|
780
775
|
# For the purposes of building a wheel from source, the product should be uniqued by the
|
pex/cli/commands/pip/wheel.py
CHANGED
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":"1.3.0","languages":{"en":{"hash":"
|
|
1
|
+
{"version":"1.3.0","languages":{"en":{"hash":"en_c578c4b677","wasm":"en","page_count":8}}}
|
|
Binary file
|
pex/docs/html/api/vars.html
CHANGED
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
<link rel="prefetch" href="../_static/pex-logo-dark.png" as="image">
|
|
9
9
|
|
|
10
10
|
<link rel="shortcut icon" href="../_static/pex-icon.png"><!-- Generated with Sphinx 8.2.3 and Furo 2025.09.25 -->
|
|
11
|
-
<title>PEX runtime environment variables - Pex Docs (v2.61.
|
|
11
|
+
<title>PEX runtime environment variables - Pex Docs (v2.61.1)</title>
|
|
12
12
|
<link rel="stylesheet" type="text/css" href="../_static/pygments.css?v=d111a655" />
|
|
13
13
|
<link rel="stylesheet" type="text/css" href="../_static/styles/furo.css?v=580074bf" />
|
|
14
14
|
<link rel="stylesheet" type="text/css" href="../_static/styles/furo-extensions.css?v=8dab3a3b" />
|
|
@@ -163,7 +163,7 @@
|
|
|
163
163
|
</label>
|
|
164
164
|
</div>
|
|
165
165
|
<div class="header-center">
|
|
166
|
-
<a href="../index.html"><div class="brand">Pex Docs (v2.61.
|
|
166
|
+
<a href="../index.html"><div class="brand">Pex Docs (v2.61.1)</div></a>
|
|
167
167
|
</div>
|
|
168
168
|
<div class="header-right">
|
|
169
169
|
<div class="theme-toggle-container theme-toggle-header">
|
|
@@ -643,12 +643,12 @@
|
|
|
643
643
|
</div>
|
|
644
644
|
<div class="right-details">
|
|
645
645
|
<div class="icons">
|
|
646
|
-
<a class="muted-link " href="https://pypi.org/project/pex/2.61.
|
|
646
|
+
<a class="muted-link " href="https://pypi.org/project/pex/2.61.1/" aria-label="PyPI"><svg stroke="currentColor" fill="currentColor" stroke-width="0" viewBox="0 0 448 512" height="1em" width="1em" xmlns="http://www.w3.org/2000/svg">
|
|
647
647
|
<path d="M439.8 200.5c-7.7-30.9-22.3-54.2-53.4-54.2h-40.1v47.4c0 36.8-31.2 67.8-66.8 67.8H172.7c-29.2 0-53.4 25-53.4 54.3v101.8c0 29 25.2 46 53.4 54.3 33.8 9.9 66.3 11.7 106.8 0 26.9-7.8 53.4-23.5 53.4-54.3v-40.7H226.2v-13.6h160.2c31.1 0 42.6-21.7 53.4-54.2 11.2-33.5 10.7-65.7 0-108.6zM286.2 404c11.1 0 20.1 9.1 20.1 20.3 0 11.3-9 20.4-20.1 20.4-11 0-20.1-9.2-20.1-20.4.1-11.3 9.1-20.3 20.1-20.3zM167.8 248.1h106.8c29.7 0 53.4-24.5 53.4-54.3V91.9c0-29-24.4-50.7-53.4-55.6-35.8-5.9-74.7-5.6-106.8.1-45.2 8-53.4 24.7-53.4 55.6v40.7h106.9v13.6h-147c-31.1 0-58.3 18.7-66.8 54.2-9.8 40.7-10.2 66.1 0 108.6 7.6 31.6 25.7 54.2 56.8 54.2H101v-48.8c0-35.3 30.5-66.4 66.8-66.4zm-6.7-142.6c-11.1 0-20.1-9.1-20.1-20.3.1-11.3 9-20.4 20.1-20.4 11 0 20.1 9.2 20.1 20.4s-9 20.3-20.1 20.3z">
|
|
648
648
|
</path>
|
|
649
649
|
</svg>
|
|
650
650
|
</a>
|
|
651
|
-
<a class="muted-link " href="https://github.com/pex-tool/pex/releases/download/v2.61.
|
|
651
|
+
<a class="muted-link " href="https://github.com/pex-tool/pex/releases/download/v2.61.1/pex" aria-label="Download"><svg stroke="currentColor" fill="currentColor" stroke-width="0" viewBox="0 0 640 512" height="1em" width="1em" xmlns="http://www.w3.org/2000/svg">
|
|
652
652
|
<path d="M537.6 226.6c4.1-10.7 6.4-22.4 6.4-34.6 0-53-43-96-96-96-19.7 0-38.1 6-53.3 16.2C367 64.2 315.3 32 256 32c-88.4 0-160 71.6-160 160 0 2.7.1 5.4.2 8.1C40.2 219.8 0 273.2 0 336c0 79.5 64.5 144 144 144h368c70.7 0 128-57.3 128-128 0-61.9-44-113.6-102.4-125.4zm-132.9 88.7L299.3 420.7c-6.2 6.2-16.4 6.2-22.6 0L171.3 315.3c-10.1-10.1-2.9-27.3 11.3-27.3H248V176c0-8.8 7.2-16 16-16h48c8.8 0 16 7.2 16 16v112h65.4c14.2 0 21.4 17.2 11.3 27.3z">
|
|
653
653
|
</path>
|
|
654
654
|
</svg>
|
|
@@ -671,7 +671,7 @@
|
|
|
671
671
|
|
|
672
672
|
</aside>
|
|
673
673
|
</div>
|
|
674
|
-
</div><script src="../_static/documentation_options.js?v=
|
|
674
|
+
</div><script src="../_static/documentation_options.js?v=ce6d7030"></script>
|
|
675
675
|
<script src="../_static/doctools.js?v=9bcbadda"></script>
|
|
676
676
|
<script src="../_static/sphinx_highlight.js?v=dc90522c"></script>
|
|
677
677
|
<script src="../_static/scripts/furo.js?v=46bd48cc"></script>
|
pex/docs/html/buildingpex.html
CHANGED
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
<link rel="prefetch" href="_static/pex-logo-dark.png" as="image">
|
|
9
9
|
|
|
10
10
|
<link rel="shortcut icon" href="_static/pex-icon.png"><!-- Generated with Sphinx 8.2.3 and Furo 2025.09.25 -->
|
|
11
|
-
<title>Building .pex files - Pex Docs (v2.61.
|
|
11
|
+
<title>Building .pex files - Pex Docs (v2.61.1)</title>
|
|
12
12
|
<link rel="stylesheet" type="text/css" href="_static/pygments.css?v=d111a655" />
|
|
13
13
|
<link rel="stylesheet" type="text/css" href="_static/styles/furo.css?v=580074bf" />
|
|
14
14
|
<link rel="stylesheet" type="text/css" href="_static/styles/furo-extensions.css?v=8dab3a3b" />
|
|
@@ -163,7 +163,7 @@
|
|
|
163
163
|
</label>
|
|
164
164
|
</div>
|
|
165
165
|
<div class="header-center">
|
|
166
|
-
<a href="index.html"><div class="brand">Pex Docs (v2.61.
|
|
166
|
+
<a href="index.html"><div class="brand">Pex Docs (v2.61.1)</div></a>
|
|
167
167
|
</div>
|
|
168
168
|
<div class="header-right">
|
|
169
169
|
<div class="theme-toggle-container theme-toggle-header">
|
|
@@ -681,12 +681,12 @@ scary like <code class="docutils literal notranslate"><span class="pre">sudo</sp
|
|
|
681
681
|
</div>
|
|
682
682
|
<div class="right-details">
|
|
683
683
|
<div class="icons">
|
|
684
|
-
<a class="muted-link " href="https://pypi.org/project/pex/2.61.
|
|
684
|
+
<a class="muted-link " href="https://pypi.org/project/pex/2.61.1/" aria-label="PyPI"><svg stroke="currentColor" fill="currentColor" stroke-width="0" viewBox="0 0 448 512" height="1em" width="1em" xmlns="http://www.w3.org/2000/svg">
|
|
685
685
|
<path d="M439.8 200.5c-7.7-30.9-22.3-54.2-53.4-54.2h-40.1v47.4c0 36.8-31.2 67.8-66.8 67.8H172.7c-29.2 0-53.4 25-53.4 54.3v101.8c0 29 25.2 46 53.4 54.3 33.8 9.9 66.3 11.7 106.8 0 26.9-7.8 53.4-23.5 53.4-54.3v-40.7H226.2v-13.6h160.2c31.1 0 42.6-21.7 53.4-54.2 11.2-33.5 10.7-65.7 0-108.6zM286.2 404c11.1 0 20.1 9.1 20.1 20.3 0 11.3-9 20.4-20.1 20.4-11 0-20.1-9.2-20.1-20.4.1-11.3 9.1-20.3 20.1-20.3zM167.8 248.1h106.8c29.7 0 53.4-24.5 53.4-54.3V91.9c0-29-24.4-50.7-53.4-55.6-35.8-5.9-74.7-5.6-106.8.1-45.2 8-53.4 24.7-53.4 55.6v40.7h106.9v13.6h-147c-31.1 0-58.3 18.7-66.8 54.2-9.8 40.7-10.2 66.1 0 108.6 7.6 31.6 25.7 54.2 56.8 54.2H101v-48.8c0-35.3 30.5-66.4 66.8-66.4zm-6.7-142.6c-11.1 0-20.1-9.1-20.1-20.3.1-11.3 9-20.4 20.1-20.4 11 0 20.1 9.2 20.1 20.4s-9 20.3-20.1 20.3z">
|
|
686
686
|
</path>
|
|
687
687
|
</svg>
|
|
688
688
|
</a>
|
|
689
|
-
<a class="muted-link " href="https://github.com/pex-tool/pex/releases/download/v2.61.
|
|
689
|
+
<a class="muted-link " href="https://github.com/pex-tool/pex/releases/download/v2.61.1/pex" aria-label="Download"><svg stroke="currentColor" fill="currentColor" stroke-width="0" viewBox="0 0 640 512" height="1em" width="1em" xmlns="http://www.w3.org/2000/svg">
|
|
690
690
|
<path d="M537.6 226.6c4.1-10.7 6.4-22.4 6.4-34.6 0-53-43-96-96-96-19.7 0-38.1 6-53.3 16.2C367 64.2 315.3 32 256 32c-88.4 0-160 71.6-160 160 0 2.7.1 5.4.2 8.1C40.2 219.8 0 273.2 0 336c0 79.5 64.5 144 144 144h368c70.7 0 128-57.3 128-128 0-61.9-44-113.6-102.4-125.4zm-132.9 88.7L299.3 420.7c-6.2 6.2-16.4 6.2-22.6 0L171.3 315.3c-10.1-10.1-2.9-27.3 11.3-27.3H248V176c0-8.8 7.2-16 16-16h48c8.8 0 16 7.2 16 16v112h65.4c14.2 0 21.4 17.2 11.3 27.3z">
|
|
691
691
|
</path>
|
|
692
692
|
</svg>
|
|
@@ -709,7 +709,7 @@ scary like <code class="docutils literal notranslate"><span class="pre">sudo</sp
|
|
|
709
709
|
|
|
710
710
|
</aside>
|
|
711
711
|
</div>
|
|
712
|
-
</div><script src="_static/documentation_options.js?v=
|
|
712
|
+
</div><script src="_static/documentation_options.js?v=ce6d7030"></script>
|
|
713
713
|
<script src="_static/doctools.js?v=9bcbadda"></script>
|
|
714
714
|
<script src="_static/sphinx_highlight.js?v=dc90522c"></script>
|
|
715
715
|
<script src="_static/scripts/furo.js?v=46bd48cc"></script>
|
pex/docs/html/genindex.html
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
<link rel="prefetch" href="_static/pex-logo-light.png" as="image">
|
|
7
7
|
<link rel="prefetch" href="_static/pex-logo-dark.png" as="image">
|
|
8
8
|
|
|
9
|
-
<link rel="shortcut icon" href="_static/pex-icon.png"><!-- Generated with Sphinx 8.2.3 and Furo 2025.09.25 --><title>Index - Pex Docs (v2.61.
|
|
9
|
+
<link rel="shortcut icon" href="_static/pex-icon.png"><!-- Generated with Sphinx 8.2.3 and Furo 2025.09.25 --><title>Index - Pex Docs (v2.61.1)</title>
|
|
10
10
|
<link rel="stylesheet" type="text/css" href="_static/pygments.css?v=d111a655" />
|
|
11
11
|
<link rel="stylesheet" type="text/css" href="_static/styles/furo.css?v=580074bf" />
|
|
12
12
|
<link rel="stylesheet" type="text/css" href="_static/styles/furo-extensions.css?v=8dab3a3b" />
|
|
@@ -161,7 +161,7 @@
|
|
|
161
161
|
</label>
|
|
162
162
|
</div>
|
|
163
163
|
<div class="header-center">
|
|
164
|
-
<a href="index.html"><div class="brand">Pex Docs (v2.61.
|
|
164
|
+
<a href="index.html"><div class="brand">Pex Docs (v2.61.1)</div></a>
|
|
165
165
|
</div>
|
|
166
166
|
<div class="header-right">
|
|
167
167
|
<div class="theme-toggle-container theme-toggle-header">
|
|
@@ -260,12 +260,12 @@
|
|
|
260
260
|
</div>
|
|
261
261
|
<div class="right-details">
|
|
262
262
|
<div class="icons">
|
|
263
|
-
<a class="muted-link " href="https://pypi.org/project/pex/2.61.
|
|
263
|
+
<a class="muted-link " href="https://pypi.org/project/pex/2.61.1/" aria-label="PyPI"><svg stroke="currentColor" fill="currentColor" stroke-width="0" viewBox="0 0 448 512" height="1em" width="1em" xmlns="http://www.w3.org/2000/svg">
|
|
264
264
|
<path d="M439.8 200.5c-7.7-30.9-22.3-54.2-53.4-54.2h-40.1v47.4c0 36.8-31.2 67.8-66.8 67.8H172.7c-29.2 0-53.4 25-53.4 54.3v101.8c0 29 25.2 46 53.4 54.3 33.8 9.9 66.3 11.7 106.8 0 26.9-7.8 53.4-23.5 53.4-54.3v-40.7H226.2v-13.6h160.2c31.1 0 42.6-21.7 53.4-54.2 11.2-33.5 10.7-65.7 0-108.6zM286.2 404c11.1 0 20.1 9.1 20.1 20.3 0 11.3-9 20.4-20.1 20.4-11 0-20.1-9.2-20.1-20.4.1-11.3 9.1-20.3 20.1-20.3zM167.8 248.1h106.8c29.7 0 53.4-24.5 53.4-54.3V91.9c0-29-24.4-50.7-53.4-55.6-35.8-5.9-74.7-5.6-106.8.1-45.2 8-53.4 24.7-53.4 55.6v40.7h106.9v13.6h-147c-31.1 0-58.3 18.7-66.8 54.2-9.8 40.7-10.2 66.1 0 108.6 7.6 31.6 25.7 54.2 56.8 54.2H101v-48.8c0-35.3 30.5-66.4 66.8-66.4zm-6.7-142.6c-11.1 0-20.1-9.1-20.1-20.3.1-11.3 9-20.4 20.1-20.4 11 0 20.1 9.2 20.1 20.4s-9 20.3-20.1 20.3z">
|
|
265
265
|
</path>
|
|
266
266
|
</svg>
|
|
267
267
|
</a>
|
|
268
|
-
<a class="muted-link " href="https://github.com/pex-tool/pex/releases/download/v2.61.
|
|
268
|
+
<a class="muted-link " href="https://github.com/pex-tool/pex/releases/download/v2.61.1/pex" aria-label="Download"><svg stroke="currentColor" fill="currentColor" stroke-width="0" viewBox="0 0 640 512" height="1em" width="1em" xmlns="http://www.w3.org/2000/svg">
|
|
269
269
|
<path d="M537.6 226.6c4.1-10.7 6.4-22.4 6.4-34.6 0-53-43-96-96-96-19.7 0-38.1 6-53.3 16.2C367 64.2 315.3 32 256 32c-88.4 0-160 71.6-160 160 0 2.7.1 5.4.2 8.1C40.2 219.8 0 273.2 0 336c0 79.5 64.5 144 144 144h368c70.7 0 128-57.3 128-128 0-61.9-44-113.6-102.4-125.4zm-132.9 88.7L299.3 420.7c-6.2 6.2-16.4 6.2-22.6 0L171.3 315.3c-10.1-10.1-2.9-27.3 11.3-27.3H248V176c0-8.8 7.2-16 16-16h48c8.8 0 16 7.2 16 16v112h65.4c14.2 0 21.4 17.2 11.3 27.3z">
|
|
270
270
|
</path>
|
|
271
271
|
</svg>
|
|
@@ -288,7 +288,7 @@
|
|
|
288
288
|
|
|
289
289
|
</aside>
|
|
290
290
|
</div>
|
|
291
|
-
</div><script src="_static/documentation_options.js?v=
|
|
291
|
+
</div><script src="_static/documentation_options.js?v=ce6d7030"></script>
|
|
292
292
|
<script src="_static/doctools.js?v=9bcbadda"></script>
|
|
293
293
|
<script src="_static/sphinx_highlight.js?v=dc90522c"></script>
|
|
294
294
|
<script src="_static/scripts/furo.js?v=46bd48cc"></script>
|
pex/docs/html/index.html
CHANGED
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
<link rel="prefetch" href="_static/pex-logo-dark.png" as="image">
|
|
9
9
|
|
|
10
10
|
<link rel="shortcut icon" href="_static/pex-icon.png"><!-- Generated with Sphinx 8.2.3 and Furo 2025.09.25 -->
|
|
11
|
-
<title>Pex Docs (v2.61.
|
|
11
|
+
<title>Pex Docs (v2.61.1)</title>
|
|
12
12
|
<link rel="stylesheet" type="text/css" href="_static/pygments.css?v=d111a655" />
|
|
13
13
|
<link rel="stylesheet" type="text/css" href="_static/styles/furo.css?v=580074bf" />
|
|
14
14
|
<link rel="stylesheet" type="text/css" href="_static/styles/furo-extensions.css?v=8dab3a3b" />
|
|
@@ -163,7 +163,7 @@
|
|
|
163
163
|
</label>
|
|
164
164
|
</div>
|
|
165
165
|
<div class="header-center">
|
|
166
|
-
<a href="#"><div class="brand">Pex Docs (v2.61.
|
|
166
|
+
<a href="#"><div class="brand">Pex Docs (v2.61.1)</div></a>
|
|
167
167
|
</div>
|
|
168
168
|
<div class="header-right">
|
|
169
169
|
<div class="theme-toggle-container theme-toggle-header">
|
|
@@ -341,12 +341,12 @@ To go straight to building pex files, see <a class="reference internal" href="bu
|
|
|
341
341
|
</div>
|
|
342
342
|
<div class="right-details">
|
|
343
343
|
<div class="icons">
|
|
344
|
-
<a class="muted-link " href="https://pypi.org/project/pex/2.61.
|
|
344
|
+
<a class="muted-link " href="https://pypi.org/project/pex/2.61.1/" aria-label="PyPI"><svg stroke="currentColor" fill="currentColor" stroke-width="0" viewBox="0 0 448 512" height="1em" width="1em" xmlns="http://www.w3.org/2000/svg">
|
|
345
345
|
<path d="M439.8 200.5c-7.7-30.9-22.3-54.2-53.4-54.2h-40.1v47.4c0 36.8-31.2 67.8-66.8 67.8H172.7c-29.2 0-53.4 25-53.4 54.3v101.8c0 29 25.2 46 53.4 54.3 33.8 9.9 66.3 11.7 106.8 0 26.9-7.8 53.4-23.5 53.4-54.3v-40.7H226.2v-13.6h160.2c31.1 0 42.6-21.7 53.4-54.2 11.2-33.5 10.7-65.7 0-108.6zM286.2 404c11.1 0 20.1 9.1 20.1 20.3 0 11.3-9 20.4-20.1 20.4-11 0-20.1-9.2-20.1-20.4.1-11.3 9.1-20.3 20.1-20.3zM167.8 248.1h106.8c29.7 0 53.4-24.5 53.4-54.3V91.9c0-29-24.4-50.7-53.4-55.6-35.8-5.9-74.7-5.6-106.8.1-45.2 8-53.4 24.7-53.4 55.6v40.7h106.9v13.6h-147c-31.1 0-58.3 18.7-66.8 54.2-9.8 40.7-10.2 66.1 0 108.6 7.6 31.6 25.7 54.2 56.8 54.2H101v-48.8c0-35.3 30.5-66.4 66.8-66.4zm-6.7-142.6c-11.1 0-20.1-9.1-20.1-20.3.1-11.3 9-20.4 20.1-20.4 11 0 20.1 9.2 20.1 20.4s-9 20.3-20.1 20.3z">
|
|
346
346
|
</path>
|
|
347
347
|
</svg>
|
|
348
348
|
</a>
|
|
349
|
-
<a class="muted-link " href="https://github.com/pex-tool/pex/releases/download/v2.61.
|
|
349
|
+
<a class="muted-link " href="https://github.com/pex-tool/pex/releases/download/v2.61.1/pex" aria-label="Download"><svg stroke="currentColor" fill="currentColor" stroke-width="0" viewBox="0 0 640 512" height="1em" width="1em" xmlns="http://www.w3.org/2000/svg">
|
|
350
350
|
<path d="M537.6 226.6c4.1-10.7 6.4-22.4 6.4-34.6 0-53-43-96-96-96-19.7 0-38.1 6-53.3 16.2C367 64.2 315.3 32 256 32c-88.4 0-160 71.6-160 160 0 2.7.1 5.4.2 8.1C40.2 219.8 0 273.2 0 336c0 79.5 64.5 144 144 144h368c70.7 0 128-57.3 128-128 0-61.9-44-113.6-102.4-125.4zm-132.9 88.7L299.3 420.7c-6.2 6.2-16.4 6.2-22.6 0L171.3 315.3c-10.1-10.1-2.9-27.3 11.3-27.3H248V176c0-8.8 7.2-16 16-16h48c8.8 0 16 7.2 16 16v112h65.4c14.2 0 21.4 17.2 11.3 27.3z">
|
|
351
351
|
</path>
|
|
352
352
|
</svg>
|
|
@@ -389,7 +389,7 @@ To go straight to building pex files, see <a class="reference internal" href="bu
|
|
|
389
389
|
|
|
390
390
|
</aside>
|
|
391
391
|
</div>
|
|
392
|
-
</div><script src="_static/documentation_options.js?v=
|
|
392
|
+
</div><script src="_static/documentation_options.js?v=ce6d7030"></script>
|
|
393
393
|
<script src="_static/doctools.js?v=9bcbadda"></script>
|
|
394
394
|
<script src="_static/sphinx_highlight.js?v=dc90522c"></script>
|
|
395
395
|
<script src="_static/scripts/furo.js?v=46bd48cc"></script>
|
pex/docs/html/recipes.html
CHANGED
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
<link rel="prefetch" href="_static/pex-logo-dark.png" as="image">
|
|
9
9
|
|
|
10
10
|
<link rel="shortcut icon" href="_static/pex-icon.png"><!-- Generated with Sphinx 8.2.3 and Furo 2025.09.25 -->
|
|
11
|
-
<title>PEX Recipes and Notes - Pex Docs (v2.61.
|
|
11
|
+
<title>PEX Recipes and Notes - Pex Docs (v2.61.1)</title>
|
|
12
12
|
<link rel="stylesheet" type="text/css" href="_static/pygments.css?v=d111a655" />
|
|
13
13
|
<link rel="stylesheet" type="text/css" href="_static/styles/furo.css?v=580074bf" />
|
|
14
14
|
<link rel="stylesheet" type="text/css" href="_static/styles/furo-extensions.css?v=8dab3a3b" />
|
|
@@ -163,7 +163,7 @@
|
|
|
163
163
|
</label>
|
|
164
164
|
</div>
|
|
165
165
|
<div class="header-center">
|
|
166
|
-
<a href="index.html"><div class="brand">Pex Docs (v2.61.
|
|
166
|
+
<a href="index.html"><div class="brand">Pex Docs (v2.61.1)</div></a>
|
|
167
167
|
</div>
|
|
168
168
|
<div class="header-right">
|
|
169
169
|
<div class="theme-toggle-container theme-toggle-header">
|
|
@@ -430,12 +430,12 @@ $<span class="w"> </span><span class="nb">export</span><span class="w"> </span><
|
|
|
430
430
|
</div>
|
|
431
431
|
<div class="right-details">
|
|
432
432
|
<div class="icons">
|
|
433
|
-
<a class="muted-link " href="https://pypi.org/project/pex/2.61.
|
|
433
|
+
<a class="muted-link " href="https://pypi.org/project/pex/2.61.1/" aria-label="PyPI"><svg stroke="currentColor" fill="currentColor" stroke-width="0" viewBox="0 0 448 512" height="1em" width="1em" xmlns="http://www.w3.org/2000/svg">
|
|
434
434
|
<path d="M439.8 200.5c-7.7-30.9-22.3-54.2-53.4-54.2h-40.1v47.4c0 36.8-31.2 67.8-66.8 67.8H172.7c-29.2 0-53.4 25-53.4 54.3v101.8c0 29 25.2 46 53.4 54.3 33.8 9.9 66.3 11.7 106.8 0 26.9-7.8 53.4-23.5 53.4-54.3v-40.7H226.2v-13.6h160.2c31.1 0 42.6-21.7 53.4-54.2 11.2-33.5 10.7-65.7 0-108.6zM286.2 404c11.1 0 20.1 9.1 20.1 20.3 0 11.3-9 20.4-20.1 20.4-11 0-20.1-9.2-20.1-20.4.1-11.3 9.1-20.3 20.1-20.3zM167.8 248.1h106.8c29.7 0 53.4-24.5 53.4-54.3V91.9c0-29-24.4-50.7-53.4-55.6-35.8-5.9-74.7-5.6-106.8.1-45.2 8-53.4 24.7-53.4 55.6v40.7h106.9v13.6h-147c-31.1 0-58.3 18.7-66.8 54.2-9.8 40.7-10.2 66.1 0 108.6 7.6 31.6 25.7 54.2 56.8 54.2H101v-48.8c0-35.3 30.5-66.4 66.8-66.4zm-6.7-142.6c-11.1 0-20.1-9.1-20.1-20.3.1-11.3 9-20.4 20.1-20.4 11 0 20.1 9.2 20.1 20.4s-9 20.3-20.1 20.3z">
|
|
435
435
|
</path>
|
|
436
436
|
</svg>
|
|
437
437
|
</a>
|
|
438
|
-
<a class="muted-link " href="https://github.com/pex-tool/pex/releases/download/v2.61.
|
|
438
|
+
<a class="muted-link " href="https://github.com/pex-tool/pex/releases/download/v2.61.1/pex" aria-label="Download"><svg stroke="currentColor" fill="currentColor" stroke-width="0" viewBox="0 0 640 512" height="1em" width="1em" xmlns="http://www.w3.org/2000/svg">
|
|
439
439
|
<path d="M537.6 226.6c4.1-10.7 6.4-22.4 6.4-34.6 0-53-43-96-96-96-19.7 0-38.1 6-53.3 16.2C367 64.2 315.3 32 256 32c-88.4 0-160 71.6-160 160 0 2.7.1 5.4.2 8.1C40.2 219.8 0 273.2 0 336c0 79.5 64.5 144 144 144h368c70.7 0 128-57.3 128-128 0-61.9-44-113.6-102.4-125.4zm-132.9 88.7L299.3 420.7c-6.2 6.2-16.4 6.2-22.6 0L171.3 315.3c-10.1-10.1-2.9-27.3 11.3-27.3H248V176c0-8.8 7.2-16 16-16h48c8.8 0 16 7.2 16 16v112h65.4c14.2 0 21.4 17.2 11.3 27.3z">
|
|
440
440
|
</path>
|
|
441
441
|
</svg>
|
|
@@ -482,7 +482,7 @@ $<span class="w"> </span><span class="nb">export</span><span class="w"> </span><
|
|
|
482
482
|
|
|
483
483
|
</aside>
|
|
484
484
|
</div>
|
|
485
|
-
</div><script src="_static/documentation_options.js?v=
|
|
485
|
+
</div><script src="_static/documentation_options.js?v=ce6d7030"></script>
|
|
486
486
|
<script src="_static/doctools.js?v=9bcbadda"></script>
|
|
487
487
|
<script src="_static/sphinx_highlight.js?v=dc90522c"></script>
|
|
488
488
|
<script src="_static/scripts/furo.js?v=46bd48cc"></script>
|
pex/docs/html/scie.html
CHANGED
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
<link rel="prefetch" href="_static/pex-logo-dark.png" as="image">
|
|
9
9
|
|
|
10
10
|
<link rel="shortcut icon" href="_static/pex-icon.png"><!-- Generated with Sphinx 8.2.3 and Furo 2025.09.25 -->
|
|
11
|
-
<title>PEX with included Python interpreter - Pex Docs (v2.61.
|
|
11
|
+
<title>PEX with included Python interpreter - Pex Docs (v2.61.1)</title>
|
|
12
12
|
<link rel="stylesheet" type="text/css" href="_static/pygments.css?v=d111a655" />
|
|
13
13
|
<link rel="stylesheet" type="text/css" href="_static/styles/furo.css?v=580074bf" />
|
|
14
14
|
<link rel="stylesheet" type="text/css" href="_static/styles/furo-extensions.css?v=8dab3a3b" />
|
|
@@ -163,7 +163,7 @@
|
|
|
163
163
|
</label>
|
|
164
164
|
</div>
|
|
165
165
|
<div class="header-center">
|
|
166
|
-
<a href="index.html"><div class="brand">Pex Docs (v2.61.
|
|
166
|
+
<a href="index.html"><div class="brand">Pex Docs (v2.61.1)</div></a>
|
|
167
167
|
</div>
|
|
168
168
|
<div class="header-right">
|
|
169
169
|
<div class="theme-toggle-container theme-toggle-header">
|
|
@@ -623,12 +623,12 @@ uuid
|
|
|
623
623
|
</div>
|
|
624
624
|
<div class="right-details">
|
|
625
625
|
<div class="icons">
|
|
626
|
-
<a class="muted-link " href="https://pypi.org/project/pex/2.61.
|
|
626
|
+
<a class="muted-link " href="https://pypi.org/project/pex/2.61.1/" aria-label="PyPI"><svg stroke="currentColor" fill="currentColor" stroke-width="0" viewBox="0 0 448 512" height="1em" width="1em" xmlns="http://www.w3.org/2000/svg">
|
|
627
627
|
<path d="M439.8 200.5c-7.7-30.9-22.3-54.2-53.4-54.2h-40.1v47.4c0 36.8-31.2 67.8-66.8 67.8H172.7c-29.2 0-53.4 25-53.4 54.3v101.8c0 29 25.2 46 53.4 54.3 33.8 9.9 66.3 11.7 106.8 0 26.9-7.8 53.4-23.5 53.4-54.3v-40.7H226.2v-13.6h160.2c31.1 0 42.6-21.7 53.4-54.2 11.2-33.5 10.7-65.7 0-108.6zM286.2 404c11.1 0 20.1 9.1 20.1 20.3 0 11.3-9 20.4-20.1 20.4-11 0-20.1-9.2-20.1-20.4.1-11.3 9.1-20.3 20.1-20.3zM167.8 248.1h106.8c29.7 0 53.4-24.5 53.4-54.3V91.9c0-29-24.4-50.7-53.4-55.6-35.8-5.9-74.7-5.6-106.8.1-45.2 8-53.4 24.7-53.4 55.6v40.7h106.9v13.6h-147c-31.1 0-58.3 18.7-66.8 54.2-9.8 40.7-10.2 66.1 0 108.6 7.6 31.6 25.7 54.2 56.8 54.2H101v-48.8c0-35.3 30.5-66.4 66.8-66.4zm-6.7-142.6c-11.1 0-20.1-9.1-20.1-20.3.1-11.3 9-20.4 20.1-20.4 11 0 20.1 9.2 20.1 20.4s-9 20.3-20.1 20.3z">
|
|
628
628
|
</path>
|
|
629
629
|
</svg>
|
|
630
630
|
</a>
|
|
631
|
-
<a class="muted-link " href="https://github.com/pex-tool/pex/releases/download/v2.61.
|
|
631
|
+
<a class="muted-link " href="https://github.com/pex-tool/pex/releases/download/v2.61.1/pex" aria-label="Download"><svg stroke="currentColor" fill="currentColor" stroke-width="0" viewBox="0 0 640 512" height="1em" width="1em" xmlns="http://www.w3.org/2000/svg">
|
|
632
632
|
<path d="M537.6 226.6c4.1-10.7 6.4-22.4 6.4-34.6 0-53-43-96-96-96-19.7 0-38.1 6-53.3 16.2C367 64.2 315.3 32 256 32c-88.4 0-160 71.6-160 160 0 2.7.1 5.4.2 8.1C40.2 219.8 0 273.2 0 336c0 79.5 64.5 144 144 144h368c70.7 0 128-57.3 128-128 0-61.9-44-113.6-102.4-125.4zm-132.9 88.7L299.3 420.7c-6.2 6.2-16.4 6.2-22.6 0L171.3 315.3c-10.1-10.1-2.9-27.3 11.3-27.3H248V176c0-8.8 7.2-16 16-16h48c8.8 0 16 7.2 16 16v112h65.4c14.2 0 21.4 17.2 11.3 27.3z">
|
|
633
633
|
</path>
|
|
634
634
|
</svg>
|
|
@@ -672,7 +672,7 @@ uuid
|
|
|
672
672
|
|
|
673
673
|
</aside>
|
|
674
674
|
</div>
|
|
675
|
-
</div><script src="_static/documentation_options.js?v=
|
|
675
|
+
</div><script src="_static/documentation_options.js?v=ce6d7030"></script>
|
|
676
676
|
<script src="_static/doctools.js?v=9bcbadda"></script>
|
|
677
677
|
<script src="_static/sphinx_highlight.js?v=dc90522c"></script>
|
|
678
678
|
<script src="_static/scripts/furo.js?v=46bd48cc"></script>
|
pex/docs/html/search.html
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
<link rel="prefetch" href="_static/pex-logo-light.png" as="image">
|
|
7
7
|
<link rel="prefetch" href="_static/pex-logo-dark.png" as="image">
|
|
8
8
|
|
|
9
|
-
<link rel="shortcut icon" href="_static/pex-icon.png"><!-- Generated with Sphinx 8.2.3 and Furo 2025.09.25 --><title>Search - Pex Docs (v2.61.
|
|
9
|
+
<link rel="shortcut icon" href="_static/pex-icon.png"><!-- Generated with Sphinx 8.2.3 and Furo 2025.09.25 --><title>Search - Pex Docs (v2.61.1)</title><link rel="stylesheet" type="text/css" href="_static/pygments.css?v=d111a655" />
|
|
10
10
|
<link rel="stylesheet" type="text/css" href="_static/styles/furo.css?v=580074bf" />
|
|
11
11
|
<link rel="stylesheet" type="text/css" href="_static/styles/furo-extensions.css?v=8dab3a3b" />
|
|
12
12
|
|
|
@@ -176,7 +176,7 @@
|
|
|
176
176
|
</label>
|
|
177
177
|
</div>
|
|
178
178
|
<div class="header-center">
|
|
179
|
-
<a href="index.html"><div class="brand">Pex Docs (v2.61.
|
|
179
|
+
<a href="index.html"><div class="brand">Pex Docs (v2.61.1)</div></a>
|
|
180
180
|
</div>
|
|
181
181
|
<div class="header-right">
|
|
182
182
|
<div class="theme-toggle-container theme-toggle-header">
|
|
@@ -273,12 +273,12 @@
|
|
|
273
273
|
</div>
|
|
274
274
|
<div class="right-details">
|
|
275
275
|
<div class="icons">
|
|
276
|
-
<a class="muted-link " href="https://pypi.org/project/pex/2.61.
|
|
276
|
+
<a class="muted-link " href="https://pypi.org/project/pex/2.61.1/" aria-label="PyPI"><svg stroke="currentColor" fill="currentColor" stroke-width="0" viewBox="0 0 448 512" height="1em" width="1em" xmlns="http://www.w3.org/2000/svg">
|
|
277
277
|
<path d="M439.8 200.5c-7.7-30.9-22.3-54.2-53.4-54.2h-40.1v47.4c0 36.8-31.2 67.8-66.8 67.8H172.7c-29.2 0-53.4 25-53.4 54.3v101.8c0 29 25.2 46 53.4 54.3 33.8 9.9 66.3 11.7 106.8 0 26.9-7.8 53.4-23.5 53.4-54.3v-40.7H226.2v-13.6h160.2c31.1 0 42.6-21.7 53.4-54.2 11.2-33.5 10.7-65.7 0-108.6zM286.2 404c11.1 0 20.1 9.1 20.1 20.3 0 11.3-9 20.4-20.1 20.4-11 0-20.1-9.2-20.1-20.4.1-11.3 9.1-20.3 20.1-20.3zM167.8 248.1h106.8c29.7 0 53.4-24.5 53.4-54.3V91.9c0-29-24.4-50.7-53.4-55.6-35.8-5.9-74.7-5.6-106.8.1-45.2 8-53.4 24.7-53.4 55.6v40.7h106.9v13.6h-147c-31.1 0-58.3 18.7-66.8 54.2-9.8 40.7-10.2 66.1 0 108.6 7.6 31.6 25.7 54.2 56.8 54.2H101v-48.8c0-35.3 30.5-66.4 66.8-66.4zm-6.7-142.6c-11.1 0-20.1-9.1-20.1-20.3.1-11.3 9-20.4 20.1-20.4 11 0 20.1 9.2 20.1 20.4s-9 20.3-20.1 20.3z">
|
|
278
278
|
</path>
|
|
279
279
|
</svg>
|
|
280
280
|
</a>
|
|
281
|
-
<a class="muted-link " href="https://github.com/pex-tool/pex/releases/download/v2.61.
|
|
281
|
+
<a class="muted-link " href="https://github.com/pex-tool/pex/releases/download/v2.61.1/pex" aria-label="Download"><svg stroke="currentColor" fill="currentColor" stroke-width="0" viewBox="0 0 640 512" height="1em" width="1em" xmlns="http://www.w3.org/2000/svg">
|
|
282
282
|
<path d="M537.6 226.6c4.1-10.7 6.4-22.4 6.4-34.6 0-53-43-96-96-96-19.7 0-38.1 6-53.3 16.2C367 64.2 315.3 32 256 32c-88.4 0-160 71.6-160 160 0 2.7.1 5.4.2 8.1C40.2 219.8 0 273.2 0 336c0 79.5 64.5 144 144 144h368c70.7 0 128-57.3 128-128 0-61.9-44-113.6-102.4-125.4zm-132.9 88.7L299.3 420.7c-6.2 6.2-16.4 6.2-22.6 0L171.3 315.3c-10.1-10.1-2.9-27.3 11.3-27.3H248V176c0-8.8 7.2-16 16-16h48c8.8 0 16 7.2 16 16v112h65.4c14.2 0 21.4 17.2 11.3 27.3z">
|
|
283
283
|
</path>
|
|
284
284
|
</svg>
|
|
@@ -301,7 +301,7 @@
|
|
|
301
301
|
|
|
302
302
|
</aside>
|
|
303
303
|
</div>
|
|
304
|
-
</div><script src="_static/documentation_options.js?v=
|
|
304
|
+
</div><script src="_static/documentation_options.js?v=ce6d7030"></script>
|
|
305
305
|
<script src="_static/doctools.js?v=9bcbadda"></script>
|
|
306
306
|
<script src="_static/sphinx_highlight.js?v=dc90522c"></script>
|
|
307
307
|
<script src="_static/scripts/furo.js?v=46bd48cc"></script>
|
pex/docs/html/whatispex.html
CHANGED
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
<link rel="prefetch" href="_static/pex-logo-dark.png" as="image">
|
|
9
9
|
|
|
10
10
|
<link rel="shortcut icon" href="_static/pex-icon.png"><!-- Generated with Sphinx 8.2.3 and Furo 2025.09.25 -->
|
|
11
|
-
<title>What are .pex files? - Pex Docs (v2.61.
|
|
11
|
+
<title>What are .pex files? - Pex Docs (v2.61.1)</title>
|
|
12
12
|
<link rel="stylesheet" type="text/css" href="_static/pygments.css?v=d111a655" />
|
|
13
13
|
<link rel="stylesheet" type="text/css" href="_static/styles/furo.css?v=580074bf" />
|
|
14
14
|
<link rel="stylesheet" type="text/css" href="_static/styles/furo-extensions.css?v=8dab3a3b" />
|
|
@@ -163,7 +163,7 @@
|
|
|
163
163
|
</label>
|
|
164
164
|
</div>
|
|
165
165
|
<div class="header-center">
|
|
166
|
-
<a href="index.html"><div class="brand">Pex Docs (v2.61.
|
|
166
|
+
<a href="index.html"><div class="brand">Pex Docs (v2.61.1)</div></a>
|
|
167
167
|
</div>
|
|
168
168
|
<div class="header-right">
|
|
169
169
|
<div class="theme-toggle-container theme-toggle-header">
|
|
@@ -322,12 +322,12 @@ build executable .pex files. This is described more thoroughly in
|
|
|
322
322
|
</div>
|
|
323
323
|
<div class="right-details">
|
|
324
324
|
<div class="icons">
|
|
325
|
-
<a class="muted-link " href="https://pypi.org/project/pex/2.61.
|
|
325
|
+
<a class="muted-link " href="https://pypi.org/project/pex/2.61.1/" aria-label="PyPI"><svg stroke="currentColor" fill="currentColor" stroke-width="0" viewBox="0 0 448 512" height="1em" width="1em" xmlns="http://www.w3.org/2000/svg">
|
|
326
326
|
<path d="M439.8 200.5c-7.7-30.9-22.3-54.2-53.4-54.2h-40.1v47.4c0 36.8-31.2 67.8-66.8 67.8H172.7c-29.2 0-53.4 25-53.4 54.3v101.8c0 29 25.2 46 53.4 54.3 33.8 9.9 66.3 11.7 106.8 0 26.9-7.8 53.4-23.5 53.4-54.3v-40.7H226.2v-13.6h160.2c31.1 0 42.6-21.7 53.4-54.2 11.2-33.5 10.7-65.7 0-108.6zM286.2 404c11.1 0 20.1 9.1 20.1 20.3 0 11.3-9 20.4-20.1 20.4-11 0-20.1-9.2-20.1-20.4.1-11.3 9.1-20.3 20.1-20.3zM167.8 248.1h106.8c29.7 0 53.4-24.5 53.4-54.3V91.9c0-29-24.4-50.7-53.4-55.6-35.8-5.9-74.7-5.6-106.8.1-45.2 8-53.4 24.7-53.4 55.6v40.7h106.9v13.6h-147c-31.1 0-58.3 18.7-66.8 54.2-9.8 40.7-10.2 66.1 0 108.6 7.6 31.6 25.7 54.2 56.8 54.2H101v-48.8c0-35.3 30.5-66.4 66.8-66.4zm-6.7-142.6c-11.1 0-20.1-9.1-20.1-20.3.1-11.3 9-20.4 20.1-20.4 11 0 20.1 9.2 20.1 20.4s-9 20.3-20.1 20.3z">
|
|
327
327
|
</path>
|
|
328
328
|
</svg>
|
|
329
329
|
</a>
|
|
330
|
-
<a class="muted-link " href="https://github.com/pex-tool/pex/releases/download/v2.61.
|
|
330
|
+
<a class="muted-link " href="https://github.com/pex-tool/pex/releases/download/v2.61.1/pex" aria-label="Download"><svg stroke="currentColor" fill="currentColor" stroke-width="0" viewBox="0 0 640 512" height="1em" width="1em" xmlns="http://www.w3.org/2000/svg">
|
|
331
331
|
<path d="M537.6 226.6c4.1-10.7 6.4-22.4 6.4-34.6 0-53-43-96-96-96-19.7 0-38.1 6-53.3 16.2C367 64.2 315.3 32 256 32c-88.4 0-160 71.6-160 160 0 2.7.1 5.4.2 8.1C40.2 219.8 0 273.2 0 336c0 79.5 64.5 144 144 144h368c70.7 0 128-57.3 128-128 0-61.9-44-113.6-102.4-125.4zm-132.9 88.7L299.3 420.7c-6.2 6.2-16.4 6.2-22.6 0L171.3 315.3c-10.1-10.1-2.9-27.3 11.3-27.3H248V176c0-8.8 7.2-16 16-16h48c8.8 0 16 7.2 16 16v112h65.4c14.2 0 21.4 17.2 11.3 27.3z">
|
|
332
332
|
</path>
|
|
333
333
|
</svg>
|
|
@@ -371,7 +371,7 @@ build executable .pex files. This is described more thoroughly in
|
|
|
371
371
|
|
|
372
372
|
</aside>
|
|
373
373
|
</div>
|
|
374
|
-
</div><script src="_static/documentation_options.js?v=
|
|
374
|
+
</div><script src="_static/documentation_options.js?v=ce6d7030"></script>
|
|
375
375
|
<script src="_static/doctools.js?v=9bcbadda"></script>
|
|
376
376
|
<script src="_static/sphinx_highlight.js?v=dc90522c"></script>
|
|
377
377
|
<script src="_static/scripts/furo.js?v=46bd48cc"></script>
|
pex/resolve/lockfile/create.py
CHANGED
|
@@ -333,12 +333,22 @@ class LockObserver(ResolveObserver):
|
|
|
333
333
|
dist_metadatas_by_download_target[local_distribution.download_target].add(
|
|
334
334
|
DistMetadata.load(local_distribution.path)
|
|
335
335
|
)
|
|
336
|
+
elif os.path.isfile(local_distribution.path):
|
|
337
|
+
build_requests.add(
|
|
338
|
+
BuildRequest.for_file(
|
|
339
|
+
target=local_distribution.download_target,
|
|
340
|
+
source_path=local_distribution.path,
|
|
341
|
+
subdirectory=local_distribution.subdirectory,
|
|
342
|
+
)
|
|
343
|
+
)
|
|
336
344
|
else:
|
|
337
345
|
build_requests.add(
|
|
338
|
-
BuildRequest.
|
|
346
|
+
BuildRequest.for_directory(
|
|
339
347
|
target=local_distribution.download_target,
|
|
340
348
|
source_path=local_distribution.path,
|
|
341
349
|
subdirectory=local_distribution.subdirectory,
|
|
350
|
+
resolver=self.resolver,
|
|
351
|
+
pip_version=self.package_index_configuration.pip_version,
|
|
342
352
|
)
|
|
343
353
|
)
|
|
344
354
|
|
|
@@ -348,7 +358,12 @@ class LockObserver(ResolveObserver):
|
|
|
348
358
|
for analysis in self._analysis:
|
|
349
359
|
lock_result = analysis.analyzer.lock_result
|
|
350
360
|
build_requests.update(
|
|
351
|
-
BuildRequest.
|
|
361
|
+
BuildRequest.for_directory(
|
|
362
|
+
target=analysis.download_target,
|
|
363
|
+
source_path=local_project,
|
|
364
|
+
resolver=self.resolver,
|
|
365
|
+
pip_version=self.package_index_configuration.pip_version,
|
|
366
|
+
)
|
|
352
367
|
for local_project in lock_result.local_projects
|
|
353
368
|
)
|
|
354
369
|
resolved_requirements_by_download_target[
|
|
@@ -39,7 +39,7 @@ from pex.typing import TYPE_CHECKING, cast
|
|
|
39
39
|
from pex.util import CacheHelper
|
|
40
40
|
|
|
41
41
|
if TYPE_CHECKING:
|
|
42
|
-
from typing import DefaultDict, Dict,
|
|
42
|
+
from typing import DefaultDict, Dict, List, Sequence, Tuple
|
|
43
43
|
|
|
44
44
|
|
|
45
45
|
def _fingerprint_dist(dist_path):
|
|
@@ -49,8 +49,8 @@ def _fingerprint_dist(dist_path):
|
|
|
49
49
|
|
|
50
50
|
def resolve_from_dists(
|
|
51
51
|
targets, # type: Targets
|
|
52
|
-
sdists, # type:
|
|
53
|
-
wheels, # type:
|
|
52
|
+
sdists, # type: Sequence[str]
|
|
53
|
+
wheels, # type: Sequence[str]
|
|
54
54
|
requirement_configuration, # type: RequirementConfiguration
|
|
55
55
|
pip_configuration=PipConfiguration(), # type: PipConfiguration
|
|
56
56
|
compile=False, # type: bool
|
|
@@ -70,9 +70,6 @@ def resolve_from_dists(
|
|
|
70
70
|
if isinstance(direct_requirement, LocalProjectRequirement):
|
|
71
71
|
local_projects.append(direct_requirement)
|
|
72
72
|
|
|
73
|
-
source_paths = [local_project.path for local_project in local_projects] + list(
|
|
74
|
-
sdists
|
|
75
|
-
) # type: List[str]
|
|
76
73
|
with TRACER.timed("Fingerprinting pre-resolved wheels"):
|
|
77
74
|
fingerprinted_wheels = tuple(
|
|
78
75
|
FingerprintedDistribution(
|
|
@@ -94,7 +91,7 @@ def resolve_from_dists(
|
|
|
94
91
|
fingerprinted_wheels and InstallableType.INSTALLED_WHEEL_CHROOT is result_type
|
|
95
92
|
)
|
|
96
93
|
with TRACER.timed("Preparing pre-resolved distributions"):
|
|
97
|
-
if
|
|
94
|
+
if sdists or local_projects or resolve_installed_wheel_chroots:
|
|
98
95
|
package_index_configuration = PackageIndexConfiguration.create(
|
|
99
96
|
pip_version=pip_configuration.version,
|
|
100
97
|
resolver_version=pip_configuration.resolver_version,
|
|
@@ -104,12 +101,24 @@ def resolve_from_dists(
|
|
|
104
101
|
extra_pip_requirements=pip_configuration.extra_requirements,
|
|
105
102
|
keyring_provider=pip_configuration.keyring_provider,
|
|
106
103
|
)
|
|
104
|
+
resolver = ConfiguredResolver(pip_configuration=pip_configuration)
|
|
105
|
+
build_requests = [
|
|
106
|
+
BuildRequest.for_file(target=target, source_path=sdist)
|
|
107
|
+
for sdist in sdists
|
|
108
|
+
for target in unique_targets
|
|
109
|
+
]
|
|
110
|
+
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
|
+
)
|
|
117
|
+
for local_project in local_projects
|
|
118
|
+
for target in unique_targets
|
|
119
|
+
)
|
|
107
120
|
build_and_install = BuildAndInstallRequest(
|
|
108
|
-
build_requests=
|
|
109
|
-
BuildRequest.create(target=target, source_path=source_path)
|
|
110
|
-
for source_path in source_paths
|
|
111
|
-
for target in unique_targets
|
|
112
|
-
],
|
|
121
|
+
build_requests=build_requests,
|
|
113
122
|
install_requests=[
|
|
114
123
|
InstallRequest(
|
|
115
124
|
download_target=target,
|
pex/resolver.py
CHANGED
|
@@ -46,6 +46,7 @@ from pex.pep_427 import InstallableType, WheelError, install_wheel_chroot
|
|
|
46
46
|
from pex.pep_503 import ProjectName
|
|
47
47
|
from pex.pip.download_observer import DownloadObserver
|
|
48
48
|
from pex.pip.installation import get_pip
|
|
49
|
+
from pex.pip.local_project import digest_local_project
|
|
49
50
|
from pex.pip.tool import PackageIndexConfiguration
|
|
50
51
|
from pex.pip.version import PipVersionValue
|
|
51
52
|
from pex.requirements import LocalProjectRequirement, URLRequirement
|
|
@@ -261,8 +262,11 @@ class DownloadRequest(object):
|
|
|
261
262
|
for requirement in self.direct_requirements:
|
|
262
263
|
if isinstance(requirement, LocalProjectRequirement):
|
|
263
264
|
for download_target in self.download_targets:
|
|
264
|
-
yield BuildRequest.
|
|
265
|
-
target=download_target.target,
|
|
265
|
+
yield BuildRequest.for_directory(
|
|
266
|
+
target=download_target.target,
|
|
267
|
+
source_path=requirement.path,
|
|
268
|
+
resolver=self.resolver,
|
|
269
|
+
pip_version=self.pip_version,
|
|
266
270
|
)
|
|
267
271
|
|
|
268
272
|
def download_distributions(self, dest=None, max_parallel_jobs=None):
|
|
@@ -396,7 +400,14 @@ class DownloadResult(object):
|
|
|
396
400
|
subdirectory = self.subdirectory_by_filename.get(
|
|
397
401
|
os.path.basename(distribution_path)
|
|
398
402
|
)
|
|
399
|
-
|
|
403
|
+
production_assert(
|
|
404
|
+
os.path.isfile(distribution_path),
|
|
405
|
+
(
|
|
406
|
+
"Pip download results should always be files and never local project "
|
|
407
|
+
"directories."
|
|
408
|
+
),
|
|
409
|
+
)
|
|
410
|
+
yield BuildRequest.for_file(
|
|
400
411
|
target=self.download_target,
|
|
401
412
|
source_path=distribution_path,
|
|
402
413
|
subdirectory=subdirectory,
|
|
@@ -415,26 +426,46 @@ class IntegrityError(Exception):
|
|
|
415
426
|
pass
|
|
416
427
|
|
|
417
428
|
|
|
418
|
-
|
|
429
|
+
if TYPE_CHECKING:
|
|
430
|
+
from pex.hashing import Hasher
|
|
431
|
+
|
|
432
|
+
|
|
433
|
+
def _hasher():
|
|
434
|
+
# type: () -> Hasher
|
|
435
|
+
|
|
436
|
+
return hashlib.sha256()
|
|
437
|
+
|
|
438
|
+
|
|
439
|
+
def _fingerprint_file(path):
|
|
419
440
|
# type: (str) -> str
|
|
441
|
+
return CacheHelper.hash(path, digest=_hasher())
|
|
442
|
+
|
|
443
|
+
|
|
444
|
+
def _fingerprint_directory(path):
|
|
445
|
+
# type: (str) -> str
|
|
446
|
+
return CacheHelper.dir_hash(path, digest=_hasher())
|
|
420
447
|
|
|
421
|
-
# We switched from sha1 to sha256 at the transition from using `pip install --target` to
|
|
422
|
-
# `pip install --prefix` to serve two purposes:
|
|
423
|
-
# 1. Insulate the new installation scheme from the old.
|
|
424
|
-
# 2. Move past sha1 which was shown to have practical collision attacks in 2019.
|
|
425
|
-
#
|
|
426
|
-
# The installation scheme switch was the primary purpose and switching hashes proved a pragmatic
|
|
427
|
-
# insulation. If the `pip install --prefix` re-arrangement scheme evolves, then some other
|
|
428
|
-
# option than switching hashing algorithms will be needed, like post-fixing a running version
|
|
429
|
-
# integer or just mixing one into the hashed content.
|
|
430
|
-
#
|
|
431
|
-
# See: https://github.com/pex-tool/pex/issues/1655 for a general overview of these cache
|
|
432
|
-
# structure concerns.
|
|
433
|
-
hasher = hashlib.sha256
|
|
434
448
|
|
|
435
|
-
|
|
436
|
-
|
|
437
|
-
|
|
449
|
+
def _fingerprint_local_project(
|
|
450
|
+
path, # type: str
|
|
451
|
+
target, # type: Target
|
|
452
|
+
resolver=None, # type: Optional[Resolver]
|
|
453
|
+
pip_version=None, # type: Optional[PipVersionValue]
|
|
454
|
+
):
|
|
455
|
+
if resolver:
|
|
456
|
+
build_system_resolver = resolver
|
|
457
|
+
else:
|
|
458
|
+
from pex.resolve.configured_resolver import ConfiguredResolver
|
|
459
|
+
|
|
460
|
+
build_system_resolver = ConfiguredResolver.default()
|
|
461
|
+
|
|
462
|
+
return digest_local_project(
|
|
463
|
+
directory=path,
|
|
464
|
+
digest=_hasher(),
|
|
465
|
+
target=target,
|
|
466
|
+
resolver=build_system_resolver,
|
|
467
|
+
pip_version=pip_version,
|
|
468
|
+
)
|
|
438
469
|
|
|
439
470
|
|
|
440
471
|
class BuildError(Exception):
|
|
@@ -449,14 +480,14 @@ def _as_download_target(target):
|
|
|
449
480
|
@attr.s(frozen=True)
|
|
450
481
|
class BuildRequest(object):
|
|
451
482
|
@classmethod
|
|
452
|
-
def
|
|
483
|
+
def for_file(
|
|
453
484
|
cls,
|
|
454
485
|
target, # type: Union[DownloadTarget, Target]
|
|
455
486
|
source_path, # type: str
|
|
456
487
|
subdirectory=None, # type: Optional[str]
|
|
457
488
|
):
|
|
458
489
|
# type: (...) -> BuildRequest
|
|
459
|
-
fingerprint =
|
|
490
|
+
fingerprint = _fingerprint_file(source_path)
|
|
460
491
|
return cls(
|
|
461
492
|
download_target=_as_download_target(target),
|
|
462
493
|
source_path=source_path,
|
|
@@ -464,6 +495,30 @@ class BuildRequest(object):
|
|
|
464
495
|
subdirectory=subdirectory,
|
|
465
496
|
)
|
|
466
497
|
|
|
498
|
+
@classmethod
|
|
499
|
+
def for_directory(
|
|
500
|
+
cls,
|
|
501
|
+
target, # type: Union[DownloadTarget, Target]
|
|
502
|
+
source_path, # type: str
|
|
503
|
+
subdirectory=None, # type: Optional[str]
|
|
504
|
+
resolver=None, # type: Optional[Resolver]
|
|
505
|
+
pip_version=None, # type: Optional[PipVersionValue]
|
|
506
|
+
):
|
|
507
|
+
# type: (...) -> BuildRequest
|
|
508
|
+
download_target = _as_download_target(target)
|
|
509
|
+
fingerprint = _fingerprint_local_project(
|
|
510
|
+
path=source_path,
|
|
511
|
+
target=download_target.target,
|
|
512
|
+
resolver=resolver,
|
|
513
|
+
pip_version=pip_version,
|
|
514
|
+
)
|
|
515
|
+
return cls(
|
|
516
|
+
download_target=download_target,
|
|
517
|
+
source_path=source_path,
|
|
518
|
+
fingerprint=fingerprint,
|
|
519
|
+
subdirectory=subdirectory,
|
|
520
|
+
)
|
|
521
|
+
|
|
467
522
|
download_target = attr.ib(converter=_as_download_target) # type: DownloadTarget
|
|
468
523
|
source_path = attr.ib() # type: str
|
|
469
524
|
fingerprint = attr.ib() # type: str
|
|
@@ -635,7 +690,7 @@ class InstallRequest(object):
|
|
|
635
690
|
was_built_locally=False, # type: bool
|
|
636
691
|
):
|
|
637
692
|
# type: (...) -> InstallRequest
|
|
638
|
-
fingerprint =
|
|
693
|
+
fingerprint = _fingerprint_file(wheel_path)
|
|
639
694
|
return cls(
|
|
640
695
|
download_target=_as_download_target(target),
|
|
641
696
|
wheel_path=wheel_path,
|
|
@@ -768,7 +823,7 @@ class InstallResult(object):
|
|
|
768
823
|
else:
|
|
769
824
|
cached_fingerprint = installed_wheel.fingerprint
|
|
770
825
|
|
|
771
|
-
wheel_dir_hash = cached_fingerprint or
|
|
826
|
+
wheel_dir_hash = cached_fingerprint or _fingerprint_directory(self.install_chroot)
|
|
772
827
|
runtime_key_dir = os.path.join(self._installation_root, wheel_dir_hash)
|
|
773
828
|
with atomic_directory(runtime_key_dir) as atomic_dir:
|
|
774
829
|
if not atomic_dir.is_finalized():
|
|
@@ -1086,8 +1141,17 @@ class BuildAndInstallRequest(object):
|
|
|
1086
1141
|
)
|
|
1087
1142
|
if is_wheel(dist_path):
|
|
1088
1143
|
to_install.add(InstallRequest.create(install_request.target, dist_path))
|
|
1144
|
+
elif os.path.isdir(dist_path):
|
|
1145
|
+
to_build.add(
|
|
1146
|
+
BuildRequest.for_directory(
|
|
1147
|
+
install_request.target,
|
|
1148
|
+
dist_path,
|
|
1149
|
+
resolver=self._resolver,
|
|
1150
|
+
pip_version=self._pip_version,
|
|
1151
|
+
)
|
|
1152
|
+
)
|
|
1089
1153
|
else:
|
|
1090
|
-
to_build.add(BuildRequest.
|
|
1154
|
+
to_build.add(BuildRequest.for_file(install_request.target, dist_path))
|
|
1091
1155
|
already_analyzed.add(metadata.project_name)
|
|
1092
1156
|
|
|
1093
1157
|
all_install_requests = OrderedSet(install_requests)
|
|
@@ -1496,10 +1560,6 @@ class LocalDistribution(object):
|
|
|
1496
1560
|
# type: () -> Target
|
|
1497
1561
|
return self.download_target.target
|
|
1498
1562
|
|
|
1499
|
-
@fingerprint.default
|
|
1500
|
-
def _calculate_fingerprint(self):
|
|
1501
|
-
return fingerprint_path(self.path)
|
|
1502
|
-
|
|
1503
1563
|
@property
|
|
1504
1564
|
def is_wheel(self):
|
|
1505
1565
|
return is_wheel(self.path) and zipfile.is_zipfile(self.path)
|
pex/version.py
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: pex
|
|
3
|
-
Version: 2.61.
|
|
3
|
+
Version: 2.61.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.61.
|
|
6
|
+
Download-URL: https://github.com/pex-tool/pex/releases/download/v2.61.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.61.
|
|
10
|
+
Project-URL: Changelog, https://github.com/pex-tool/pex/blob/v2.61.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.61.
|
|
12
|
+
Project-URL: Source, https://github.com/pex-tool/pex/tree/v2.61.1
|
|
13
13
|
Keywords: package,executable,virtualenv,lock,freeze
|
|
14
14
|
Classifier: Development Status :: 5 - Production/Stable
|
|
15
15
|
Classifier: Intended Audience :: Developers
|
|
@@ -56,7 +56,7 @@ pex/pth.py,sha256=YGiWmW99vPvPm5-iU_Kbvbu1NTtJyyTp32ilHyAJ_VQ,3402
|
|
|
56
56
|
pex/pyenv.py,sha256=O5_Ec26J8GQpa5Xt_TtSB0A9rV62vYgciIwBlW4aiZ8,9276
|
|
57
57
|
pex/rank.py,sha256=dNFi6Y7bBe8gwcKSon81EOs9Jw4uhUzoHgRnIDYV8lU,3901
|
|
58
58
|
pex/requirements.py,sha256=NpseoFVrUfTDSd0JAoOnVstbvYC140ecDgiHeb39b3s,29007
|
|
59
|
-
pex/resolver.py,sha256=
|
|
59
|
+
pex/resolver.py,sha256=eukMYKET7WIgtibUaCJpXuIOuBRIayn83S22mQsjdzU,70551
|
|
60
60
|
pex/result.py,sha256=VTE_n-IffLf-FD4ENNbRvq_ebahh-IDYAna1y5Iw1WI,3090
|
|
61
61
|
pex/sh_boot.py,sha256=mTB7aYc26GymgmbN5-QCiC_sbi3GBL5NZAiwXCsNL1w,11433
|
|
62
62
|
pex/sorted_tuple.py,sha256=L_49iVoVZ57J-q44nVRO-boT0bc8ynhJlhS_yUp2xeo,2371
|
|
@@ -69,7 +69,7 @@ pex/tracer.py,sha256=nob_hNooCYWZev7_ABhAVyO4HBZ8Q_OajQUvNnr82Rc,4481
|
|
|
69
69
|
pex/typing.py,sha256=J1JTB1V48zIWmhWRHEMDHWMaFPMzsEonWJ9s57Ev43Q,3050
|
|
70
70
|
pex/util.py,sha256=TxTxpdDmrDTLVXt9e2XuRq9c3N6jRYNCce87QBFkCVo,5491
|
|
71
71
|
pex/variables.py,sha256=h3-JeMzXfRzEsWqTYsoU-6vt5W4Kr0VvbfSDAYtuZOU,34728
|
|
72
|
-
pex/version.py,sha256=
|
|
72
|
+
pex/version.py,sha256=DVGzV17TaWSHmL1bfNNRS6IRog4wDUQCCCM-hrIFk5U,131
|
|
73
73
|
pex/wheel.py,sha256=R9jPWwzla_c3xUbeYjaQMrKC0ly8UexKMLfuRDhP054,11146
|
|
74
74
|
pex/whl.py,sha256=0Nh1d6kmAaRANCygoVZZi0zii6j_elRQc7N6yDHTuMY,2513
|
|
75
75
|
pex/ziputils.py,sha256=thUrto9vEdG9mFCIJ59Js3d1y6bSfFdl7pb1lSb7KAQ,9620
|
|
@@ -84,7 +84,7 @@ pex/build_system/pep_517.py,sha256=ZGeDso2Pmv2JjB0dMBUcXHlCMhram7QhJneYskXtH4U,1
|
|
|
84
84
|
pex/build_system/pep_518.py,sha256=LMgvpHqcifQAHe6jgGBEGgPolMIk7BBcKBunN5u7jr4,8355
|
|
85
85
|
pex/cache/__init__.py,sha256=yOeHhVmwd_TbkV62FglXwYaf6Hn2SpBbS9fGfHBRjx0,107
|
|
86
86
|
pex/cache/access.py,sha256=_2Iq6NC0o-0IIjgljiOq1ajugiMUL7-V9NdrSXkkJWw,3847
|
|
87
|
-
pex/cache/dirs.py,sha256=
|
|
87
|
+
pex/cache/dirs.py,sha256=nwpi2UQsiCpK7sjhzcVyOWlOTeXDC_bM1Sy0Mu5f-ag,33014
|
|
88
88
|
pex/cache/prunable.py,sha256=zIIZYp4os5JHss7MrKHR8c1WCVOLuAm44UDYYsyux8g,6092
|
|
89
89
|
pex/cache/root.py,sha256=8EUcm5v3T9tz4Y-1tGFngQyMb0P_llnLm0g91peTgSQ,1169
|
|
90
90
|
pex/cli/__init__.py,sha256=uASB5OU996Jax-h3kMmeZjG5Jdy9BYDR6A1swkBoFDg,107
|
|
@@ -105,7 +105,7 @@ pex/cli/commands/cache/du.py,sha256=GP1PesBeAw5I4pOnLUswZePHXacYKVvnQIcL7LHpsxE,
|
|
|
105
105
|
pex/cli/commands/pip/__init__.py,sha256=Rj5yTDE0EVOH9FkbmGOUxqUfHTXmU6bPg2MkWOGpVIc,107
|
|
106
106
|
pex/cli/commands/pip/core.py,sha256=YpDxW5jpBr8IgyS9w9Qh8yS1xdYZLo7KBpFGnVyMBmM,10751
|
|
107
107
|
pex/cli/commands/pip/download.py,sha256=rSvgD_Qtjk8AtVkkTWczGBeaFYVHE5jM5yBkw6aOKSE,1175
|
|
108
|
-
pex/cli/commands/pip/wheel.py,sha256
|
|
108
|
+
pex/cli/commands/pip/wheel.py,sha256=-PFHFhCXz1BKQo7grXuv0gWwtC4Dp3qn8LRxpPG4g7A,2397
|
|
109
109
|
pex/commands/__init__.py,sha256=uASB5OU996Jax-h3kMmeZjG5Jdy9BYDR6A1swkBoFDg,107
|
|
110
110
|
pex/commands/command.py,sha256=HzRgXCXhnVSs87SCSLGe0N8KFEnYbVo_iHzPmfx6Oa0,16862
|
|
111
111
|
pex/distutils/__init__.py,sha256=uASB5OU996Jax-h3kMmeZjG5Jdy9BYDR6A1swkBoFDg,107
|
|
@@ -113,33 +113,33 @@ pex/distutils/commands/__init__.py,sha256=uASB5OU996Jax-h3kMmeZjG5Jdy9BYDR6A1swk
|
|
|
113
113
|
pex/distutils/commands/bdist_pex.py,sha256=SLwBj0ALpArhKQT94X0niKWfyLaySjOZuZrGXG332K0,5117
|
|
114
114
|
pex/docs/__init__.py,sha256=u9hPOij1fpo1yPBLTQTdSCnSIUuRCSXHomCkEAaCciA,439
|
|
115
115
|
pex/docs/command.py,sha256=uQyD8bO_DBNIlkPd6F7SFZbZUVh1Xn6gT8OmVxP4qxk,3046
|
|
116
|
-
pex/docs/html/buildingpex.html,sha256=
|
|
117
|
-
pex/docs/html/genindex.html,sha256=
|
|
118
|
-
pex/docs/html/index.html,sha256=
|
|
119
|
-
pex/docs/html/recipes.html,sha256=
|
|
120
|
-
pex/docs/html/scie.html,sha256=
|
|
121
|
-
pex/docs/html/search.html,sha256=
|
|
116
|
+
pex/docs/html/buildingpex.html,sha256=gjV5rD3l0Y1-K-iujEqlnMhDhTtienKUYIGcp1PgdyI,57407
|
|
117
|
+
pex/docs/html/genindex.html,sha256=kdwy_KfjuxFzOYn1SDrTgWsovV8e5712dQ9Juva9ldk,17198
|
|
118
|
+
pex/docs/html/index.html,sha256=7bvXLU3ECXSjtlpbnJvE_OfgRrGs4rlMSXvY3-LceBI,25028
|
|
119
|
+
pex/docs/html/recipes.html,sha256=SqB5YxLmHY5nP78O3SI46RuhFlqB5jqrTpUMAE13KJQ,35192
|
|
120
|
+
pex/docs/html/scie.html,sha256=u4CYp633KX4Qb0r3-iG6-dsNegVSuVe9OCLeDz6PrmA,62182
|
|
121
|
+
pex/docs/html/search.html,sha256=McU7HndhHG-89KuKB4ABrknh687fqSCib3gc5Y_vMAc,18169
|
|
122
122
|
pex/docs/html/searchindex.js,sha256=R_L6Oveik_wlK5CmaE7YwRvmu81r6fd7jtnZUjfk1sA,18009
|
|
123
|
-
pex/docs/html/whatispex.html,sha256=
|
|
124
|
-
pex/docs/html/_pagefind/pagefind-entry.json,sha256=
|
|
123
|
+
pex/docs/html/whatispex.html,sha256=29EdaqIZ3w1deo91Tqtedk9WkcGcEbzDijK3PdbzH4g,22754
|
|
124
|
+
pex/docs/html/_pagefind/pagefind-entry.json,sha256=odqFrS5dNehTjb-yKUYlpRJfaS4U_BLLOTY9ul09Bsg,90
|
|
125
125
|
pex/docs/html/_pagefind/pagefind-highlight.js,sha256=5hRyi7gOMY9tlTe-tbmDrVJpoxbnYxhbJeoGwtmCfXA,43944
|
|
126
126
|
pex/docs/html/_pagefind/pagefind-modular-ui.css,sha256=ZTqynk3lYp9t319vzfXSs-tTmowH__ila4ziFWpXB4g,7336
|
|
127
127
|
pex/docs/html/_pagefind/pagefind-modular-ui.js,sha256=-DCEOJ2cInrvjEGZFxCuYy81EMWbKHhMu4wivlJmUzE,14486
|
|
128
128
|
pex/docs/html/_pagefind/pagefind-ui.css,sha256=GL61nVezuyVA4ynNRJejhEwUBxhBtx4rDYVlAgI_W1U,14486
|
|
129
129
|
pex/docs/html/_pagefind/pagefind-ui.js,sha256=WQ3yec_CMkBKswl16Ig5N_zJzeCgL4z9y344TcJeKAQ,78367
|
|
130
|
-
pex/docs/html/_pagefind/pagefind.
|
|
130
|
+
pex/docs/html/_pagefind/pagefind.en_c578c4b677.pf_meta,sha256=syml2Po7JLiDR8kfyF2zxFWciAwF_JttdLLcyrNHm6o,154
|
|
131
131
|
pex/docs/html/_pagefind/pagefind.js,sha256=Q-4jKyPif6awDU9x8IoWXTWoJJR1JZicegUYQ-QI4MA,32912
|
|
132
132
|
pex/docs/html/_pagefind/wasm.en.pagefind,sha256=mG0TKIE7WXynsyg-tpiMZiVG2Hwebbt2UqFqlqdTTsE,70873
|
|
133
133
|
pex/docs/html/_pagefind/wasm.unknown.pagefind,sha256=eAREknqQnc_y96pbl8eYz9zqfUXsqe64B7HwrQE2SkY,67202
|
|
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/fragment/
|
|
140
|
-
pex/docs/html/_pagefind/fragment/
|
|
141
|
-
pex/docs/html/_pagefind/fragment/
|
|
142
|
-
pex/docs/html/_pagefind/index/
|
|
134
|
+
pex/docs/html/_pagefind/fragment/en_245699a.pf_fragment,sha256=COxvbCC0ohjrmCuWPYVe3RJNwk3MGGlPq7n9ghvI6Qs,4847
|
|
135
|
+
pex/docs/html/_pagefind/fragment/en_4695b51.pf_fragment,sha256=IM5z7VpBJEIMc6d0n9UgwrkOTAQ7O2WWFQbvux0S8hk,361
|
|
136
|
+
pex/docs/html/_pagefind/fragment/en_57f2ab1.pf_fragment,sha256=yvnvaNIwiDeJf_F7VxW4_sE9Va3Bimge_G7LMrxQuUg,3648
|
|
137
|
+
pex/docs/html/_pagefind/fragment/en_aefc110.pf_fragment,sha256=MupAsKOHKABBC0eZj7hzwyWco2gg-hAW1koC44HzqpY,1158
|
|
138
|
+
pex/docs/html/_pagefind/fragment/en_b7fad62.pf_fragment,sha256=LMThWot19yNnCLqJTAuF5-oCcHBrlPee_G4OI94DQ38,369
|
|
139
|
+
pex/docs/html/_pagefind/fragment/en_bf32fcd.pf_fragment,sha256=OFOtHfd8_zRypPFyjdkHwHFVdrSaff-jy71GmEsCbhw,1142
|
|
140
|
+
pex/docs/html/_pagefind/fragment/en_c9714ee.pf_fragment,sha256=De-3L0IU4HuNFiDXeBBfUk5K11ij09BeA3VqOao4mvk,3019
|
|
141
|
+
pex/docs/html/_pagefind/fragment/en_e6c0aae.pf_fragment,sha256=B4gOrSbaCUeZDkxOfpGEpzPgRYdHJaJN16yXmwyGcR4,6821
|
|
142
|
+
pex/docs/html/_pagefind/index/en_7e57d09.pf_index,sha256=dG2DsD-Y8afoyc2fcN-MJni6cpqIjgmFxIbebrVXaCg,28829
|
|
143
143
|
pex/docs/html/_sources/buildingpex.rst.txt,sha256=87P3ZO871MILL9pmpDM8_M7_YV1z5HjTYa9m8yuxTa4,19138
|
|
144
144
|
pex/docs/html/_sources/index.rst.txt,sha256=vWt1s6dirYeR-9mFJY1SClwWvbWqIqJSFCAF1CdZojc,1468
|
|
145
145
|
pex/docs/html/_sources/recipes.rst.txt,sha256=kerzvp8_t5io6eGl3YJODtNBQy7GmY2AA6RHaij9C-g,6958
|
|
@@ -149,7 +149,7 @@ pex/docs/html/_sources/api/vars.md.txt,sha256=C9gu5czyB-g788xRfYKF8P176ew_q97X6z
|
|
|
149
149
|
pex/docs/html/_static/basic.css,sha256=ZW_xus1vJg_H1xuX-cLx_L9pLchL9GnNlSA078ue7-0,14685
|
|
150
150
|
pex/docs/html/_static/debug.css,sha256=DQXNnnnVMjQwRmfAjwKXHeYZbA_8pZPDkDs2Z7QFWtY,1266
|
|
151
151
|
pex/docs/html/_static/doctools.js,sha256=KZLAnfkYJqjTPjtItkXud-RXrc98cS13aoFOHixEi0M,4322
|
|
152
|
-
pex/docs/html/_static/documentation_options.js,sha256=
|
|
152
|
+
pex/docs/html/_static/documentation_options.js,sha256=qSSP84Un1vSQjdIlT5RakJ0dfLmSBsOLlIVu1pO8Uz8,329
|
|
153
153
|
pex/docs/html/_static/file.png,sha256=XEvJoWrr84xLlQ9ZuOUByjZJUyjLnrYiIYvOkGSjXj4,286
|
|
154
154
|
pex/docs/html/_static/language_data.js,sha256=O8MRVjt_xegPyrL4Ypd0vzy2swICAA3zbf-OaVqQI7c,4598
|
|
155
155
|
pex/docs/html/_static/minus.png,sha256=R-f8UNs2mfHKQc6aL_ogLADF0dUYDFX2K6hZsb1swAg,90
|
|
@@ -169,7 +169,7 @@ pex/docs/html/_static/styles/furo-extensions.css,sha256=PSsCB3EaBzE9-2yLJyKV9fkx
|
|
|
169
169
|
pex/docs/html/_static/styles/furo-extensions.css.map,sha256=CzW267gfKqH8ruMlwJbWg-MsGAipIgZwoaP4gwDGkVw,7762
|
|
170
170
|
pex/docs/html/_static/styles/furo.css,sha256=666beINeSQtLZbSeNCMj62G7a13xiX1YwJVvij3jr-8,50749
|
|
171
171
|
pex/docs/html/_static/styles/furo.css.map,sha256=0k0kb9TwrJYQRT-2cbjTcOz7PQykGWHdy2BSuVMtrnY,76038
|
|
172
|
-
pex/docs/html/api/vars.html,sha256=
|
|
172
|
+
pex/docs/html/api/vars.html,sha256=B8VLHKOvp5mDUxuNdiJ_Q4zYBEN0tUipqWzNptS18II,34903
|
|
173
173
|
pex/fs/__init__.py,sha256=ues2bnsufy1lYRyoWsiP-G4kuPrV-tXaZ0x-HFJFpwY,3605
|
|
174
174
|
pex/fs/_posix.py,sha256=p-VkjEfRNXduBmkxcuEXWM1g6y6xrkufSYzEy93tqjA,1275
|
|
175
175
|
pex/fs/_windows.py,sha256=apacgHpxNutF5HkU6cYOLHq7yqaijRMsFBdsdKSviDo,3304
|
|
@@ -210,7 +210,7 @@ pex/resolve/locker_patches.py,sha256=t_30hjSYG570UJHgpf7i1L5ssvi1LZ2YbM4iHd44V6s
|
|
|
210
210
|
pex/resolve/package_repository.py,sha256=xMU9aTxojS2sNmWp03jfMBTIGhq3eqNuNOacl8BiiGY,15123
|
|
211
211
|
pex/resolve/path_mappings.py,sha256=d6JVzD0K342ELz3O8AcsaXoikLDF3xYrgbXkixMmf3Q,2073
|
|
212
212
|
pex/resolve/pex_repository_resolver.py,sha256=nr-qtnT-vGTan20vygbW8VH_uTv7jK9HdF4c4yrbBMY,5528
|
|
213
|
-
pex/resolve/pre_resolved_resolver.py,sha256=
|
|
213
|
+
pex/resolve/pre_resolved_resolver.py,sha256=nPQiE8cZwK-t9Jm-zpSpnbxNO4N4QXVA9fGIx_5llDs,10315
|
|
214
214
|
pex/resolve/project.py,sha256=BYy1m8-jUsiaBR1DF3eJiqpqvdqrzB-cQDPvcMD2v-0,14923
|
|
215
215
|
pex/resolve/requirement_configuration.py,sha256=kK_si5GsaZUlaQMrwq6SWauk-0nWnwEbeeJB4V1qzfI,2891
|
|
216
216
|
pex/resolve/requirement_options.py,sha256=4E5e_81ANZMg3-a1zYnJ--rixyqaEJ49197GjB3AYbA,2288
|
|
@@ -224,7 +224,7 @@ pex/resolve/target_options.py,sha256=6YoXvIWSyTKfkJ3fcEhqu7eDzF-TlUKhSoNlGoLApQI
|
|
|
224
224
|
pex/resolve/target_system.py,sha256=R256UFgP7vZ9iBI5Zo45Bh224nkBom6Y8Z6UnJqloKk,17256
|
|
225
225
|
pex/resolve/venv_resolver.py,sha256=2TzcrBXz6FCWO30RMek4Coi81cy0QYPjcZgjN-TXWaE,20663
|
|
226
226
|
pex/resolve/lockfile/__init__.py,sha256=uASB5OU996Jax-h3kMmeZjG5Jdy9BYDR6A1swkBoFDg,107
|
|
227
|
-
pex/resolve/lockfile/create.py,sha256=
|
|
227
|
+
pex/resolve/lockfile/create.py,sha256=R4EWte-H-MazD2YvlBgFS7ZzeC9sEsDgOgcgu-QexxA,28679
|
|
228
228
|
pex/resolve/lockfile/download_manager.py,sha256=7mI_vUIIn4VxG3RDNxyT5yTpFLG9LH_IlGDKRMB_OJ0,9176
|
|
229
229
|
pex/resolve/lockfile/json_codec.py,sha256=jgFPmZ9eW-PyNFCzzUQU7S9vNJR6-gX2axtC065ypRw,20544
|
|
230
230
|
pex/resolve/lockfile/model.py,sha256=BupcGuRT3EG8c_4Sc7C8CnKoZo7c6jqDYXreIJZoJfg,7838
|
|
@@ -985,10 +985,10 @@ pex/windows/stubs/uv-trampoline-aarch64-console.exe,sha256=1S2aM-6CV7rKz-3ncM5X7
|
|
|
985
985
|
pex/windows/stubs/uv-trampoline-aarch64-gui.exe,sha256=mb8x1FpyH-wy11X5YgWfqh_VUwBb62M4Zf9aFr5V4EE,40448
|
|
986
986
|
pex/windows/stubs/uv-trampoline-x86_64-console.exe,sha256=nLopBrlCMMFjkKVRlY7Ke2zFGpQOyF5mSlLs0d7-HRQ,40960
|
|
987
987
|
pex/windows/stubs/uv-trampoline-x86_64-gui.exe,sha256=icnp1oXrOZpc-dHTGvDbTHjr-D8M0eamvRrC9bPI_KI,41984
|
|
988
|
-
pex-2.61.
|
|
989
|
-
pex-2.61.
|
|
990
|
-
pex-2.61.
|
|
991
|
-
pex-2.61.
|
|
992
|
-
pex-2.61.
|
|
993
|
-
pex-2.61.
|
|
994
|
-
pex-2.61.
|
|
988
|
+
pex-2.61.1.dist-info/METADATA,sha256=9_Cezqqwv4Qa1L7E-sm4q29QHKMtsN2yZe2S94ebtAE,7476
|
|
989
|
+
pex-2.61.1.dist-info/WHEEL,sha256=JNWh1Fm1UdwIQV075glCn4MVuCRs0sotJIq-J6rbxCU,109
|
|
990
|
+
pex-2.61.1.dist-info/entry_points.txt,sha256=LD9tcxNxdsVLeIF6zR7dyH1vgo2eD9a-05TC1UraGMQ,174
|
|
991
|
+
pex-2.61.1.dist-info/top_level.txt,sha256=HlafJUPu7mfjxv3SDH-RbkxsHOWSVbPXTEBC1hzonpM,4
|
|
992
|
+
pex-2.61.1.dist-info/licenses/LICENSE,sha256=bcDgaNzzpbyOBUIFuFt3IOHUkmW7xkv1FdLPeRl99po,11323
|
|
993
|
+
pex-2.61.1.dist-info/pylock/pylock.toml,sha256=9TIk5X6BqnJ6lKu8eb0EnzwbBcOjs3QJWzcLMYx8M5k,7151
|
|
994
|
+
pex-2.61.1.dist-info/RECORD,,
|
|
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
|