Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ENH: Update CI and Python package for ITK 5.4.0 #63

Merged
merged 5 commits into from
Jun 24, 2024
Merged
Show file tree
Hide file tree
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
16 changes: 10 additions & 6 deletions .github/workflows/build-test-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,10 @@ name: Build, test, package
on: [push,pull_request]

env:
itk-git-tag: "v5.4rc04"
itk-wheel-tag: "v5.4rc04"
itk-python-package-tag: "v5.4rc04"
itk-git-tag: "v5.4.0"
itk-wheel-tag: "v5.4.0"
# v5.4.0 + fixes
itk-python-package-tag: "a52d9b596b4f0da5ddb770ee99851e5c65ca3053"
itk-python-package-org: "InsightSoftwareConsortium"
ctest-options: ""

Expand Down Expand Up @@ -52,7 +53,7 @@ jobs:
- uses: ilammy/setup-nasm@v1

- name: Get specific version of CMake, Ninja
uses: lukka/get-cmake@v3.24.2
uses: lukka/get-cmake@v3.29.6

- name: 'Specific XCode version'
if: matrix.os == 'macos-12'
Expand Down Expand Up @@ -180,6 +181,9 @@ jobs:
steps:
- uses: actions/checkout@v4

- name: Get specific version of CMake, Ninja
uses: lukka/[email protected]

- name: Free Disk Space (Ubuntu)
uses: jlumbroso/[email protected]
with:
Expand Down Expand Up @@ -264,7 +268,7 @@ jobs:
sudo xcode-select -s "/Applications/Xcode_15.0.1.app"

- name: Get specific version of CMake, Ninja
uses: lukka/[email protected].0
uses: lukka/[email protected].6

- uses: shogo82148/actions-setup-perl@v1
- uses: ilammy/setup-nasm@v1
Expand Down Expand Up @@ -330,7 +334,7 @@ jobs:

steps:
- name: Get specific version of CMake, Ninja
uses: lukka/[email protected].0
uses: lukka/[email protected].6

- uses: actions/checkout@v4
with:
Expand Down
8 changes: 4 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "scikit_build_core.build"

[project]
name = "itk-ioomezarrngff"
version = "0.3rc2"
version = "0.3.0"
description = "IO for images stored in the OME-Zarr format."
readme = "README.md"
license = {file = "LICENSE"}
Expand Down Expand Up @@ -44,7 +44,7 @@ classifiers = [
]
requires-python = ">=3.8"
dependencies = [
"itk~=5.4rc4",
"itk == 5.4.*",
]

[project.urls]
Expand All @@ -55,11 +55,11 @@ Homepage = "https://github.com/InsightSoftwareConsortium/ITKIOOMEZarrNGFF"
# 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.29.0"
cmake.version = ">=3.24.0"

# 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``.
cmake.args = []
cmake.args = ["-GNinja"]

# A table of defines to pass to CMake when configuring the project. Additive.
cmake.define = {}
Expand Down
Loading