Henry Schreiner

Results 2507 comments of Henry Schreiner

The thing that changed recently is that PyPy started using unreleased versions of cffi (and hpy, only for 3.11 though). I think upstream cffi development has nearly frozen since last...

This is on a package without a lock file (yet). Poetry is basically broken out of the box on PyPy, at least if there’s a plugin being used. Poetry doesn’t...

It’s hard to add flags when running pre-commit, like --unsafe-fixes, so it’s handy to run locally sometimes. Unlike flake8, there’s no variations based on what else is installed, so it’s...

The flag is `--no-build-isolation` for pip. Build isolation is not handled by the backend, it's handled by build or pip. Build's flag is `--no-isolation` since it is always building. You...

The environment variable is `PIP_CONSTRAINT`, not `PIP_CONSTRAINTS`. Otherwise that would have worked.

Should we fix the direct usage, then?

This was not the problem. I would recommend instead that `prek` be installed, and `prek` be used to run mypy. That will keep the controlled environment, and be fast, with...

@mhsmith, do you know why this might be falling to load the extension?

The way I handle this in scikit-build-core is that if `abi3` isn't supported, it is ignored instead and a regular build is created. This is true for free-threading, or if...

We don't want to call FindPython if it's already been called with the right components present. Or if the user is using the old PythonInterp/Libs support. So I think the...