We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 994bef3 + a07fa79 commit 460f616Copy full SHA for 460f616
nipype/interfaces/freesurfer/base.py
@@ -76,6 +76,9 @@ def looseversion(cls):
76
vstr = "6.0.0-dev" + githash
77
elif vinfo[5][0] == "v":
78
vstr = vinfo[5][1:]
79
+ elif len([1 for val in vinfo[3] if val == '.']) == 2:
80
+ "version string: freesurfer-linux-centos7_x86_64-7.1.0-20200511-813297b"
81
+ vstr = vinfo[3]
82
else:
83
raise RuntimeError("Unknown version string: " + ver)
84
# Retain pre-6.0.0 heuristics
0 commit comments