[hg] galaxy 3576: Fix an eggs bug wherein compatible platform ve...
details: http://www.bx.psu.edu/hg/galaxy/rev/5b793b193cac changeset: 3576:5b793b193cac user: Nate Coraor <nate@bx.psu.edu> date: Mon Mar 29 11:48:05 2010 -0400 description: Fix an eggs bug wherein compatible platform versions would match even when python versions differed diffstat: lib/galaxy/eggs/__init__.py | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diffs (11 lines): diff -r b1165a0614ff -r 5b793b193cac lib/galaxy/eggs/__init__.py --- a/lib/galaxy/eggs/__init__.py Sat Mar 27 14:25:10 2010 -0400 +++ b/lib/galaxy/eggs/__init__.py Mon Mar 29 11:48:05 2010 -0400 @@ -97,6 +97,7 @@ if tmp_dist.platform is not None and \ self.distribution.project_name == tmp_dist.project_name and \ self.distribution.version == tmp_dist.version and \ + self.distribution.py_version == tmp_dist.py_version and \ pkg_resources.compatible_platforms( tmp_dist.platform, pkg_resources.get_platform() ): return file return None
participants (1)
-
Greg Von Kuster