Henry Schreiner

Results 2507 comments of Henry Schreiner

Here's the support table for CMake, with darker red for older than 3.15: ![cmake versions](https://repology.org/badge/vertical-allrepos/cmake.svg?columns=3&minversion=3.15.0)

We’ve already made a 2.13 branch, master is 2.14. No rush, but waiting isn’t required. Does save ci time though if the branches are functionally identical. No need to defer...

I can take a look. Would you like to use scikit-build-core? I can probably convert to that.

Where are you putting the license? Currently there are three spots: trove classifiers (which are the canonical location for license information), a free form field that is really designed just...

SciPy is now doing this by `cat $PROJECT_DIR/tools/wheels/LICENSE_linux.txt >> $PROJECT_DIR/LICENSE.txt` inside the cibuldwheel before all script! That's awful and a direct violation of PEP 621, which states the metadata is...

Up to @abravalheri. I'd be okay with it, personally.

Edit: Oops, thought this was on a different issue!

This would also be very nice after the auto-merging feature was removed in v4. Especially if it would merge the directories like listing a specific names does (the "all" feature...

FYI, almost every package I work on (regardless of whether I set it up) uses `[test]` and `[docs]` (both four letters), not `tests`. I've even been looking at possibly helping...

Quick numbers on a somewhat older copy of PyPI indicates `[test]` is over 3x more popular than `[tests]`: ```sqlite select COUNT(DISTINCT name) from deps where extra == 'tests'; ``` |...