Skip to content
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
3 changes: 3 additions & 0 deletions .github/workflows/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,9 @@ jobs:
- os: macos-14
arch: "arm64"

- os: macos-15-intel
arch: "x86_64"

exclude:
- os: ubuntu-latest
arch: "auto"
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/update-dcmqi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -140,13 +140,16 @@ jobs:
echo 'set(dcmqi_archive_url "https://github.com/QIICR/dcmqi/releases/download/v${version}/${dcmqi_archive_filename}")'
} > dcmqiUrls.cmake

# Update README.md to reference the new dcmqi release version
sed -i "s|dcmqi v${current_version}](https://github.com/QIICR/dcmqi/releases/tag/v${current_version})|dcmqi v${latest_version}](https://github.com/QIICR/dcmqi/releases/tag/v${latest_version})|" README.md

# Configure git and create branch
git config user.name "github-actions[bot]"
git config user.email "github-actions[bot]@users.noreply.github.com"

branch="dcmqi-v${latest_version}"
git checkout -b "$branch"
git add dcmqiUrls.cmake
git add dcmqiUrls.cmake README.md
git commit -m "feat: update dcmqi from version v$current_version to v$latest_version"
git push origin "$branch"

Expand Down
16 changes: 11 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,15 +29,21 @@ placed in the PATH for each of the above mentioned libraries. This launcher is
created during installation by pip, leveraging the `[project.scripts]`
configuration defined in the `pyproject.toml` file.

## Packaged dcmqi version

This package wraps the official
[dcmqi v1.5.3](https://github.com/QIICR/dcmqi/releases/tag/v1.5.3) release.

## Platforms

The following platforms are supported by the binary wheels:

| OS | Arch |
| ------------ | ---------------- |
| Linux Intel | manylinux 64-bit |
| macOS 10.10+ | Intel |
| macOS 11+ | Apple Silicon |
| OS | Arch |
| ----------- | ---------------- |
| Linux Intel | manylinux 64-bit |
| macOS 13+ | Apple Silicon |
| macOS 15+ | Intel |
| Windows | 64-bit |

## License

Expand Down
Loading