pex 2.62.1__py2.py3-none-any.whl → 2.64.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/cli/commands/lock.py +15 -0
- pex/cli/commands/venv.py +80 -15
- pex/dist_metadata.py +36 -9
- pex/docs/html/_pagefind/fragment/en_3046a3a.pf_fragment +0 -0
- pex/docs/html/_pagefind/fragment/en_3f5cca9.pf_fragment +0 -0
- pex/docs/html/_pagefind/fragment/en_5f2da5c.pf_fragment +0 -0
- pex/docs/html/_pagefind/fragment/en_7350892.pf_fragment +0 -0
- pex/docs/html/_pagefind/fragment/en_ac9b982.pf_fragment +0 -0
- pex/docs/html/_pagefind/fragment/en_d158da6.pf_fragment +0 -0
- pex/docs/html/_pagefind/fragment/en_e575d34.pf_fragment +0 -0
- pex/docs/html/_pagefind/fragment/en_fca878d.pf_fragment +0 -0
- pex/docs/html/_pagefind/index/en_23c894e.pf_index +0 -0
- pex/docs/html/_pagefind/pagefind-entry.json +1 -1
- pex/docs/html/_pagefind/pagefind.en_86ab41ad5d.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/pip/tool.py +84 -11
- pex/pip/vcs.py +42 -25
- pex/resolve/lock_downloader.py +0 -1
- pex/resolve/locked_resolve.py +11 -11
- pex/resolve/locker.py +98 -18
- pex/resolve/lockfile/create.py +157 -27
- pex/resolve/lockfile/updater.py +11 -0
- pex/resolver.py +201 -4
- pex/venv/installer.py +37 -14
- pex/version.py +1 -1
- {pex-2.62.1.dist-info → pex-2.64.0.dist-info}/METADATA +4 -4
- {pex-2.62.1.dist-info → pex-2.64.0.dist-info}/RECORD +40 -40
- pex/docs/html/_pagefind/fragment/en_1bbeb07.pf_fragment +0 -0
- pex/docs/html/_pagefind/fragment/en_1befd43.pf_fragment +0 -0
- pex/docs/html/_pagefind/fragment/en_45eea4b.pf_fragment +0 -0
- pex/docs/html/_pagefind/fragment/en_7822de6.pf_fragment +0 -0
- pex/docs/html/_pagefind/fragment/en_87f76ba.pf_fragment +0 -0
- pex/docs/html/_pagefind/fragment/en_a89f2ec.pf_fragment +0 -0
- pex/docs/html/_pagefind/fragment/en_c2a647e.pf_fragment +0 -0
- pex/docs/html/_pagefind/fragment/en_d2f2c1b.pf_fragment +0 -0
- pex/docs/html/_pagefind/index/en_31a0754.pf_index +0 -0
- pex/docs/html/_pagefind/pagefind.en_32e8257caf.pf_meta +0 -0
- {pex-2.62.1.dist-info → pex-2.64.0.dist-info}/WHEEL +0 -0
- {pex-2.62.1.dist-info → pex-2.64.0.dist-info}/entry_points.txt +0 -0
- {pex-2.62.1.dist-info → pex-2.64.0.dist-info}/licenses/LICENSE +0 -0
- {pex-2.62.1.dist-info → pex-2.64.0.dist-info}/pylock/pylock.toml +0 -0
- {pex-2.62.1.dist-info → pex-2.64.0.dist-info}/top_level.txt +0 -0
pex/venv/installer.py
CHANGED
|
@@ -24,6 +24,7 @@ from pex.pep_427 import reinstall_flat, reinstall_venv
|
|
|
24
24
|
from pex.pep_440 import Version
|
|
25
25
|
from pex.pep_503 import ProjectName
|
|
26
26
|
from pex.pex import PEX
|
|
27
|
+
from pex.pex_info import PexInfo
|
|
27
28
|
from pex.result import Error
|
|
28
29
|
from pex.sysconfig import SCRIPT_DIR
|
|
29
30
|
from pex.tracer import TRACER
|
|
@@ -44,6 +45,7 @@ if TYPE_CHECKING:
|
|
|
44
45
|
Iterator,
|
|
45
46
|
List,
|
|
46
47
|
Optional,
|
|
48
|
+
Sequence,
|
|
47
49
|
Text,
|
|
48
50
|
Tuple,
|
|
49
51
|
Union,
|
|
@@ -574,24 +576,16 @@ def _populate_sources(
|
|
|
574
576
|
yield src, dest
|
|
575
577
|
|
|
576
578
|
|
|
577
|
-
def
|
|
579
|
+
def install_pex_main(
|
|
578
580
|
target_dir, # type: str
|
|
579
581
|
venv, # type: Virtualenv
|
|
580
|
-
|
|
582
|
+
pex_info, # type: PexInfo
|
|
583
|
+
activated_dists, # type: Sequence[Distribution]
|
|
581
584
|
shebang, # type: str
|
|
582
585
|
venv_python, # type: str
|
|
583
586
|
bin_path, # type: BinPath.Value
|
|
584
587
|
):
|
|
585
|
-
# type: (...) ->
|
|
586
|
-
|
|
587
|
-
# We want the venv at rest to reflect the PEX it was created from at rest; as such we use the
|
|
588
|
-
# PEX's at-rest PEX-INFO to perform the layout. The venv can then be executed with various PEX
|
|
589
|
-
# environment variables in-play that it respects (e.g.: PEX_EXTRA_SYS_PATH, PEX_INTERPRETER,
|
|
590
|
-
# PEX_MODULE, etc.).
|
|
591
|
-
pex_info = pex.pex_info(include_env_overrides=False)
|
|
592
|
-
|
|
593
|
-
for src, dst in _populate_sources(pex=pex, dst=venv.site_packages_dir):
|
|
594
|
-
yield src, dst
|
|
588
|
+
# type: (...) -> None
|
|
595
589
|
|
|
596
590
|
with open(os.path.join(venv.site_packages_dir, "PEX_EXTRA_SYS_PATH.pth"), "w") as fp:
|
|
597
591
|
# N.B.: .pth import lines must be single lines: https://docs.python.org/3/library/site.html
|
|
@@ -607,7 +601,7 @@ def _populate_first_party(
|
|
|
607
601
|
with open(os.path.join(venv.venv_dir, pex_info.PATH), "w") as fp:
|
|
608
602
|
fp.write(pex_info.dump())
|
|
609
603
|
|
|
610
|
-
#
|
|
604
|
+
# Add a __main__ to the root of the venv for running the venv dir like a loose PEX dir
|
|
611
605
|
# and a main.py for running as a script.
|
|
612
606
|
with open(venv.join_path("__main__.py"), "w") as fp:
|
|
613
607
|
fp.write(
|
|
@@ -660,9 +654,38 @@ def _populate_first_party(
|
|
|
660
654
|
repl.create_pex_repl_exe(
|
|
661
655
|
shebang=shebang,
|
|
662
656
|
pex_info=pex_info,
|
|
663
|
-
activated_dists=
|
|
657
|
+
activated_dists=activated_dists,
|
|
664
658
|
pex=os.path.join(target_dir, "pex"),
|
|
665
659
|
venv=True,
|
|
666
660
|
)
|
|
667
661
|
)
|
|
668
662
|
chmod_plus_x(fp.name)
|
|
663
|
+
|
|
664
|
+
|
|
665
|
+
def _populate_first_party(
|
|
666
|
+
target_dir, # type: str
|
|
667
|
+
venv, # type: Virtualenv
|
|
668
|
+
pex, # type: PEX
|
|
669
|
+
shebang, # type: str
|
|
670
|
+
venv_python, # type: str
|
|
671
|
+
bin_path, # type: BinPath.Value
|
|
672
|
+
):
|
|
673
|
+
# type: (...) -> Iterator[Tuple[Text, Text]]
|
|
674
|
+
|
|
675
|
+
for src, dst in _populate_sources(pex=pex, dst=venv.site_packages_dir):
|
|
676
|
+
yield src, dst
|
|
677
|
+
|
|
678
|
+
# We want the venv at rest to reflect the PEX it was created from at rest; as such we use the
|
|
679
|
+
# PEX's at-rest PEX-INFO to perform the layout. The venv can then be executed with various PEX
|
|
680
|
+
# environment variables in-play that it respects (e.g.: PEX_EXTRA_SYS_PATH, PEX_INTERPRETER,
|
|
681
|
+
# PEX_MODULE, etc.).
|
|
682
|
+
pex_info = pex.pex_info(include_env_overrides=False)
|
|
683
|
+
install_pex_main(
|
|
684
|
+
target_dir=target_dir,
|
|
685
|
+
venv=venv,
|
|
686
|
+
pex_info=pex_info,
|
|
687
|
+
activated_dists=tuple(pex.resolve()),
|
|
688
|
+
shebang=shebang,
|
|
689
|
+
venv_python=venv_python,
|
|
690
|
+
bin_path=bin_path,
|
|
691
|
+
)
|
pex/version.py
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: pex
|
|
3
|
-
Version: 2.
|
|
3
|
+
Version: 2.64.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.64.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.64.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.64.0
|
|
13
13
|
Keywords: package,executable,virtualenv,lock,freeze
|
|
14
14
|
Classifier: Development Status :: 5 - Production/Stable
|
|
15
15
|
Classifier: Intended Audience :: Developers
|
|
@@ -13,7 +13,7 @@ pex/compatibility.py,sha256=v3y2THaiaYofZV0Bru6FwoM2OxDl03POkai1tQ245vY,10117
|
|
|
13
13
|
pex/compiler.py,sha256=oDQ8env2V2Vo8KCXxQ6U7J9wxXB7y8vLazvDl_oJ8vo,3568
|
|
14
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=mQgAq0S52PiOz0bMJ82n6k2shG5N0lzQnTc_92Vh3-k,48249
|
|
17
17
|
pex/entry_points_txt.py,sha256=9_RU4Zx1ybZDokV84FK9MRe_7MnytSEntD9v6njbnJg,3475
|
|
18
18
|
pex/enum.py,sha256=kBW7RJLtef3pfltVpp0Uvs5uCpiXql_ncdKDn2In7vM,6174
|
|
19
19
|
pex/environment.py,sha256=NBfoWjCfdqcHYMJixTItDm_dGymOVJrzws0BoV4oeow,36472
|
|
@@ -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=8oRtFmlzjwvtnXVhXpfZmFI6ZE31rHRcKVwuad2NqgQ,80889
|
|
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=x2RLYYRSBlkb2zIv0Y1u4G6v9RaEW813uC4onipyMiY,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
|
|
@@ -95,9 +95,9 @@ pex/cli/commands/__init__.py,sha256=-Fyj3MBVt0FcsvtAago3E_YYTDte9Cv_PIfw50OnarU,
|
|
|
95
95
|
pex/cli/commands/cache_aware.py,sha256=MkR7bypyDyZwRxESJJ6I4wd3zeNJl2gTaB9pg5AEyr8,4009
|
|
96
96
|
pex/cli/commands/docs.py,sha256=z4KWsTlVZqOda-RrxfMn34JwLtmSHTBFh-w7AuG45KE,2615
|
|
97
97
|
pex/cli/commands/interpreter.py,sha256=grgIqFkWlv5c1Bf38CgdXRJ0IqsvKrn_OxQFIbejsQY,7684
|
|
98
|
-
pex/cli/commands/lock.py,sha256=
|
|
98
|
+
pex/cli/commands/lock.py,sha256=F06kI8TaLhK0wEdVEBsngZv9gBU1C-T_xkDHDUfSDb4,102413
|
|
99
99
|
pex/cli/commands/run.py,sha256=gWkuaxPFnGqFi-kr7ROkBG-YvSddWbj0UtKRk9QzcEU,34997
|
|
100
|
-
pex/cli/commands/venv.py,sha256=
|
|
100
|
+
pex/cli/commands/venv.py,sha256=8yDDMT61dgUuBH84whLingNobjSeTAzhe61W6VZCqDA,20705
|
|
101
101
|
pex/cli/commands/cache/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
102
102
|
pex/cli/commands/cache/bytes.py,sha256=2bnNpwLYTUvVf2q_g9jqi-0ORbOFs_csYmCTEG3IQhM,3952
|
|
103
103
|
pex/cli/commands/cache/command.py,sha256=92mmobaEfEjPAFhL_s6Opb9YniEopJN-llJ0yDKcc2k,26957
|
|
@@ -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=Cxged78UiP7Ks2KnrQItfIAViO01l4SFn20g-Pq07-0,57407
|
|
117
|
+
pex/docs/html/genindex.html,sha256=InKzRE6JoQOCZ3pbR2uWKcaaOISbRW8zMEAfGuoN0Ts,17198
|
|
118
|
+
pex/docs/html/index.html,sha256=bC7CZ_GrPaGFBjNB560_sEQhEss6NtZ39oIitx3uXt4,25028
|
|
119
|
+
pex/docs/html/recipes.html,sha256=-lfqlK6G5V6njtq_vI4l0ufsbuvgSm74w0nPVg36D08,35192
|
|
120
|
+
pex/docs/html/scie.html,sha256=mVy5u2dD6OUOvltrlA2GNtQtBKwPe6iIjue9GUhPo2E,62182
|
|
121
|
+
pex/docs/html/search.html,sha256=gvRcpQFNYmGjr224wdfQ5Rc-S-a9D7wjfc11ZXMAbwY,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=ychscZyowQSP48HR-jYE-G9L1UhB_22HGmrke0vah1o,22754
|
|
124
|
+
pex/docs/html/_pagefind/pagefind-entry.json,sha256=Zo1FLKXLyypBefPsL0tf1leHxk6LdqN6MCkaPw7BoJk,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_86ab41ad5d.pf_meta,sha256=xZhQRrwMgkDpv7SPWcoLWeRwkFIQdrCSWKuLEEyqNcg,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_3046a3a.pf_fragment,sha256=2vPjNKP-3slj7ZhkY0Z5-MYMMbbfQ9-j9thh9TrLKYE,4848
|
|
135
|
+
pex/docs/html/_pagefind/fragment/en_3f5cca9.pf_fragment,sha256=mTWRc7SCG4eOdQFsZc8XFa0auBSE5R8zGcIPKqS1diM,1158
|
|
136
|
+
pex/docs/html/_pagefind/fragment/en_5f2da5c.pf_fragment,sha256=FMJ4ArJSI4wNq-LJSN5qdwHDR1hoaaiFsmIAFuHH7O8,3018
|
|
137
|
+
pex/docs/html/_pagefind/fragment/en_7350892.pf_fragment,sha256=V3M4IbpNEdFOOTqiMhE3Vv08UH5NBmspn9qsGjkZ3mI,3648
|
|
138
|
+
pex/docs/html/_pagefind/fragment/en_ac9b982.pf_fragment,sha256=Y5WiPKS97hppWWqmP7X7kwsR2pBlXA4P1mQl6HfV0oQ,6821
|
|
139
|
+
pex/docs/html/_pagefind/fragment/en_d158da6.pf_fragment,sha256=J9X7V0EnfdXj7LhCtdv9hXsU3B0bghHBuRIbtm4N50s,1142
|
|
140
|
+
pex/docs/html/_pagefind/fragment/en_e575d34.pf_fragment,sha256=GfQsJB_oSHEdP0ctyyunhSjyuXF-zcdUfQM6sWw0ucw,369
|
|
141
|
+
pex/docs/html/_pagefind/fragment/en_fca878d.pf_fragment,sha256=NJYC6CPMUWElMamRFQ7ACyYtwXTqxR6yq3o-3JBDbxY,360
|
|
142
|
+
pex/docs/html/_pagefind/index/en_23c894e.pf_index,sha256=LvjhRHvF77NMWj4iPZrSHLTqUpOcWwnL-1W9R5vPpHY,28865
|
|
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=wfZT6SXDv8Q8v7yrGbQiPB2Q5shfMhhH5gfcBpzSims,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=ynIRKfgeNTN6lTyv1epwK45cUJX_GMtYae0VNyK13oo,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
|
|
@@ -182,8 +182,8 @@ pex/pip/installation.py,sha256=CFykX2FEPygqO0jxMzPG-rvd2Eos8YJ2cviyMsOUayU,21301
|
|
|
182
182
|
pex/pip/local_project.py,sha256=0HsnUgb0d1XX1TokVogF1xV-pTFNuBLDG-7K2j5VUVI,2040
|
|
183
183
|
pex/pip/log_analyzer.py,sha256=YLecIWrjTBvDZA_OwvQlcR1gf6-rI_eBt_LFZTA2E-U,4362
|
|
184
184
|
pex/pip/tailer.py,sha256=af7yJ1rxvtTltno1BEVgJ6lf1C0PPnCzCs6CWto7Y9s,4445
|
|
185
|
-
pex/pip/tool.py,sha256
|
|
186
|
-
pex/pip/vcs.py,sha256=
|
|
185
|
+
pex/pip/tool.py,sha256=-D0YanfpDn1ftHFE5fqgUIFO16Wn0rzfB5vQKN3WDCg,37897
|
|
186
|
+
pex/pip/vcs.py,sha256=6Kd_luDU3yfpqMYYQdlmskZpuldssrWGlsl1Tj7fdqE,4520
|
|
187
187
|
pex/pip/version.py,sha256=oXScGU_Z18c-uzAr67f0U3NsxDXFEQ_FK-0Bnbn8YXs,12644
|
|
188
188
|
pex/pip/dependencies/__init__.py,sha256=Hwrin59pqb2QPU4ysCPUhqzfsE1PHx56a-ED39eEV0Q,5126
|
|
189
189
|
pex/pip/dependencies/requires.py,sha256=OHEsklGHs05Ew5E-hb9q_lQ7ijHByNN_YRTlvy-iuiU,5419
|
|
@@ -202,10 +202,10 @@ pex/resolve/config.py,sha256=2urR5rvh6pY8tZzUfRdUVGYrAY1iXURp_N4lrnXIdJA,3362
|
|
|
202
202
|
pex/resolve/configured_resolve.py,sha256=jd-lVJjXXtNlEbTlfaRpprETcDAywrpmm2Hpu0-T9ns,9617
|
|
203
203
|
pex/resolve/configured_resolver.py,sha256=MRzp1hVHl7ooKHEhESN7oxMd5fOpxuXOGYiUXZe0Yww,3457
|
|
204
204
|
pex/resolve/downloads.py,sha256=8R4GI-PSSLw2qv6XKsGyDFEiugfJgw2G6F4lywtU_Xk,7074
|
|
205
|
-
pex/resolve/lock_downloader.py,sha256=
|
|
205
|
+
pex/resolve/lock_downloader.py,sha256=RbG7bdwxx-k7U1k_Kpipb4Po3bdPhk6Rv5gt7yZrAVw,15347
|
|
206
206
|
pex/resolve/lock_resolver.py,sha256=b6UoqaXPNdWEt1JC8S6HSc4el5ows6kmIa5T87OsAm0,23398
|
|
207
|
-
pex/resolve/locked_resolve.py,sha256=
|
|
208
|
-
pex/resolve/locker.py,sha256=
|
|
207
|
+
pex/resolve/locked_resolve.py,sha256=h47WC84zHgE1H3kf9OahfSa_df0fEfxtIWeLX7stK50,40672
|
|
208
|
+
pex/resolve/locker.py,sha256=DkosoUlPG-fPYYuYcHtG1H-6EyM1jfXvaiRA7JlDyPg,29667
|
|
209
209
|
pex/resolve/locker_patches.py,sha256=KttN07cCok3ajNm5TLzsZhBTPmPDyO33WkDbE4G9TB4,8043
|
|
210
210
|
pex/resolve/package_repository.py,sha256=xMU9aTxojS2sNmWp03jfMBTIGhq3eqNuNOacl8BiiGY,15123
|
|
211
211
|
pex/resolve/path_mappings.py,sha256=d6JVzD0K342ELz3O8AcsaXoikLDF3xYrgbXkixMmf3Q,2073
|
|
@@ -224,7 +224,7 @@ pex/resolve/target_options.py,sha256=6YoXvIWSyTKfkJ3fcEhqu7eDzF-TlUKhSoNlGoLApQI
|
|
|
224
224
|
pex/resolve/target_system.py,sha256=6omSogiX5cYlSGjPrAMQpP5MwhxBu4R8X0Mw6c6Jx_M,29905
|
|
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=MvvmTq03T87Vphye06e9nFzqJcmB8HA5zNPQgQbPqWg,33946
|
|
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
|
|
@@ -233,7 +233,7 @@ pex/resolve/lockfile/requires_dist.py,sha256=ROU8j0Or5Dkqx_Tn9kysQvNaiittLgOj2BO
|
|
|
233
233
|
pex/resolve/lockfile/subset.py,sha256=tbjLsMa9aZ8vSE71uI-23d-rV9G3MrELhqiJuldmfdU,7980
|
|
234
234
|
pex/resolve/lockfile/targets.py,sha256=Dy28viC7yrlzRXgt-4PEVN9fCxqqnTLCpXRSpvm_QKA,17185
|
|
235
235
|
pex/resolve/lockfile/tarjan.py,sha256=Pypa5E78mCY6WdRSDNzXZiYQsde6LvWhiBBOI-K2ia4,5053
|
|
236
|
-
pex/resolve/lockfile/updater.py,sha256=
|
|
236
|
+
pex/resolve/lockfile/updater.py,sha256=EHvJTnX_8SfPAoKbnHFjTG5Fddhn8oXy-WVlvlfi92Y,35684
|
|
237
237
|
pex/resolve/pep_691/__init__.py,sha256=hbVu8HKJGOAmXQlIyMjcEt0EsBK311HumeAwENvHHxY,107
|
|
238
238
|
pex/resolve/pep_691/api.py,sha256=Qjvl6ESniISty6nGiqtXsEX8kR-WGDU2FZzrnsfNq0w,8934
|
|
239
239
|
pex/resolve/pep_691/fingerprint_service.py,sha256=Z7m2efzkETbHxXpn6IjDHjRBr_p2r48txeM1wVwStB8,10387
|
|
@@ -974,7 +974,7 @@ pex/venv/README.md,sha256=VV46mdzh5G_UbMVadxabXitHo7wF7kH-GG0o_GCKCu0,430
|
|
|
974
974
|
pex/venv/__init__.py,sha256=hbVu8HKJGOAmXQlIyMjcEt0EsBK311HumeAwENvHHxY,107
|
|
975
975
|
pex/venv/bin_path.py,sha256=b4g30iLvijfA1_Or0y5seJiOx8BkALlHd7yghJyeJuA,361
|
|
976
976
|
pex/venv/install_scope.py,sha256=cws8l_ujLxViO_6ayspaq-jJjOfjE4rWWcaZPf72Xzw,374
|
|
977
|
-
pex/venv/installer.py,sha256=
|
|
977
|
+
pex/venv/installer.py,sha256=ckY6-vuypGfrHIWC6fVF4TBCD63CMgStnYp4v11n2x4,24537
|
|
978
978
|
pex/venv/installer_configuration.py,sha256=VbK7NdrMhPI6BKclDbcr5NYn_0ia7xtl2AhvMVC7AU4,1101
|
|
979
979
|
pex/venv/installer_options.py,sha256=TS7AaRT_3Io0R2Aaoq1pSjQ0srZ4TFf2NattQpqHFiw,4457
|
|
980
980
|
pex/venv/venv_pex.py,sha256=YaEdGka0fRwU9BNrCkDLL04knpF3fYbMRbKI-zsFFXg,14012
|
|
@@ -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.
|
|
989
|
-
pex-2.
|
|
990
|
-
pex-2.
|
|
991
|
-
pex-2.
|
|
992
|
-
pex-2.
|
|
993
|
-
pex-2.
|
|
994
|
-
pex-2.
|
|
988
|
+
pex-2.64.0.dist-info/METADATA,sha256=ehVFU-F5jx33SUS3JTXSszTqEALQa3C8JxM4mA9YrxU,7476
|
|
989
|
+
pex-2.64.0.dist-info/WHEEL,sha256=JNWh1Fm1UdwIQV075glCn4MVuCRs0sotJIq-J6rbxCU,109
|
|
990
|
+
pex-2.64.0.dist-info/entry_points.txt,sha256=LD9tcxNxdsVLeIF6zR7dyH1vgo2eD9a-05TC1UraGMQ,174
|
|
991
|
+
pex-2.64.0.dist-info/top_level.txt,sha256=HlafJUPu7mfjxv3SDH-RbkxsHOWSVbPXTEBC1hzonpM,4
|
|
992
|
+
pex-2.64.0.dist-info/licenses/LICENSE,sha256=bcDgaNzzpbyOBUIFuFt3IOHUkmW7xkv1FdLPeRl99po,11323
|
|
993
|
+
pex-2.64.0.dist-info/pylock/pylock.toml,sha256=9TIk5X6BqnJ6lKu8eb0EnzwbBcOjs3QJWzcLMYx8M5k,7151
|
|
994
|
+
pex-2.64.0.dist-info/RECORD,,
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
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
|