Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix python wheel versioning
Browse files Browse the repository at this point in the history
mwestphal committed Dec 28, 2023
1 parent 2369251 commit 420e2ed
Showing 1 changed file with 10 additions and 5 deletions.
15 changes: 10 additions & 5 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -5,7 +5,7 @@ build-backend = "scikit_build_core.build"
[project]
name = "f3d"
requires-python = ">=3.8"
version = "2.2.1"
dynamic = ["version"]
description = "F3D, a fast and minimalist 3D viewer"
readme = "README.md"
license = {text = "BSD 3-Clause License"}
@@ -37,14 +37,19 @@ Changelog = "https://github.com/f3d-app/f3d/blob/master/doc/CHANGELOG.md"

[tool.scikit-build]
minimum-version = "0.4"
cmake.minimum-version = "3.21"
cmake.build-type = "Release"
install.components = ["library", "plugin", "python", "dependencies"]
ninja.minimum-version = "1.10"
metadata.version.provider = "scikit_build_core.metadata.setuptools_scm"
sdist.include = ["_version.py"]
cmake.build-type = "Release"
cmake.minimum-version = "3.21"
ninja.make-fallback = false
wheel.packages = []
ninja.minimum-version = "1.10"
wheel.install-dir = "f3d"
wheel.license-files = ["LICENSE.md", "doc/THIRD_PARTY_LICENSES.md"]
wheel.packages = []

[tool.setuptools_scm]
write_to = "_version.py"

[tool.scikit-build.cmake.define]
CMAKE_OSX_DEPLOYMENT_TARGET = "10.15"

0 comments on commit 420e2ed

Please sign in to comment.