enough-analyst-54434
03/17/2021, 1:45 AMhappy-kitchen-89482
03/17/2021, 1:46 AMpython
in that venv doesn't run the venv python but the pyenv shim one. which python
shows me the pyenv shim, even though the venv's bin dir preceeds it on the PATH (as set by the activate
script)happy-kitchen-89482
03/17/2021, 1:46 AMhappy-kitchen-89482
03/17/2021, 1:46 AMhappy-kitchen-89482
03/17/2021, 1:46 AMenough-analyst-54434
03/25/2021, 5:08 PMcold-journalist-66984
03/29/2021, 3:46 PMenough-analyst-54434
03/30/2021, 4:29 PMloud-lizard-41405
03/31/2021, 11:13 PMenough-analyst-54434
04/01/2021, 2:42 AMenough-analyst-54434
04/01/2021, 10:51 PMhappy-kitchen-89482
04/02/2021, 1:01 AMhappy-kitchen-89482
04/02/2021, 1:15 AMhappy-kitchen-89482
06/01/2023, 4:28 PMfast-refrigerator-12613
06/07/2023, 10:20 AMenough-analyst-54434
06/15/2023, 4:00 PMbitter-ability-32190
06/17/2023, 2:13 AMpip
as part of locking, but does it use a new enough pip
with support for PEP 658?
https://discuss.python.org/t/pep-658-is-now-live-on-pypi/26693bitter-ability-32190
06/19/2023, 7:25 PMpex3 lock create
respect ~/.config/pip/pip.conf
? I assume it does by nature of leveraging pip
, but pex3 lock create --no-pypi --no-build -r repository.txt -o repository.lock
is giving me:
ERROR: Could not find a version that satisfies the requirement timeout-decorator==0.5.0 (from -r repository.txt (line 1)) (from versions: none)
ERROR: No matching distribution found for timeout-decorator==0.5.0 (from -r repository.txt (line 1))
bitter-ability-32190
06/20/2023, 6:59 PMtop_level
as your source files, the pex_root installed_wheels
for the local dist pex includes the source files of the "outer" pex.
I'll work on a repro outside of Pantsbitter-ability-32190
06/29/2023, 3:17 PMpip inspect
JSON output)
Do you see this as an extension of pex3 lock create
or a new subcommand pex3 lock pip-report
) I'm thinking in good UNIX style it should be something new and dedicated, that way it can be composed with the other commands if needed.
And for what I can tell the Pex lockfile is just a subset of information in the report, so the code should be dead simple.enough-analyst-54434
07/24/2023, 1:27 AM--pip-version 23.2.1
(https://pip.pypa.io/en/stable/news/#v23-2-1) which only contains a fix for the legacy resolver which Pex disallows use of for Pip >= 23.2
.bitter-ability-32190
07/29/2023, 10:06 PMchilly-magazine-21545
08/01/2023, 4:15 PMchilly-magazine-21545
08/01/2023, 4:19 PMchilly-magazine-21545
08/01/2023, 4:30 PMpex3 cache
command into a discussion: https://github.com/pantsbuild/pex/discussions/2200 after seeing pip's new pip cache
subcommand recently. would love any comments on how people currently manage the size of the pex cachechilly-magazine-21545
08/06/2023, 5:45 PMpip install --report
JSON resolve report metadata, which would halve the time to create lockfiles when making use of some other in-flight pip changes: https://github.com/pantsbuild/pex/issues/2210. need to get more familiar with how pex selects the version of pip to executechilly-magazine-21545
08/06/2023, 6:36 PMfresh-dentist-96982
09/30/2023, 3:58 PMpex.platform
for your local machine?
Like some python code to output the platform string?enough-analyst-54434
10/09/2023, 4:55 AMlively-gpu-26436
11/28/2023, 6:30 PM