Skip to content

Commit

Permalink
add_recipe_variant_version: Special case for paraview: +fides => +adios2
Browse files Browse the repository at this point in the history
  • Loading branch information
bernhardkaindl committed Oct 21, 2024
1 parent 4799647 commit 75c1085
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions build_pr_changes.py
Original file line number Diff line number Diff line change
Expand Up @@ -766,6 +766,13 @@ def add_recipe_variant_version(
else:
specs.append(changed_recipe[0])

# Some custom massaging for the conflicting variants in paraview (hope this works)
for spec in specs:
if "+fides" in spec and "+adios2" not in spec:
print("found fides without adios2")
specs.remove(spec)
specs.append(spec.replace("~adios2", "") + "+adios2")

new_variants.clear()
new_versions.clear()
deprecated.clear()
Expand Down

0 comments on commit 75c1085

Please sign in to comment.