Henry Schreiner
Henry Schreiner
> GraalPy is not included in manylinux images Would it make sense to include it? > I couldn't find a way to exclude GraalPy by default Maybe it's time to...
I believe so, as long as it passes auditwheel. It should be fine if it's built with an equal or previous version of the GLIBC kernel. The only issue that...
@joerick would you be okay if we just update to using `-latest` everywhere? We aren't going to remember to update it, users aren't going to remember to update it, and...
Was `pip install ninja` not working? We make universal wheels and I've checked them once in the past. (I also maintain that) Scikit-build-core automatically adds ninja as a dependency only...
> However, I don't know how to test universal2 for both architectures Just don't skip the tests. cibuildwheel will test everything it can. (We've had AS building on CirrusCI for...
Though if you pin an old version, it might not have AS wheels: https://github.com/nightlark/swig-pypi/blob/d7bd8e36f5b50f5e468ed37ba852facd4b001405/pyproject.toml#L10 Again, scikit-build-core does all this for you, also the `py2.py3` tags are just a setting, etc.
Okay, happy as long as it's not an issue with the `ninja` package that I need to fix. :) Yeah, not having pipx is a huge downgrade. > It seems...
Yes, they seem to be doing a staggered rollout of `macos-latest` pointing at `macos-14`, which means Intel jobs are being switched to ARM (and Python 3.10 is the oldest supported...
Keep in mind, that tells you about the Python interpreter you are compiling with if `_PYTHON_HOST_PLATFORM` isn't set. Specifically, `is_universal2` could be true on either x86 or ARM if you...
Here, the interest is in changing paths based on the target, so you'd need special handing for the universal case - there I think you'd have to assume you are...