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
1 change: 1 addition & 0 deletions include/itkPolyData.h
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@ class ITK_TEMPLATE_EXPORT PolyData : public DataObject

/** Convenient type alias obtained from TMeshTraits template parameter. */
using CoordinateType = typename MeshTraits::CoordinateType;
using CoordRepType = CoordinateType;
using PointIdentifier = typename MeshTraits::PointIdentifier;
using PointType = typename MeshTraits::PointType;
using PointsContainer = typename MeshTraits::PointsContainer;
Expand Down
6 changes: 3 additions & 3 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-meshtopolydata"
version = "0.11.0"
version = "0.11.1"
description = "Convert an ITK Mesh to a simple data structure compatible with vtkPolyData."
readme = "README.rst"
license = {file = "LICENSE"}
Expand Down Expand Up @@ -33,9 +33,9 @@ classifiers = [
"Topic :: Scientific/Engineering :: Medical Science Apps.",
"Topic :: Software Development :: Libraries",
]
requires-python = ">=3.8"
requires-python = ">=3.9"
dependencies = [
"itk-core~=5.4.0",
"itk-core == 5.4.*",
"numpy",
]

Expand Down
Loading