Skip to content

Commit

Permalink
Fix "exact" property for merged conda dependencies.
Browse files Browse the repository at this point in the history
This was broken with there initial commit as part of #3391.
  • Loading branch information
jmchilton committed Jan 13, 2017
1 parent ec42500 commit 537d6e6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/galaxy/tools/deps/resolvers/conda.py
Expand Up @@ -153,7 +153,7 @@ def resolve_all(self, requirements, **kwds):
dependency = MergedCondaDependency(
self.conda_context,
self.conda_context.env_path(env),
exact=self.versionless or requirement.version is None,
exact=not self.versionless or requirement.version is None,
name=requirement.name,
version=requirement.version,
preserve_python_environment=preserve_python_environment,
Expand Down

0 comments on commit 537d6e6

Please sign in to comment.