Skip to content

Commit

Permalink
remove toolchain part
Browse files Browse the repository at this point in the history
  • Loading branch information
truib committed Mar 13, 2024
1 parent 4870c72 commit db003e7
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions eb_hooks.py
Original file line number Diff line number Diff line change
Expand Up @@ -263,17 +263,17 @@ def parse_hook_PyTorch_replace_z3(ec, eprefix):
if ec.name == 'PyTorch' and ec.version in ['2.1.2']:
deps = ec['dependencies']
z3_dep = None
z3_name, z3_version, z3_suffix, z3_toolchain = ('Z3', '4.12.2', '-Python-3.11.3', '-GCCcore-12.3.0')
z3_name, z3_version, z3_suffix = ('Z3', '4.12.2', '-Python-3.11.3')
print_msg("scanning dependencies of %s/%s for %s/%s",
ec.name, ec.version, z3_name, z3_version)
for idx, dep in enumerate(deps):
if dep[0] == z3_name and dep[1] == z3_version:
z3_dep = dep
break
if z3_dep and len(z3_dep) == 2:
deps[idx] = (z3_name, z3_version, z3_suffix, z3_toolchain)
print_msg("replaced dependency %s/%s with %s/%s/%s/%s for %s%s",
z3_name, z3_version, z3_name, z3_version, z3_suffix, z3_toolchain, ec.name, ec.version)
deps[idx] = (z3_name, z3_version, z3_suffix)
print_msg("replaced dependency %s/%s with %s/%s/%s for %s%s",
z3_name, z3_version, z3_name, z3_version, z3_suffix, ec.name, ec.version)


def parse_hook_qt5_check_qtwebengine_disable(ec, eprefix):
Expand Down

0 comments on commit db003e7

Please sign in to comment.