diff --git a/.github/workflows/build-test-package.yml b/.github/workflows/build-test-package.yml index 596086c..f265ba0 100644 --- a/.github/workflows/build-test-package.yml +++ b/.github/workflows/build-test-package.yml @@ -12,9 +12,9 @@ on: jobs: cxx-build-workflow: - uses: InsightSoftwareConsortium/ITKRemoteModuleBuildTestPackageAction/.github/workflows/build-test-cxx.yml@v5.4.4 + uses: InsightSoftwareConsortium/ITKRemoteModuleBuildTestPackageAction/.github/workflows/build-test-cxx.yml@main python-build-workflow: - uses: InsightSoftwareConsortium/ITKRemoteModuleBuildTestPackageAction/.github/workflows/build-test-package-python.yml@v5.4.4 + uses: InsightSoftwareConsortium/ITKRemoteModuleBuildTestPackageAction/.github/workflows/build-test-package-python.yml@main secrets: pypi_password: ${{ secrets.pypi_password }} diff --git a/pyproject.toml b/pyproject.toml index 5aa2364..9fb5907 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,9 +1,10 @@ [build-system] -requires = ["scikit-build-core", "setuptools_scm>=8"] +requires = ["scikit-build-core"] build-backend = "scikit_build_core.build" [project] name = "itk-cuberille" + description = "Cuberille implicit surface polygonization to generate meshes from images." readme = "README.rst" license = {file = "LICENSE"} @@ -13,6 +14,7 @@ authors = [ ] keywords = [ "itk", + "InsightToolkit", ] classifiers = [ "Development Status :: 4 - Beta", @@ -54,7 +56,7 @@ version.provider = "scikit_build_core.metadata.setuptools_scm" # The versions of CMake to allow. If CMake is not present on the system or does # not pass this specifier, it will be downloaded via PyPI if possible. An empty # string will disable this check. -cmake.version = ">=3.16.3" +cmake.version = ">=3.22.1" # A list of args to pass to CMake when configuring the project. Setting this in # config or envvar will override toml. See also ``cmake.define``.