Match master version instead of develop for PARAVIEW_VTK_DIR (#20427)

This commit is contained in:
Ethan Stam 2020-12-16 11:29:35 -07:00 committed by GitHub
parent cb01981628
commit 86f006ffa9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -158,7 +158,7 @@ def url_for_version(self, version):
@property
def paraview_subdir(self):
"""The paraview subdirectory name as paraview-major.minor"""
if self.spec.version == Version('develop'):
if self.spec.version == Version('master'):
return 'paraview-5.9'
else:
return 'paraview-{0}'.format(self.spec.version.up_to(2))