Skip to content

Commit

Permalink
Merge pull request conda-forge#333 from psobolewskiPhD/patch-1
Browse files Browse the repository at this point in the history
Try to fix InvalidVersionSpec error
  • Loading branch information
beckermr authored Oct 12, 2022
2 parents 515d565 + cf540bb commit 3e1afda
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions recipe/gen_patch_json.py
Original file line number Diff line number Diff line change
Expand Up @@ -1505,8 +1505,8 @@ def _gen_new_index_per_key(repodata, subdir, index_key):
if timestamp < 1642529454000: # 2022-01-18
_replace_pin("pillow", "pillow !=7.1.0,!=7.1.1", record.get("depends", []), record)
if timestamp < 1661793597230: # 2022-08-29
_replace_pin("vispy >=0.9.4", "vispy >=0.9.4<0.10", record.get("depends", []), record)
_replace_pin("vispy >=0.6.4", "vispy >=0.6.4<0.10", record.get("depends", []), record)
_replace_pin("vispy >=0.9.4", "vispy >=0.9.4,<0.10", record.get("depends", []), record)
_replace_pin("vispy >=0.6.4", "vispy >=0.6.4,<0.10", record.get("depends", []), record)

# replace =2.7 with ==2.7.* for compatibility with older conda
new_deps = []
Expand Down

0 comments on commit 3e1afda

Please sign in to comment.