Henry Schreiner

Results 2524 comments of Henry Schreiner

The last statement on the matter was: > I'd say a good time to change the default could be after AmazonLinux 2 EOL (2025-06-30, I think that's most of GLIBC...

> Another option is that in theory we could also build both manylinux2014 and manylinux_2_28 for some time. But I don't know what the exact implications of that would be....

PS: I'm carefully not giving an opinions about the bump date, just pointing out the only opinions I've seen so far are 2025-06-30 and 2025-10-31, etc. I do think it...

I don't think this would be a good idea. It would both break existing workflows, be very surprising on Windows to have bash syntax, and likely would cause a lot...

Also, if bash was pip installable, it would probably be built by cibuildwheel, and we'd cause chicken-egg problems for every new platform that comes out. I'm strongly in favor of...

You have to make a PR to SchemaStore. Not sure how easy that would be to automate. But it's a good idea to do it around release time if the...

This is just `subprocess.run` with `shell=True`. Python respects the `$SHELL` environment variable on Posix. Generally, this is whatever you are running on macOS. On Linux, since it runs in the...

You can do that today. Use ```toml before-build = [ """python -c 'import shutil; shutil.rm("{package}/bin")'""", ] ``` Same for bash, etc. Better yet, stick the contents in a file, stick...

(Not disagreeing with better docs, btw)

You are missing https://github.com/pybind/cmake_example/blob/62fe6fcc27824ba6fc4492a624a502aa3d82ed4e/setup.py#L99-L103. It won’t work if you don’t tell CMake what you are trying to do. I’d highly recommend scikit-build-core over trying to hack setuptools, which is fragile.