Henry Schreiner

Results 2521 comments of Henry Schreiner

And linux: ``` Error: /usr/include/c++/11/bits/hashtable_policy.h:1004:12: required from ‘struct std::__detail::_Insert’ /usr/include/c++/11/bits/hashtable.h:180:11: required from ‘class std::_Hashtable’ /usr/include/c++/11/bits/unordered_map.h:105:18: required from ‘class std::unordered_map’ /tmp/micromamba-20241025-5716-906661/mamba-micromamba-2.0.1/libmamba/include/mamba/util/weakening_map.hpp:26:11: required from ‘class mamba::util::weakening_map’ /tmp/micromamba-20241025-5716-906661/mamba-micromamba-2.0.1/libmamba/include/mamba/specs/channel.hpp:56:40: required from here /usr/include/c++/11/bits/stl_pair.h:218:11: error:...

This is https://github.com/scikit-build/scikit-build-core/pull/1048, which we need to gate behind the version requirement, since it changes behavior.

FYI, there's a template with 10 backend choices (and support for cookiecutter or copier) at https://github.com/scientific-python/cookie; any PEP 621 backend is very similar to scikit-build-core, only minor `tool.` differences. Hatchling...

I’d like to have a machine readable output (json probably), but it can’t (only) be printed, since it is problematic to try to pick it out of stdout. Probably an...

If you had such a machine readable output, then you could process it and produce the digest in your preferred format. No need to make a list of formats.

This is being worked on in https://peps.python.org/pep-0740/. You can already sign artifacts and have GitHub host the attentions, see https://github.com/pypa/build/pull/782 and the examples linked from there (we have not made...

https://github.com/pypa/pip/issues/13222: > IMO "use a proper venv" is the right solution here[1](#user-content-fn-1-5c14a94bb71d08f4b773b0bd7f86b127). Especially if it turns out that it's what `uv` does. But switching to venv is not trivial (as...

Build creates both wheel and SDist by default, so that helps here I think. And tools like cibuildwheel helps making binary wheels (ideally) on CI if it's not pure Python....

[`pypa/build`](https://github.com/pypa/build), that is, ```python pip install build python -m build ``` or ```python pipx run build ``` (Which works on GHA out of the box with no Python setup!) See...