From 1c764a625f2d034f107051617421564c00c12fe5 Mon Sep 17 00:00:00 2001 From: Matt McCormick Date: Mon, 10 Sep 2018 22:58:15 -0400 Subject: [PATCH] BUG: Fix setup.py dependencies --- setup.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 9e59747..18ad058 100644 --- a/setup.py +++ b/setup.py @@ -42,8 +42,9 @@ ], license='Apache', keywords='ITK InsightToolkit', - url=r'https://itk.org/', + url=r'https://www.itk.org/', install_requires=[ - r'itk' + r'itk>=5.0b01', + r'vtk=8.1.1' ] )