Cristian Le
Cristian Le
There could be some additional checks and settings that would work better running within CMake, e.g. checking `try_compile` of python bindings. What can or should include in such a module:...
- hotfix for #799 (doesn't need new release, I've already pushed the changes downstream) - reformat the fmf files to look more like yaml - install doc examples in their...
Since `pyproject` is effectively an empty optional-dependency, should it be deprecated and removed eventually? I'm not sure how to query the dependencies on PyPI, but for Fedora there are a...
I was looking at why the hatch plugin isn't able to run as editable, and it seems that it is mostly because these are diverging implementations. I am thinking we...
I've encountered this when trying to write a minimal test setup where I didn't care about placing everything in a proper package, but wanted to write them dirty as modules,...
I am experimenting with building a compiled non-python project within scikit-build-core, and I've encountered an issue if you point the entry-point to a non-pythonic object, i.e.: ```toml [build-system] requires =...
Context: - This came up when working on https://github.com/spglib/spglib/pull/520 - Upstream CMake issue https://gitlab.kitware.com/cmake/cmake/-/issues/26213 --- I am opening to brainstorm some ideas on how to implement. TODO: - [ ]...
This is a quick but rather subtle issue. My CMake list file goes like: ```cmake if (NOT TARGET Spglib::symspg) find_package(Spglib CONFIG) if (NOT Spglib_FOUND) message(STATUS "Using bundled spglib sources") add_subdirectory(${PROJECT_SOURCE_DIR}/.....
I have started to work on https://github.com/spglib/spglib/pull/520, where I redesign the build process to be more compatible with `audit-wheel` and make things simpler overall. The problems that I am trying...