Henry Schreiner

Results 2513 comments of Henry Schreiner

METADATA 2.2 added the `Dynamic` metadata field. This is not the same as `dynamic` field in the pyproject.toml, which is quite confusing, but importantly different ([`pyproject-metdata`](https://pypi.org/project/pyproject-metadata) got this wrong for...

If you want inplace to work, then you should move the CMake code to build to `src/spiceypy/cyice/CMakeLists.txt`. With an inplace build, you are not installing, so items remain where they...

The above is a jumble of settings that are from multiple ways to do things - you should not use FindPython _and_ FindPythonInterp/Libs! Either you want `PYTHON_*` variables or `Python_*`...

pip 24.1 is out!

The command is slow to respond, it's not downloading anything. On some systems it can be really, really slow. The problem is that this command can hang indefinitely, so we...

It's probably iterating in a random order and the "last" one wins. I'm guessing it's an issue with our filtering of filenames.

We need to refactor this a bit, we are stripping all extensions to make the module list, but we should handle `a.py` and `a.txt` in the same directory. We might...

Dropping the patch I started here: ```diff diff --git a/src/scikit_build_core/build/_pathutil.py b/src/scikit_build_core/build/_pathutil.py index 3bf020e..733d338 100644 --- a/src/scikit_build_core/build/_pathutil.py +++ b/src/scikit_build_core/build/_pathutil.py @@ -1,6 +1,7 @@ from __future__ import annotations import os +import importlib.machinery...

We can list popular mirrors, and eventually start recommending one. #460 makes this easier.

Done in both #461 and fully moved in #476.