Skip to content

Commit

Permalink
Merge pull request #238 from AnacondaRecipes/basemap_fix
Browse files Browse the repository at this point in the history
Basemap uninstall fix.
  • Loading branch information
ryanskeith authored Aug 23, 2024
2 parents 2e4beda + fe883b2 commit dc1b715
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion main.py
Original file line number Diff line number Diff line change
Expand Up @@ -847,7 +847,8 @@ def patch_record_in_place(fn, record, subdir):

# basemap is incompatible with proj/proj4 >=6
# https://github.com/ContinuumIO/anaconda-issues/issues/11590
if name == "basemap":
# Adding update to constraint to capture data reorg in the project.
if name == "basemap" and VersionOrder(version) < VersionOrder("1.3.0"):
record["constrains"] = ["proj4 <6", "proj <6"]

# 'cryptography' + pyopenssl incompatibility 28 Feb 2023 #
Expand Down

0 comments on commit dc1b715

Please sign in to comment.