1 new changeset in galaxy-central: http://bitbucket.org/galaxy/galaxy-central/changeset/a609a7af3fb6/ changeset: a609a7af3fb6 user: kanwei date: 2011-08-24 19:58:48 summary: Grouping tool: use system numpy if provided, otherwise use bundled numpy egg affected #: 1 file (35 bytes) --- a/tools/stats/grouping.py Wed Aug 24 13:14:49 2011 -0400 +++ b/tools/stats/grouping.py Wed Aug 24 13:58:48 2011 -0400 @@ -6,9 +6,12 @@ This tool provides the SQL "group by" functionality. """ import sys, commands, tempfile, random -import pkg_resources -pkg_resources.require( "numpy" ) -import numpy +try: + import numpy +except: + from galaxy import eggs + eggs.require( "numpy" ) + import numpy from itertools import groupby 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.