Skip to content

Commit

Permalink
add zlib as host dep for compiled packages
Browse files Browse the repository at this point in the history
  • Loading branch information
daler committed Dec 22, 2024
1 parent cbded24 commit 98eff96
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions bioconda_utils/bioconductor_skeleton.py
Original file line number Diff line number Diff line change
Expand Up @@ -943,6 +943,11 @@ def sub_placeholders(x):
additional_host_deps.append('libblas')
additional_host_deps.append('liblapack')

# During the BioC 3.20 builds, which also corresponded to updates
# in pinnings, there were quite a few issues where zlib was
# missing.
additional_host_deps.append('zlib')

additional_run_deps = []
if self.is_data_package:
additional_run_deps.append('curl')
Expand Down

0 comments on commit 98eff96

Please sign in to comment.