Alex Gaynor

Results 909 comments of Alex Gaynor

The PEP was approved like yesterday, so I don't think anything exists for it.

I guess there's a feature request here for maturin to include an SBOM for all cargo packages?

Filed https://github.com/PyO3/maturin/issues/2554

It's not standardized yet. On Sun, Apr 13, 2025 at 1:06 PM Paul Kehrer ***@***.***> wrote: > Should we be looking at pep725 as well? > > — > Reply...

Hmm, this may in fact be a duplicate of that issue. I'm not sure `environments` does what I want here -- I want to have a lockfile that installs correctly...

Ah, `environments = ["python_version < '3.8'", "python_version >= '3.8'"]` causes it to work though.

This may be a seperate issue, or not an issue at all, but it also seems that markers don't influence version resolution? Compare: ``` ~ ❯❯❯ echo 'argcomplete; python_version >=...

Sorry, I should have written more words. In both of these invocations, `argcomplete` is only for Python 3.8. In one version this is done with `-p 3.8` and in the...

I seem to have found another variant on this -- when you have additional environments: ``` (tempenv-70b9155915899) ~/.v/tempenv-70b9155915899 ❯❯❯ cat uv.toml environments = ["python_version >= '3.10'", "python_version >= '3.8' and...