You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
p.logger.Warn("Unable to detect the dependency versions from `environment.yml` as those versions are not pinned. Use `conda env export` to pin versions.")
63
+
})
64
+
}
65
+
return types.Library{
66
+
Name: name,
67
+
Version: ver,
68
+
Locations: types.Locations{
69
+
{
70
+
StartLine: dep.Line,
71
+
EndLine: dep.Line,
72
+
},
73
+
},
74
+
}
75
+
}
76
+
77
+
// parseDependency parses the dependency line and returns the name and the pinned version.
78
+
// The version range is not supported. It parses only the pinned version.
0 commit comments