commit/galaxy-central: Dave Bouvier: Fix for installing a repository with a complex tool dependency where the dependent repository's tool dependency definition does not define any set_environment actions.
1 new commit in galaxy-central: https://bitbucket.org/galaxy/galaxy-central/commits/a5a6c75e9af7/ Changeset: a5a6c75e9af7 User: Dave Bouvier Date: 2013-07-25 17:37:13 Summary: Fix for installing a repository with a complex tool dependency where the dependent repository's tool dependency definition does not define any set_environment actions. Affected #: 1 file diff -r 8059779d2a6ca853d43c5831fc7cfb70b65d6e55 -r a5a6c75e9af7098b4a4b35b917d49b8cc5abad43 lib/tool_shed/galaxy_install/tool_dependencies/install_util.py --- a/lib/tool_shed/galaxy_install/tool_dependencies/install_util.py +++ b/lib/tool_shed/galaxy_install/tool_dependencies/install_util.py @@ -193,9 +193,9 @@ else: action_dict[ 'environment_variable' ] = env_var_dicts actions.append( ( 'set_environment', action_dict ) ) - return tool_dependency, actions else: raise NotImplementedError( 'Only install version 1.0 is currently supported (i.e., change your tag to be <install version="1.0">).' ) + return tool_dependency, actions return None, actions def install_and_build_package_via_fabric( app, tool_dependency, actions_dict ): Repository URL: https://bitbucket.org/galaxy/galaxy-central/ -- This is a commit notification from bitbucket.org. You are receiving this because you have the service enabled, addressing the recipient of this email.
participants (1)
-
commits-noreply@bitbucket.org