Skip to content

Commit

Permalink
Cutoff lines at 120 chars
Browse files Browse the repository at this point in the history
  • Loading branch information
bwingconda committed Nov 7, 2024
1 parent 8ba4643 commit 21e524a
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions main.py
Original file line number Diff line number Diff line change
Expand Up @@ -1435,13 +1435,17 @@ def patch_record_in_place(fn, record, subdir):
depends.append("async-timeout")

# poppler 24.09.0 incompatibility
if name == "graphviz" and VersionOrder(version) < VersionOrder("2.50.0") or (version == "2.50.0" and build_number < 2):
if (name == "graphviz" and VersionOrder(version) < VersionOrder("2.50.0") or
(version == "2.50.0" and build_number < 2)):
replace_dep(depends, "poppler", "poppler <24.09.0")
if name in ["libgdal", "libgdal-arrow-parquet"] and VersionOrder(version) < VersionOrder("3.6.2") or (version == "3.6.2" and build_number < 7):
if (name in ["libgdal", "libgdal-arrow-parquet"] and VersionOrder(version) < VersionOrder("3.6.2") or
(version == "3.6.2" and build_number < 7)):
replace_dep(depends, "poppler", "poppler <24.09.0")
if name == "python-poppler" and VersionOrder(version) < VersionOrder("0.4.1") or (version == "0.4.1" and build_number < 1):
if (name == "python-poppler" and VersionOrder(version) < VersionOrder("0.4.1") or
(version == "0.4.1" and build_number < 1)):
replace_dep(depends, "poppler", "poppler <24.09.0")
if name == "r-pdftools" and VersionOrder(version) < VersionOrder("3.4.0") or (version == "3.4.0" and build_number < 1):
if (name == "r-pdftools" and VersionOrder(version) < VersionOrder("3.4.0") or
(version == "3.4.0" and build_number < 1)):
replace_dep(depends, "poppler", "poppler <24.09.0")

###########################
Expand Down

0 comments on commit 21e524a

Please sign in to comment.