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: 5 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,11 @@ install.strip = false
wheel.packages = ["src/pystack"]
wheel.install-dir = "pystack"
wheel.exclude = ["pystack/_pystack/**"]
# Build against the CPython Limited API / stable ABI so that CPython >= 3.12
# non-free-threaded builds produce a single cp312-abi3 wheel. scikit-build-core
# automatically ignores this for older Pythons (< 3.12) and for free-threaded
# interpreters, which continue to produce version-specific wheels.
wheel.py-api = "cp312"
metadata.version.provider = "scikit_build_core.metadata.regex"
metadata.version.input = "src/pystack/_version.py"
sdist.include = ["src/pystack/_version.py"]
Expand Down
Loading