Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ version_file = "src/vmecpp/__about__.py"

[tool.cibuildwheel]
archs = ["native"]
skip = ["pp*", "*-musllinux*"]
skip = ["*-musllinux*"]
build-frontend = "build[uv]" # More modern package manager than pip, with faster builds
test-skip = ["cp314-*", "cp314t-*"] # Skip tests on Python 3.14 until all our dependencies start supporting it. The wheels are still valid, and become installable the moment simsopt releases 3.14 support.
test-requires = "pytest"
Expand All @@ -94,6 +94,9 @@ test-command = "pytest {package}/tests/test_simsopt_compat.py"
[tool.cibuildwheel.linux]
before-build = "yum install -y lapack-devel netcdf-devel hdf5-devel"

[tool.cibuildwheel.macos]
before-build = "brew install gcc lapack netcdf hdf5 libomp"

[tool.coverage.run]
source_pkgs = ["vmecpp", "tests"]
branch = true
Expand Down
Loading