Henry Schreiner

Results 2549 comments of Henry Schreiner

Okay if you want to, but I'm personally not a fan of pinning GHA. The reason is that the underlying images are fluid, and change regularly. Pinning can actually break...

Sounds fine to me, but I don't make decisions here. :) You could try opening a discussion on discuss.python.org; that's useful for larger additions (such as the free-threading set of...

Rebasing should fix the red checks.

#1977 would fix the intermittent failure.

You are right on the floating point edge. ```pycon >>> list(a) [(0.0, 1.0), (1.0, 2.0), (2.0, 3.0), (3.0, 4.0), (4.0, 5.0), (5.0, 6.0), (6.0, 7.000000000000001), (7.000000000000001, 8.0), (8.0, 9.0), (9.0,...

First, I'd have to ask: are you sure you want to change it? The "correct" way is to produce a `linux` wheel, then to give it to `auditwheel`, which will...

What are you trying to target? `manylinux_2_17_x86_64` (`manylinux2014`) or `manylinux_2_5_x86_64` (`manylinux1`)? It looks like you are building a valid `manylinux2014` wheel and trying to repair it down to `manylinux1`. You...

Unless you are running inside a manylinux docker container, how would you deduce a platform? An arbitrary linux machine is not a safe place to build wheels; you should be...

(This does depend on what you are using - if you are not using GLIBC, like with Rust, it becomes much easier, and the docker image isn't as important)