Skip to content

Commit

Permalink
Merge pull request #239 from jaimergp/cls-pin-lmp-2
Browse files Browse the repository at this point in the history
Pin `libmambapy<2` in all conda-libmamba-solver builds
  • Loading branch information
cbouss authored Oct 3, 2024
2 parents dc1b715 + c52c2ee commit 399b485
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions main.py
Original file line number Diff line number Diff line change
Expand Up @@ -1390,6 +1390,10 @@ def patch_record_in_place(fn, record, subdir):
if VersionOrder(version) < VersionOrder("24.7.0a0"):
# https://github.com/conda/conda-libmamba-solver/pull/492
replace_dep(depends, "libmambapy >=1.5.6", "libmambapy >=1.5.6,<2.0.0a0")
replace_dep(depends, "libmambapy >=1.5.3", "libmambapy >=1.5.3,<2.0.0a0")
replace_dep(depends, "libmambapy >=1.5.1", "libmambapy >=1.5.1,<2.0.0a0")
replace_dep(depends, "libmambapy >=1.4.1", "libmambapy >=1.4.1,<2.0.0a0")
replace_dep(depends, "libmambapy >=1.0.0", "libmambapy >=1.0.0,<2.0.0a0")
replace_dep(depends, "libmambapy >=0.23", "libmambapy >=0.23,<2.0.0a0")
replace_dep(depends, "libmambapy >=0.22.1", "libmambapy >=0.22.1,<2.0.0a0")

Expand Down

0 comments on commit 399b485

Please sign in to comment.