Henry Schreiner

Results 2521 comments of Henry Schreiner

Here's the error: ``` 2024-03-26T20:56:28,802 509/671 Test #516: RunCMake.if .................................................***Failed 2.11 sec 2024-03-26T20:56:28,803 -- InvalidArgument1 - PASSED 2024-03-26T20:56:28,804 -- exists - PASSED 2024-03-26T20:56:28,804 CMake Error at /tmp/pip-wheel-hd2khsmi/cmake_12e65ec4982245adaf8aaaa5e1a9257b/CMake-src/Tests/RunCMake/RunCMake.cmake:280 (message): 2024-03-26T20:56:28,805 FilePermissions...

This is working (by virtue of no longer running all the tests by default). 3.29.1 was yanked due to Python 3.7 missing dependency, but 3.29.2 should be out shortly.

Running `-e.` (or even `.`) again is a common way to rebuild binary packages, and it's a lot less convenient if it doesn't actually do anything. I don't think local...

You can use `pipx run build --sdist` to make the SDist, then point cibuildwheel at the SDist - we support building directly from SDist. You can even make the SDist...

Persistent build dir work step 1 1. Source dir This is the first error: ``` CMake Error: The source "/private/var/folders/_8/xtbws09n017fbzdx9dmgnyyr0000gn/T/build-via-sdist-q5x52ag6/cmake-example-0.0.1/CMakeLists.txt" does not match the source "/private/var/folders/_8/xtbws09n017fbzdx9dmgnyyr0000gn/T/build-via-sdist-4wn1l97i/cmake-example-0.0.1/CMakeLists.txt" used to generate cache....

Can't you install `"uv"` then use that? Or even do `shutil.which("uv")`, and then install it if that returns None, otherwise use the external one? Not saying having an installer option,...

patterns plural should be a list, but changing it doesn't fix it. I still get the `_version.pyi` file if I use 3.2.0 (and not with 3.1.x). It seems to be...

I've looked over the diff https://github.com/pylint-dev/pylint/compare/v3.1.1...v3.2.0, and I really don't see what could have changed. `ignored-modules` changed a tiny bit, but otherwise, not much related to this seems to have...

The file is at `src/scikit_build_core/_version.pyi`. If you run on `src/scikit_build_core`, you see the `.pyi` error. You need to install to see the error without `src`. I've noticed I sometimes see...

Ahh, if you just run without installing, you don't have a matching `_version.py` file, that's probably why https://github.com/pylint-dev/pylint/issues/9623#issuecomment-2110548265 passed. If you install (even to any other venv, it still makes...