Skip to content

Commit

Permalink
BUG remove conditional since these conda's are ancient.
Browse files Browse the repository at this point in the history
  • Loading branch information
beckermr authored Mar 24, 2023
1 parent ff1c587 commit 8756224
Showing 1 changed file with 8 additions and 9 deletions.
17 changes: 8 additions & 9 deletions .ci_support/compute_build_graph.py
Original file line number Diff line number Diff line change
Expand Up @@ -253,15 +253,14 @@ def match_peer_job(target_matchspec, other_m, this_m=None):
match_dict = {'name': other_m.name(),
'version': other_m.version(),
'build': _fix_any(other_m.build_id(), other_m.config), }
if conda_interface.conda_43:
match_dict = conda_interface.Dist(name=match_dict['name'],
dist_name='-'.join((match_dict['name'],
match_dict['version'],
match_dict['build'])),
version=match_dict['version'],
build_string=match_dict['build'],
build_number=int(other_m.build_number() or 0),
channel=None)
match_dict = conda_interface.Dist(name=match_dict['name'],
dist_name='-'.join((match_dict['name'],
match_dict['version'],
match_dict['build'])),
version=match_dict['version'],
build_string=match_dict['build'],
build_number=int(other_m.build_number() or 0),
channel=None)
matchspec_matches = target_matchspec.match(match_dict)

variant_matches = True
Expand Down

0 comments on commit 8756224

Please sign in to comment.