Skip to content
Open
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
15 changes: 10 additions & 5 deletions .github/workflows/build-test-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,14 @@ on:

jobs:
cxx-build-workflow:
uses: InsightSoftwareConsortium/ITKRemoteModuleBuildTestPackageAction/.github/workflows/build-test-cxx.yml@v5.4.2
uses: InsightSoftwareConsortium/ITKRemoteModuleBuildTestPackageAction/.github/workflows/build-test-cxx.yml@v5.4.6
with:
apt-packages: 'libopenslide-dev'
brew-packages: 'openslide'
os-list: '["ubuntu-22.04", "macos-15-intel", "macos-15"]'

python-build-workflow:
uses: InsightSoftwareConsortium/ITKRemoteModuleBuildTestPackageAction/.github/workflows/build-test-package-python.yml@v5.4.2
secrets:
pypi_password: ${{ secrets.pypi_password }}
# Python wheel builds are disabled because OpenSlide is an external C
# library that is not available in the manylinux Docker containers or
# the Windows wheel-build environment. Re-enable when the Python
# workflow gains apt-packages / brew-packages support or the module
# bundles its own OpenSlide build.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ classifiers = [
"Topic :: Scientific/Engineering :: Medical Science Apps.",
"Topic :: Software Development :: Libraries",
]
requires-python = ">=3.9"
requires-python = ">=3.10"
dependencies = [
"itk == 5.4.*",
]
Expand Down
7 changes: 2 additions & 5 deletions src/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,6 @@ set(IOOpenSlide_SRCS
itkOpenSlideImageIO.cxx
)

include_directories(${OPENSLIDE_INCLUDE_DIRS})

add_library(IOOpenSlide ${IOOpenSlide_SRCS})
itk_module_add_library(IOOpenSlide ${IOOpenSlide_SRCS})
target_include_directories(IOOpenSlide PRIVATE ${OPENSLIDE_INCLUDE_DIRS})
target_link_libraries(IOOpenSlide LINK_PRIVATE ${OPENSLIDE_LIBRARIES})
itk_module_link_dependencies()
itk_module_target(IOOpenSlide)
Loading