./devel/py-scikit-build-core, Build backend for CMake based projects

[ CVSweb ] [ Homepage ] [ RSS ] [ Required by ] [ Add to tracker ]


Branch: CURRENT, Version: 0.11.1, Package name: py312-scikit-build-core-0.11.1, Maintainer: pkgsrc-users

Scikit-build-core is a build backend for Python that uses CMake to
build extension modules. It has a simple yet powerful static
configuration system in pyproject.toml, and supports almost unlimited
flexibility via CMake. It was initially developed to support the
demanding needs of scientific users, but can build any sort of
package that uses CMake.

Scikit-build-core is a ground-up rewrite of the classic Scikit-build.


Master sites:

Filesize: 267.39 KB

Version history: (Expand)


CVS history: (Expand)


   2025-04-01 11:02:49 by Adam Ciarcinski | Files touched by this commit (2) | Package updated
Log message:
py-scikit-build-core: updated to 0.11.1

Version 0.11.1

This release contains two small fixes for edge case issues.

Fixes:

- Bump pyproject-metadata to handle form feeds on Python < 3.12.8
- Increase timeout on CI

CI and testing:

- Ignore deprecation message from cattrs on Python 3.14 alphas
- Add more integration tests in Fedora
- Restore example builds for Windows/macOS

Internal:

- Remove leftover Python 3.7 checks
- Bump pytest version and include pytest-xdist
- Bump to ruff 0.10, work around bug

Docs:

- Clarify verbosity options
- Fix incorrect configuration example
- Fix incorrect name (`PYBIND11_NEWPYTHON` -> `PYBIND11_FINDPYTHON`)
   2025-03-03 09:43:53 by Adam Ciarcinski | Files touched by this commit (3) | Package updated
Log message:
py-scikit-build-core: updated to 0.11.0

0.11.0

Features:

Update vendored pyproject-metadata (PEP 639 support)
0.11+ default to metadata 2.2
Rework CMake search path settings and add cmake.root
SKBUILD_SABI_VERSION
Support TOML lists in cmake.define
Add new field build.requires
Drop python<=3.7 support
Setuptools plugin: pyproject-toml only config support
Setuptools plugin: error for cmake_install_target

Fixes:

Lock during experimental editable.rebuild
Add known wheels for armv7l
Ignore build-dir automatically
Longer timeout on Windows
path_to_module should handle hidden files (e.g. .clang-tidy) correctly
Timeout checking cmake/ninja

Internal:

Add a format module that is used in the expansion of pyproject.toml
Bump Ruff to 0.8.0
Add citation
Vendor updates

CI and testing:

Correct the function prototype defined in the stub file in simplest_c example
Synchronize with Fedora downstream
Fix RTD builds when last git tag is more than 50 commits behind
Tighten up permissions a bit
tmt tests improvements
Update deployment a bit
Use astral-sh/setup-uv instead
Simpler noxfile
Test on Linux ARM & Python 3.14 alphas
Support for parallel testing

Docs:

sphinx-apidoc changed its mind
Fix Google meet reference to use updated link
Clarify docs for activating stable ABI
Consistently use backticks to reference Python module components
Fix instructions to check if Development.SABIModule was requested
Add some notes and warnings about cross-compilation
Add sphinx-tippy
Correct the order of entry-points and CMake variables
Quickstart updates
Some restructuring
   2024-10-14 08:08:41 by Thomas Klausner | Files touched by this commit (21)
Log message:
i*: clean up after python38 removal
   2024-10-03 10:49:45 by Adam Ciarcinski | Files touched by this commit (2) | Package updated
Log message:
py-scikit-build-core: updated to 0.10.7

Version 0.10.7

This version has three fixes related to advanced usages of overrides.

Fixes:

* Avoid modifying the input dict
* Avoid providing prepare-metadata methods if `failed` in overrides
* Support negative envvar values correctly
   2024-09-15 17:51:54 by Adam Ciarcinski | Files touched by this commit (3) | Package updated
Log message:
py-scikit-build-core: updated to 0.10.6

Version 0.10.6

This version has several fixes; the new `remove` key in 0.10 had a mistake
making it unusable, this has been fixed along with the matching issue in the
tests. Editable installs failed if there was a folder matching an extension
name. Multiplexed paths were not supported for plugins, now they are. The
downstream nox job is also now a bit better.

Fixes:

* Use correct settings key to remove parts of the version in regex metadata plugin
* Support multiplexed path
* Editable subpackage
* Only strip Release and MinSizeRel builds by default
* Typo in debug message

Docs:

* Add build info
* Fix typo in `if.platform-system` example

CI and testing:

* Packit configuration update
   2024-08-03 08:31:42 by Adam Ciarcinski | Files touched by this commit (2) | Package updated
Log message:
py-scikit-build-core: updated to 0.9.10

Version 0.9.10

This release backports a couple of fixes made during work towards 0.10.

Fixes:

- Regression for `'-'` in version name
- Improve version regex to capture typed version attributes
   2024-07-30 05:56:07 by Adam Ciarcinski | Files touched by this commit (2) | Package updated
Log message:
py-scikit-build-core: updated to 0.9.9

Version 0.9.9

This release backports a couple of fixes made during work towards 0.10.

Fixes:

- Regression for `'-'` in version name
- Strip epoch from `SKBUILD_PROJECT_VERSION`
   2024-07-04 13:12:57 by Adam Ciarcinski | Files touched by this commit (2) | Package updated
Log message:
py-scikit-build-core: updated to 0.9.8

Version 0.9.8

This version ships a few more small fixes. Multi-target builds were missing
build arguments due to an exhausted generator. And some packages seem to
hard-code `${CMAKE_INSTALL_PREFIX}` in the `install()` call, which is an
anti-pattern, but we can set that variable too. More tests now run on Python
3.7.

Fixes:

* Empty build arguments for some targets in multi-target build
* Support packages that hardcode `CMAKE_INSTALL_PREFIX` in their `install` commands
* Logger shouldn't warn for missing lib on UNIX

Tests:

* Use `ZipFile` instead of `zipfile.Path` to enable more tests on Python 3.7

Version 0.9.7

This release makes a few small fixes, enabling better Fortran support and
correct tags on MUSL. And releases now have Attestations on GitHub at
<https://github.com/scikit-build/scikit-build-core/attestations>.

Fixes:

* Set `CC` and `CXX` from sysconfig if not set
* `musllinux` tag incorrect
* Logger unconditionally set to `DEBUG` in non-PEP 517 usage

Documentation:

* Fix Fortran example
* Fix typo in skbuild soabi docs
* Fortran and Cython updates