This version adds auto CMake version discovery, opt-in auto minimum-version, rebuild on failure support, quite a few new override options greatly expanding the static config options for builds, more powerful regexs, and more.
New features:
- Auto CMake version by @henryiii in #804
- Auto minimum-version by @henryiii in #798
- Add
fail
setting to instant-fail build by @henryiii in #824 - Add messages config for failure/success by @henryiii in #825
- New color system for message config by @henryiii in #842
- Add
if.abi-flags
(for free-threaded) by @henryiii in #819 - Adding
if.system-cmake
andif.cmake-wheel
by @henryiii in #826 - Add
if.from-sdist
for overrides by @henryiii in #812 - Add
if.failed
(retry) by @henryiii in #820 - Add
if.scikit-build-version
by @henryiii in #851 - Packages can also be specified via a table by @henryiii in #841
- Move
cmake.targets
andcmake.verbose
tobuild.targets
andbuild.verbose
by @henryiii in #793 - Support multipart regex by @henryiii in #818
- Add
remove=
postprocess to regex by @henryiii in #828
Fixes:
- Warn if cmake/ninja in build system requirements by @henryiii in #803
- Detect manual generator setting for
get_requires_*
by @henryiii in #840 - Support nested and local gitignores by @henryiii in #827
Internal:
- Pull out overrides to separate file by @henryiii in #821
- Nicer error/warning printer by @henryiii in #813
- Speed up CI for format job by @henryiii in #814
Documentation:
- Fix typo in projects list by @jcfr in #797
- Add disclaimer by @henryiii in #805
- Add pointer to itk by @thewtex in #817
- Add projects list by @henryiii in #788
- Examples nox job should use local copy of scikit-build-core by @henryiii in #810
- Expand defs and move schema by @henryiii in #795
- Hide deprecated options in README by @henryiii in #792
- Move overrides to page, expand by @henryiii in #815
- Use modern cmake/ninja version setting in Fortran example by @henryiii in #809
This release backports a couple of fixes made during work towards 0.10.
Fixes:
- Regression for
'-'
in version name by @henryiii in #834 - Improve version regex to capture typed version attributes by @maxbachmann in #816
This release backports a fix made during work towards 0.10.
Fixes:
- Strip epoch from
SKBUILD_PROJECT_VERSION
by @henryiii in #829
Full Changelog: https://github.com/scikit-build/scikit-build-core/compare/v0.9.8...v0.9.9
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 by @junrushao in #784
- Support packages that hardcode
CMAKE_INSTALL_PREFIX
in theirinstall
commands by @henryiii in #786 - Logger shouldn't warn for missing lib on UNIX by @henryiii in #787
Tests:
- Use
ZipFile
instead ofzipfile.Path
to enable more tests on Python 3.7 by @henryiii in #785
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
andCXX
from sysconfig if not set by @henryiii in #782 musllinux
tag incorrect by @henryiii in #773- Logger unconditionally set to
DEBUG
in non-PEP 517 usage by @henryiii in #779
Documentation:
- Fix Fortran example by @henryiii in #771
- Fix typo in skbuild soabi docs by @henryiii in #775
- Fortran and Cython updates by @henryiii in #781
This release provides a fix for the experimental setuptools plugin leaking and affecting other setuptools plugins.
Fixes:
- Improve error message when
metadata.version.provider
not set by @thewtex in #762 - Only inject logic if
cmake_*
keywords present by @kiwifb in #768 - Only replace color tags if the color is defined by @bnavigator in #764
This release fixes building for the Windows variant of free-threaded Python 3.13.
Fixes:
- Support Windows free-threading by @henryiii in #759
- Strip whitespace around generator so that it's passed through correctly by @vyasr in #748
Documentation:
- Note that
-C
options can be prefixed withskbuild.
by @KyleFromNVIDIA in #754
CI and testing:
- Retry pypy if fails by @henryiii in #746
- Disable rpminspect on rawhide by @LecrisUT in #753
- Use uv for minimum version check by @henryiii in #679
This version supports the newly available free-threading variant of Python 3.13b1 (mostly related to skipping the stable ABI). We test this via the manylinux/musllinux images. There's also a new feature requested by third-party packagers; the ability to pass args directly to the build tool
Features:
- Add
build.tool-args
by @henryiii in #733
Fixes:
- Support free-threaded builds of Python 3.13+ on Linux by @henryiii in #741
- Slightly better stable ABI behavior using PyPy by @henryiii in #741
Documentation:
- Fix example of configuration overrides in configuration.md by @wu-vincent in #739
- Update stable ABI instructions by @henryiii in #740
CI and testing:
- Use pylint 3.2, gha reporter by @henryiii in #745
- Some minor improvements to running tests on some systems by @henryiii in #741
This version ensures the Hatchling plugin correctly indicates editable mode is
not yet supported, supports CMAKE_ARGS
that have spaces, and has a bit of
other minor cleanup.
Fixes:
- Properly indicate lack of editable support in Hatch plugin by @ofek in #728
- Don't generate
entrypoints.txt
if none set by @henryiii in #729 - Don't warn if lib not found on UNIX, just debug by @henryiii in #730
- Support
CMAKE_ARGS
that may have spaces inside quotes by @vyasr in #727
Docs:
- Add FAQ entry on repairing wheels by @henryiii in #731
CI and testing:
- Use
macos-13
andmacos-14
explicitly by @henryiii in #724 macos-latest
is changing tomacos-14
ARM runners by @henryiii in #725
Quick fix for quick fix in 0.9.1; if cmake
is a broken script (which can
happen if you pip install outside an environment then enter an environment,
there was an unbound local error instead of ignoring the broken cmake script.
Fixes:
- Unbound local error by @henryiii in #719
Quick fix for Pyodide (WebAssembly) builds.
Fixes:
- Try
--version
if-E capabilities
fails by @henryiii in #717
This version adds the ability to inherit
in override tables, matching a
similar feature added to cibuildwheel 2.17's overrides. You can now write out
extra metadata to ${SKBUILD_METADATA_DIR}
. A new Hatchling plugin is provided
as an experimental feature (will likely be made a separate package in the future
like the setuptools plugin).
The meaning of wheel.exclude
has been changed to match on the wheel path,
rather than the source path. We could not find any projects that would be
affected by this change, so it was not added to the minimum-version protection
policy. This now allows you to ignore CMake outputs as well.
Features:
- Preserve additivity of
cmake.define
acrossoverrides
tables by @stubbiali in #564 - Add metadata dir access by @henryiii in #702
- Experimental hatchling builder by @henryiii and @aryamanjeendgar in #637
- Vendor pyproject-metadata by @henryiii in #703
- Always require pathspec by @henryiii in #711
Fixes:
- Exclude installed files if listed in exclude by @henryiii in #652
- Make
.git_archival.txt
reproducible by @LecrisUT in #706 - Use
cmake -E capabilities
instead ofcmake --version
by @KyleFromNVIDIA in #675 - Ensure many/musl tags not selected by @henryiii in #698
- purelib should set py3 tag if unset by @henryiii in #661
- Validate description for 0.9+ by @henryiii in #709
- Support bools in config settings by @henryiii in #712
API changes:
extra_settings
for SettingsReader by @henryiii in #697GetRequires
args changed by @henryiii in #699- Make
from_file
a little more powerful by @henryiii in #700 - Metadata is part of the build backend by @henryiii in #708
Documentation:
cmakelists.md
WindowsSOABI
suffix variable by @thewtex in #684- Fix hatch init command by @thewtex in #677
- Fix install strip default by @henryiii in #681
- Improve
ninja.make-fallback
description in the README by @thewtex in #676 - Mention printouts by @henryiii in #660
CI and testing:
- Lower
pybind11
test dependency by @LecrisUT in #691 - Some cleanup from uv branch by @henryiii in #686
- Fedora CI maintenance by @LecrisUT in #689
- Small additions by @henryiii in #694
- Some changes from uv job by @henryiii in #693
- Fix setuptools on Python 3.12 by @henryiii in #701
- Fedora: Port downstream PR-49 by @LecrisUT in #678
This version fixes a few small issues related to configuration. The wheel tag is
fixed when wheel.platlib
is False, inplace editable installs ignore
build-dir
, and install-dir
no longer affects the generate path.
Fixes:
- Ensure
wheel.platlib
being false sets<abi>-<platform>
as"none-any"
by @jcfr in #655 - Inplace editable install should ignore
build-dir
by @henryiii in #644 install-dir
shouldn't affect generate path by @henryiii in #654- Expand info printing by @henryiii in #651
Documentation:
- Clarify requirement for using "inplace" editable mode by @jcfr in #643
- Update README to use modern GitHub admonition by @jcfr in #641
- be explicit about what it means to "use SKBUILD_SOABI" by @minrk in #646
This version fixes two small issues with specific situations: if ninja/cmake is present but not executable, and ninja on Windows not respecting the build type.
Fixes:
- Do not exit with exec permission error in ninja check by @thewtex in #626
- Include
CMAKE_BUILD_TYPE
on Windows Ninja by @henryiii in #640 - Use
-
vs_
in error message by @nbelakovski in #638 - Make run command logged at info by @LecrisUT in #639
Documentation:
- Warning about using
cmake.args
for defines by @LecrisUT in #620 - Correct API usage example by @henryiii in #627
This version replaces the cmake
/ninja
minimum-version config option with a
more powerful free-form version field. Scikit-build-core will now respect
CMAKE_EXECUTABLE
for finding CMake. You can override based on the build state,
allowing overrides for editable installs, for example. You can specify a build
tag (AKA build number). And you can define CMake variables from environment
variables.
Features:
- Add
build-tag
by @henryiii in #612 - Add
if.state
to overrides by @henryiii in #600 - Add
cmake.version
andninja.version
by @henryiii in #602 - Support
CMAKE_EXECUTABLE
by @henryiii in #603 - Config to set CMake variables with environment variables by @stubbiali in #565
Fixes:
- Include license file entry in search by @henryiii in #601
- Make sure purelib is indicated by @henryiii in #613
- Project version should always be CMake parsable by @henryiii in #608
Tests and internal:
- Compare uncompressed files by @henryiii in #610
- A couple of minor cleanups by @henryiii in #599
- Some preview Ruff touchups by @henryiii in #617
This is a quick fix for a downstream change in hatch-fancy-pypi-readme that broke our plugin wrapper.
Fixes:
- Patch for change in hatch-fancy-pypi-readme by @henryiii in #593
CI and tests:
- Remove deprecated mypy setting (now defaults on) by @henryiii in #589
- Group dependabot updates by @henryiii in #584
- Use downstream tmt plans by @LecrisUT in #518
Docs:
- Fix a link by @henryiii in #568
Full Changelog: https://github.com/scikit-build/scikit-build-core/compare/v0.7.0...v0.7.1
This release features several large improvements to overrides: a new if.any
group to allow selections based on any item being true, and a new if.env
option for selecting an override based on environment variables. You can now
build pure Python packages with wheel.cmake = false
, perfect for providing a
slower pure Python version of a package on unsupported systems via overrides.
There's also a new inplace
mode for editable installs, which has drawbacks but
feels like the classic "--inplace"
setting in setuptools and can enable some
tooling that would otherwise not support modern editable installs to work. If
you are using Cython to access .pxd
files, modern ("redirect") editable
installs now support that. And to help avoid collisions with a future user
feature, config settings can now be passed with an optional namespace,
skbuild.
, as well.
Features:
- Add inplace mode for editable installs by @henryiii in #553
- Add
wheel.exclude
by @henryiii in #560 - Support cmake-less runs (for overrides) by @henryiii in #550
- Support
if.any
by @henryiii in #548 - Support
if.env
by @henryiii in #549 - Support namespaced config settings (
skbuild.
) by @henryiii in #556
Fixes:
- Correct issue with editable template & add more tests by @henryiii in #552
- Support editable installs of Cython
.pxd
files by @vyasr in #516
CI:
- Fix spelling for Fedora by @henryiii in #559
Docs:
- Add meeting information by @henryiii in #555
- Update intro and mention cmeel by @henryiii in #551
Fixes:
- Editable package imports fix (regression in 0.6.0) by @henryiii in #546
- Filter
CMAKE_ARGS
and debug printout by @henryiii in #543
Docs:
- Fix bad config option name in
configuration.md
by @0xTowel in #530
Tests and internal:
- Add a bit to Ruff config by @henryiii in #544
- Support editable installs in downstream nox check by @henryiii in #533
- Use ruff-format by @henryiii in #536
- Small updates from repo-review by @henryiii in #537
- Refactor and unit test editable install by @henryiii in #545
This release features overrides, a system similar to mypy and cibuildwheel's
overrides, allowing static configuration of special cases, like different
settings per operating system or Python version ranges. It also features
preliminary support for importlib.resources
in editable mode.
Features:
- Adding overrides by @henryiii in #514
- Overrides platform node by @0xTowel in #526
- Support
importlib.resources
in editable installs by @LecrisUT in #399
Fixes:
- Better handling for -G by @henryiii in #483
- Nicer error message when SCM version missing by @henryiii in #528
- (schema) Fix a typo and better metadata support by @henryiii in #522
- (setuptools) Remove
DEBUG
envvar by @henryiii in #527
Tests and internal:
- Use virtualenv instead by @henryiii in #371
- Pre-commit update & a couple of touchups by @henryiii in #519
Docs:
- Clarify verbosity when using
pip
by @LecrisUT in #513 - Build process and faq by @henryiii in #529
Features:
- Add
{build_type}
and{state}
tobuild-dir
by @henryiii in #504 - Include 'python' dir as an auto search path by @henryiii in #499
Fixes:
- Parse CMake version strings containing '-' by @jllllll in #508
- Set NumPy include directory if known by @henryiii in #482
- Adapt for
setuptools_scm
8 writing change by @henryiii in #509 - (setuptools) Support
build_type
set in toml by @henryiii in #498
Tests and internal:
- Nicer nox for docs by @henryiii in #479
- Some extra Ruff checks by @henryiii in #478
- Packit sync by @LecrisUT in #476
Docs:
- Fix template-file with template-path by @Freed-Wu in #485
wheel.py.api
->wheel.py-api
by @njzjz in #488- A single-letter change in Configuration by @wojdyr in #490
- Fix typo in
SKBUILD_CMAKE_DEFINE
env var by @aloisklink in #501 - Typo in Configuration by @elazarcoh in #493
- Update and add discord link by @henryiii in #477
- Add page on cross-compiling by @henryiii in #510
This release sees the addition of a generated schema, which has also been
contributed to SchemaStore, enabling tool.scikit-build
to be understood by
most editors. There's also now a way to enable CMake during the SDist step, a
new regex plugin, and a mechanism to write metadata to a file without having to
depend on the plugin.
Features:
- Add option to run CMake during SDist creation by @henryiii in #454
- Add a schema for validate-pyproject by @henryiii in #447, #450, #455
- Added regex plugin and dynamic-metadata rewrite by @henryiii in #457
- Add configuration option to write metadata to file by @henryiii in #459
Fixes:
- Normalize sdist names by @henryiii in #434
- Report cmake/ninja required if already present by @henryiii in #462
Tests and internal:
- Support Literals in settings by @henryiii in #460
- Clean up some extraneous types by @henryiii in #461
- Use 2x faster black mirror by @henryiii in #456
- Fix Fedora CI by @LecrisUT and @henryiii in #449, #464, #469
- Increase timeout (PyPy slow) by @henryiii in #465
- Cleaner Fedora testing by @LecrisUT in #470
Docs:
- Fix error in config names by @jpn-- in #453
- More generation of docs by @henryiii in #452
- Require Sphinx >= 7 while waiting on Furo by @henryiii in #473
- Require Sphinx < 7.2 while waiting on Setuptools by @henryii in #473
- Fix an import check issue by @LecrisUT in #471
This release focus on two fixes that correct some interference issues with other
setuptools plugins. A few new features were added (opt-in only): the ability to
select build targets, install components, and opt-in --strip
(will be opt-out
in 0.5 if the minimum-version is set to 0.5+ or unset).
Features:
- Add build target support by @henryiii in #432
- Add component support and strip support by @henryiii in #430
Fixes:
- (setuptools) Avoid instantiating build too soon by @henryiii in #443
- (setuptools) Avoid interfering with other setuptools plugins by @henryiii in #414
- Only link to valid module paths (not things like gitignore) in editable installs by @henryiii in #444
Docs:
- Fix typo and invalid Markdown in
getting_started.md
by @0xTowel in #439 - Conf tabs as extension by @henryiii in #433
- Fix
nanobind
/pybind11
src
& sp-dev by @henryiii in #429 - Link to source by @henryiii in #431
- Small suggestions for docs by @rebecca-burwei in #428
Tests and other:
- Fix fedora downstream tests by @LecrisUT in #416
- Ruff moved to astral-sh by @henryiii in #418
target-version
no longer needed by Black or Ruff by @henryiii in #419- Use
get_origin
/get_args
by @henryiii in #423
This version fixes a unused variable message in 0.4.6, along with a debug logging improvement, and a few test fixes, including a regression in the recent noxfile reworking.
- fix: remove
SKBUILD_STATE
unused message when building by @henryiii in #401 - fix: logging environment should use reprs by @henryiii in #409
Tests and CI:
- Support running tests with
NO_COLOR
by @henryiii in #407 noxfile.py
added to mypy, two fixes by @henryiii in #408- Get packages of interest from
pyproject.toml
by @henryiii in #402 - Enable more tests in the spec file by @LecrisUT in #400
This release has one small new feature (access to ${SKBUILD_STATE}
from
CMake), and fixes an issue when adding read-only files on Windows with Python
3.7. Some testing and docs infrastructure updates should make it easier for
downstream packagers to ship scikit-build-core.
Fixes:
- Provide access to current state in CMake by @henryiii in #394
- Support building older versions of
setuptools_scm
by @henryiii in #390 - Workaround for Windows Python 3.7
TemporaryDirectory
bug by @henryiii in #391
Tests:
- Rework testing extras by @henryiii in #395 and #393
- Add
network
marker by @henryiii in #379
CI:
- Add example tests to Fedora packaging by @LecrisUT in #378
- Fedora: Correct rsync rule by @LecrisUT in #389
- Use
not network
for spec by @henryiii in #383
Docs:
- Add migration guide by @vyasr in #356
- Support building the documentation as a man page by @henryiii in #372
- Add nanobind example by @henryiii in #375
- Use
UseSWIG
for swig by @henryiii in #377 - Fix or hide nitpicks by @henryiii in #370
This version fixes issues with output being incorrectly interleaved with logging
messages. Symlinks are now followed when making SDists. And finally,
SKBUILD_SOABI
is now correctly set when cross-compiling on Windows (Warning!
FindPython still does not report the correct SOABI when cross-compiling to ARM).
Fixes:
- Proper printout ordering and more displayed details by @henryiii in #365
- Sort
RUNENV
debugging log output by @jameslamb in #357 - Follow symlinks when making SDists by @henryiii in #362
- Report correct ABI when cross-compiling by @henryiii in #366
Tests:
- Fedora downstream CI by @LecrisUT in #358
- Add downstream examples by @henryiii in #363
- Add testing for scripts processing by @henryiii in #364
This version fixes some issues cross-compiling to Windows ARM when making Limited API / Stable ABI extensions, and supports multiple config generators in editable mode.
- Conditional ABI3 logic fixed by @henryiii in #352
- Set
Python_SABI_LIBRARY
by @henryiii in #352 - Editable installs now support multiconfig generators by @henryiii in #353
This adds support for CPython 3.12.0b1, and improves Stable ABI / Limited API support (supported by an upcoming nanobind for Python 3.12). An editable install fix allows running from any directory.
Fixes:
- Allow CMake to detect if limited API is targeted by @henryiii in #333 and #342
- Make abi3 support conditional on Python version by @henryiii in #344
- Windows path correction for 3.12.0b1 by @henryiii in #346
- Editable path needs to be absolute by @henryiii in #345
Other:
- Add 3.12.0b1 by @henryiii in #341
- Refactor settings by @henryiii in #338
- Document that
CMAKE_ARGS
supports space separators by @henryiii in #339
This is a quick followup to LICENSE file handing to closer match the current draft of PEP 639. It also removes the automatic optional Rich logging, which doesn't work well with Pip's subprocess piping, being cropped to a very narrow width regardless of terminal size.
Fixes:
- Add
License-file
metadata entry & update default by @henryiii in #329 - Drop optional Rich logging/error by @henryiii in #330
Other:
- Update PyPI links by @henryiii in #331
A fix for LICENCE files being placed in the wrong place in the wheel. Now we
follow hatchling's structure of placing them in *.dist-info/licenses
.
Fixes:
- LICENCE files were placed in the wrong place by @henryiii in #325
Other:
- Fix rpm inspect test failures by @LecrisUT in #324
An important fix/feature: LICENSE files were not being included in the wheel's metadata folder. You can configure the license file selection via a new configuration option, and a reasonable default was added. You can now select a source directory for your CMakeLists.txt. A lot of work was done on the still experimental setuptools backend; it still should be seen as completely experimental while it is being finished.
Features:
cmake.source-dir
for CMakeLists in subdirectories by @henryiii in #323- Add
LICENSE
file option by @henryiii in #321
Fixes:
- Ninja wasn't being used if present by @henryiii in #310
- Wheels were not including the
LICENSE
file by @henryiii in #321
Setuptools plugin:
- Refactor plugin as custom setuptools command by @henryiii in #312
- Adding
cmake_args
by @henryiii in #314 - Add wrapper for
skbuild.setup
compat by @henryiii in #315
Other:
- Add rpmlint and smoke tests by @LecrisUT in #313
This version improves WebAssembly support (Pyodide) and fixes a reported bug in the new editable mode.
Fixes:
- Support prefix dir if toolchain has
CMAKE_FIND_ROOT_PATH_MODE_PACKAGE ONLY
by @henryiii in #303 - Find wheel files before local files in editable installs by @henryiii in #305
Other:
- Use PyPI's new trusted publisher deployment by @henryiii in #306
Some small fixes for edge cases. Several docs improvements, too.
Fixes:
- Suppress Unicode errors in scripts dir and move on by @henryiii in #294
- Specify platform properly for non-MSVC Windows by @henryiii in #295
Docs:
- Doc updates by @zerothi in #287
- Add a bit to plugin instructions by @henryiii in #289
- Typos fixed by @afh in #291 and #292
This is a small release fixing a regression in some cases caused by adding
Python_LIBRARY
. This has been reverted on non-Windows platforms, since it is
only needed on Windows.
Fixes:
- Support older setuptools-scm by @henryiii in #284
- Only set the lib for FindPython on Windows by @henryiii in #285
Docs:
- Fix incorrect tool name by @henryiii in #276
- Typo on tab Fortran (was Cython) by @zerothi in #279
- Fix wheel.packages by @henryiii in #282
Other:
- Change Fedora PR targets by @LecrisUT in #273
This version brings two new dynamic metadata plugins (wrappers for
setuptools_scm
& hatch-pypi-fancy-readme
). Third-party packages can now add
entry-points declaring CMAKE_PREFIX_DIR
and CMAKE_MODULE_DIR
entries.
Support has been added for requesting metadata without building. And
experimental support was added for editable installs, including an option for
automatic rebuilds.
Several fixes have been added as well, like SABI support, ARM cross-compiling
support for FindPython, scripts entries now process shebang lines, and setting a
build-dir
with {wheel_tag}
was not working before. The docs have been
started, with a quickstart for common situations, a page on configuration, and
some info on authoring a CMakeLists.
Features:
- Support dynamic metadata by @bennyrowland in #197 and rework by @henryiii in #251
- Support modules/prefix dirs by @henryiii in #255
- Add
get_requires_for_dynamic_metadata
by @henryiii in #235 - Make setuptools wrapper more generic by @henryiii in #225
- Experimental support for editable installs by @henryiii in #212, #268, and #271
Fixes:
- CMake 3.26.0 (exactly) needs the backport too by @henryiii in #238
- Add python library artifact for better Windows cross compiling by @henryiii in #263
- Include 3.26.1 SABI fix by @henryiii in #227
- Restructure
get_requires
& fix some ninja paths by @henryiii in #250 - Support script rewriting by @henryiii in #254
- Version not a string (typing updates) by @henryiii in #231
{wheel_tag}
was not working by @henryiii in #262CMAKE_PREFIX_DIR
andCMAKE_MODULE_DIR
are passed in the init cache file to remove a unused variable warning by @henryiii in #272- Support color printouts without Rich (pip requires
FORCE_COLOR
) by @henryiii in #266
Other things:
- Add Fortran testing and CI by @henryiii in #86
- Avoid internet usage in non-isolated testing by @henryiii in #247
- Add an SDist checker & fix contents by @henryiii in #253
- Add more setuptools types by @henryiii in #233
- Add FedoraProject rpm spec file by @LecrisUT in #201 and #241
- Better coverage handling by @henryiii in #270
This release makes a small improvement to the wheel file permissions (in line
with wheel 0.40). It also ensures the test suite will still pass in an
environment with SOURCE_DATE_EPOCH
already set. A few internal changes are
paving the way to 0.3.0.
Fixes:
- zipinfo should report regular files by @henryiii in #220
Tests:
- Support running in environments with
SOURCE_DATE_EPOCH
set by @LecrisUT in #221 - Report self version too by @henryiii in #222
Other things:
- refactor: use
from_pyproject
by @henryiii and @bennyrowland in #224 - chore: fix a mypy complaint on Windows by @henryiii in #217
- docs: add quickstart by @henryiii in #226
This release fixes the tag for Windows ARM wheels, and has some internal
refactoring to prepare for the next new features. A new {wheel_tag}
value is
available for build-dir
. Some basic setup was done on the docs, as well. Debug
logging and test output has been improved a little, as well.
Changes:
- Add
{wheel_tag}
forbuild-dir
by @henryiii in #207 - Support for conda's
CMAKE_SYSTEM_PROCESSOR
by @henryiii in #207
Fixes:
- Windows ARM tag by @henryiii in #215
- Include Windows ARM in known wheels by @henryiii in #203
- Print out paths by @henryiii in #205
Other things:
- docs: update readme for 3.26 backport by @henryiii in #206
- tests: support running tests with system
cmake3
visible by @LecrisUT in #211 - tests: nicer exit, minor refactors by @henryiii in #213
- refactor: minor changes & nicer environment logging printout by @henryiii in #214
This version adds local build directory support - you can now set build-dir
and reuse build targets. This does not yet default to on, so please test it out.
This can dramatically speed up rebuilds. If you want to mimic setuptools, you
can set this to build/{cache_tag}
. Or you can chose some other directory, like
scikit-build classic's _skbuild
. Along with this, we now have a native wheel
writer implementation and support prepare_metadata_for_build_wheel
.
Scikit-build-core now also contains a backport of FindPython from CMake 3.26, which fixes SOABI on PyPy and supports the Stable ABI / Limited API.
Features:
- Local build directory setting & build reuse by @henryiii in #181
- Add
prepare_metadata_for_build_wheel
by @henryiii in #191 - Native wheel writer implementation by @henryiii in #188
- Use 3.26 dev version port of FindPython by @henryiii in #102
Tests:
- Allow pytest 7.0+ instead of 7.2+ by @henryiii in #200
- Include cmake and ninja if missing in nox by @henryiii in #190
- Simpler pytest-subprocess by @henryiii in #159
Other things:
- chore: Python 3.11 Self usage by @henryiii in #199
- chore: fix Ruff configuration by @henryiii in #186
- chore: minor adjustments to wheel returns by @henryiii in #195
- chore: remove duplicate Ruff code by @burgholzer in #184
Fixes:
- Handle local cmake dir for search by @henryiii in #179
- Avoid resolving cmake/ninja paths by @henryiii in #183
Other things:
- Use Ruff by @henryiii in #175
- Ruff related additions by @henryiii in #180
- Add
isolated
marker totest_pep518_sdist
by @bnavigator in #182
Fixes:
- Ninja path not being set correctly by @henryiii in #166
- Minor touchup to ninja / make by @henryiii in #167
Fixes:
entrypoints.txt
should beentry_points.txt
by @njzjz in #161EXT_SUFFIX
is wrong before 3.8.7 by @henryiii in #160- Make tests pass on native Windows ARM by @henryiii in #157
- Windows ARM experimental cross-compile support by @henryiii in #162
Other things:
- Fix spelling mistake by @maxbachmann in #156
- Add Python 3.12 alpha 3 to the CI by @henryiii in #120
- Fix issues mocking in tests with packaging 22 by @henryiii in #155
Fixes:
- Issue with experimental extra directory targeting by @henryiii in #144
- Sort SDist filepaths for reproducibility by @agoose77 in #153
Features:
- Provide null directory (not installed) by @henryiii in #143
Fixes:
- Fix issue with 32-bit Windows in 0.1.1 by @henryiii in #142
Fixes:
- Windows non-default generators by @henryiii in #137
- Compute the correct default generator for CMake by @henryiii in #139
Testing:
- Support make missing by @henryiii in #140
- Clear
CMAKE_GENERATOR
by @henryiii in #141
First non-prerelease! Scikit-build-core is ready to be used. The remaining
limitations (like support for editable mode and build caching) will be addressed
in future releases. If you set tool.scikit-build.minimum-version = "0.1"
,
scikit-build-core will try to respect old defaults when new versions are
released.
Still preparing for release. One small addition to the error printout.
Features:
- Did you mean? for config-settings and pyproject.toml by @henryiii in #135
Testing:
- Split up isolated and virtualenv fixtures by @henryiii in #134
Preparing for a non-beta release.
Fixes:
- Paths on Windows by @henryiii in #126
- Support pre-set generators by @henryiii in #118
- Warn on scripts with invalid shebangs by @henryiii in #132
- Minimum constraints now set by @henryiii in #129
Refactoring:
- Rename pyproject -> build dir by @henryiii in #121
Testing:
- Add msys2 to the CI by @henryiii in #119
- Add test report header by @henryiii in #124
- Test min constraints without Windows by @henryiii in #129
- Remove pytest-virtualenv by @henryiii in #125 and #131
- Mark unimportant test xfail non-strict for conda-forge by @henryiii in #108
A quick fix for macOS universal2 tags not expanding when enabled.
Fixes:
- Expand macos tags missing by @henryiii in #105
Other things:
- Add tests marker for PEP 518 by @henryiii in #104
- Require C++11 only in tests by @henryiii in #106
- Xfail a non-important test by @henryiii in #107
Full Changelog: https://github.com/scikit-build/scikit-build-core/compare/v0.1.0b1...v0.1.0b2
This release is focused on preparing for conda-forge and some macOS fixes.
Features:
- Configuration setting for FindPython backport by @henryiii in #103
Fixes:
- Conda prefix lib support by @henryiii in #95
- Guess single config for more generators by @henryiii in #101
- Universal2 tags computation was incorrect by @henryiii in #97
- Universal2 tags computation was incorrect again by @henryiii in #100
Refactoring:
- Rename extra color -> rich by @henryiii in #98
Other things:
- Run more tests without the cmake module by @henryiii in #96
- Support running without pytest-virtualenv by @henryiii in #94
This release adds a lot of configuration options, including minimum-version
,
which can be set to 0.0 to ensure defaults remain consistent (similar to
cmake_minimum_required
).
Features:
- Dict options by @henryiii in #78
- Min version setting by @henryiii in #84
- Strict configuration checking by @henryiii in #75
- Support for args/define by @henryiii in #83
- Support for other wheel dirs by @henryiii in #82
- Support specifying a build type by @henryiii in #90
Fixes:
- Better logging by @henryiii in #88
- Better macOS deployment target handling by @henryiii in #74
- Don't touch mtime in non-reproducible mode by @henryiii in #76
- Fallback to ninja sooner if on known platform by @henryiii in #80
Refactoring:
- Rename CMakeConfig -> CMaker by @henryiii in #91
- Drop config prefix by @henryiii in #77
- Rename to
wheel.py-api
and expand, ignore on non-cpython / old cpython by @henryiii in #81
Other things:
- Add cygwin by @henryiii in #89
This release brings a lot of further development. This is starting to be used by downstream projects; it is a good idea to be a little careful with versions still, configuration may change.
Features:
- Allow python packages to be specified by @henryiii in #58
- Autocopy packages if names match by @henryiii in #53
- Include/exclude by @henryiii in #59
- Color status messages for wheel by @henryiii in #60
- Support reproducible sdist builds by @agoose77 in #64
- Prettier logging with config setting by @henryiii in #40
- Add
extra-tags
by @henryiii in #49 - Support for setting python & abi tag (including limited API) by @henryiii in #47
- (setuptools) Use setup keyword support by @henryiii in #42
- (setuptools)
cmake_source_dir
from scikit-build classic by @henryiii in #45
Fixes:
- Avoid copy, avoid failure if pre-existing by @henryiii in #41
- Better support for FindPython by @henryiii in #38
- Fallback to make if available (setting) by @henryiii in #57
- Handle
PermissionError
in readinglibdir.is_dir()
by @agoose77 in #43 - Include
--config
when installing by @henryiii in #61 - Incorrect min version of macOS by @henryiii in #50
- Lists and bool settings by @henryiii in #56
- Mkdir for sdist if missing, test polish by @henryiii in #44
- Simple example PyPy support workaround by @henryiii in #37
Refactoring:
- Tags configuration group by @henryiii in #55
- (setuptools) Use native bdist_wheel setting for abi3 by @henryiii in #52
- Rename
cmake_settings
toskbuild_settings
by @henryiii in #46 - Refactor wheel code a bit to read better by @henryiii in #65
Other things:
- Better logging on macOS for deployment target by @henryiii in #48
- Format cmake files by @henryiii in #54
First experimental snapshot.