diff --git a/bioconda_utils/hosters.py b/bioconda_utils/hosters.py index 0f61c23be0..1fbb18e20b 100644 --- a/bioconda_utils/hosters.py +++ b/bioconda_utils/hosters.py @@ -406,7 +406,8 @@ async def get_expanded_versions(self, req, orig_version): # we found a match in the expansion result.append({ 'link' : urljoin(url, lp_match["href"]), - 'version' : lp_match['version'] + 'version' : lp_match['version'], + 'vals' : vals }) if match["version"] == self.vals["version"]: @@ -455,7 +456,8 @@ async def get_api_versions(self, req, orig_version): data = re_match.groupdict() matches.append({ 'link' : download_url, - 'version' : data['version'] + 'version' : data['version'], + 'vals' : vals }) # now strip down to the version(s) that are more recent than what currently is in bioconda