commit/galaxy-central: Dave Bouvier: Fix for filtering out repository dependencies that are only required when compiling a tool dependency because the precompiled binary was not found or failed to install.
1 new commit in galaxy-central: https://bitbucket.org/galaxy/galaxy-central/commits/cd91ec8f1405/ Changeset: cd91ec8f1405 User: Dave Bouvier Date: 2013-09-10 20:35:06 Summary: Fix for filtering out repository dependencies that are only required when compiling a tool dependency because the precompiled binary was not found or failed to install. Affected #: 1 file diff -r 595c30bc8df5dfd626d78cc4e030ac1910b54f4e -r cd91ec8f14059167cdfda2ab606035c97ead5469 lib/tool_shed/util/repository_dependency_util.py --- a/lib/tool_shed/util/repository_dependency_util.py +++ b/lib/tool_shed/util/repository_dependency_util.py @@ -678,7 +678,7 @@ current_repository_key_rd_dicts = get_updated_changeset_revisions_for_repository_dependencies( trans, current_repository_key_rd_dicts ) for key_rd_dict in current_repository_key_rd_dicts: # Filter out repository dependencies that are required only if compiling the dependent repository's tool dependency. - all_repository_dependencieskey_rd_dict = filter_only_if_compiling_contained_td( key_rd_dict ) + key_rd_dict = filter_only_if_compiling_contained_td( key_rd_dict ) if key_rd_dict: is_circular = False if not in_key_rd_dicts( key_rd_dict, handled_key_rd_dicts ) and not in_key_rd_dicts( key_rd_dict, key_rd_dicts_to_be_processed ): 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