Skip to content

Commit

Permalink
Merge pull request #313 from traversaro/patch-3
Browse files Browse the repository at this point in the history
Use a more strict pinning for foonathan-memory
  • Loading branch information
wolfv authored Sep 2, 2022
2 parents 0d56719 + 1da60df commit cdc1830
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion recipe/gen_patch_json.py
Original file line number Diff line number Diff line change
Expand Up @@ -1782,7 +1782,12 @@ def _gen_new_index_per_key(repodata, subdir, index_key):
for i, dep in enumerate(record["depends"]):
if dep == 'grpcio >=1.46.3':
record["depends"][i] = "grpcio >=1.48.0"


# Different patch versions of foonathan-memory have different library names
# See https://github.com/conda-forge/foonathan-memory-feedstock/pull/7
if has_dep(record, "foonathan-memory") and record.get('timestamp', 0) < 1661242172938:
_pin_stricter(fn, record, "foonathan-memory", "x.x.x")

# The run_exports of antic on macOS were too loose. We add a stricter
# pin on all packages built against antic before this was fixed.
if record_name in ["libeantic", "e-antic"] and subdir.startswith("osx") and record.get("timestamp", 0) <= 1653062891029:
Expand Down

0 comments on commit cdc1830

Please sign in to comment.