Skip to content

Commit

Permalink
Add comment on why libarrow packages are on host and not on run
Browse files Browse the repository at this point in the history
  • Loading branch information
raulcd committed Mar 11, 2024
1 parent 17db9df commit 7f62f77
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions recipe/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -669,6 +669,12 @@ outputs:
- cmake
- ninja
host:
# We add all libarrow package dependencies on host in order to build pyarrow
# once with all capabilities. We require the exact hash versions but we don't
# want those to be installed when running for pyarrow-core as we want a
# low memory footprint for the pyarrow-core package.
# We cannot use them on build as we want the exact hash version built on the
# recipe to be linked, otherwise we get mismatching package errors.
- {{ pin_subpackage("libarrow", exact=True) }}
- {{ pin_subpackage("libarrow-acero", exact=True) }}
- {{ pin_subpackage("libarrow-dataset", exact=True) }}
Expand Down

0 comments on commit 7f62f77

Please sign in to comment.