From 753cdd50c117c0761ecaf3bcfcb0a77a89426275 Mon Sep 17 00:00:00 2001 From: Matt McCormick Date: Sun, 28 Jul 2019 20:30:45 -0400 Subject: [PATCH] BUG: Require ITK 5.0.1 for the Python package build ITK 5.0.1 includes: https://github.com/InsightSoftwareConsortium/ITK/commit/65b41367d468a545d21c52c3f95bd684e911931e from Dr. Hernandez-Cerdan. --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index d45a589..8809192 100644 --- a/setup.py +++ b/setup.py @@ -44,6 +44,6 @@ keywords='ITK InsightToolkit', url=r'https://itk.org/', install_requires=[ - r'itk>=5.0.0.post1' + r'itk>=5.0.1' ] )