Skip to content

Commit

Permalink
Update pyarrow deps
Browse files Browse the repository at this point in the history
  • Loading branch information
galipremsagar committed Nov 6, 2024
1 parent ac5b3ed commit 2d60ca2
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion conda/environments/all_cuda-118_arch-x86_64.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ dependencies:
- polars>=1.11,<1.13
- pre-commit
- ptxcompiler
- pyarrow>=14.0.0,<18.0.0a0
- pyarrow>=14.0.0,<19.0.0a0
- pydata-sphinx-theme!=0.14.2
- pytest-benchmark
- pytest-cases>=3.8.2
Expand Down
2 changes: 1 addition & 1 deletion conda/environments/all_cuda-125_arch-x86_64.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ dependencies:
- pandoc
- polars>=1.11,<1.13
- pre-commit
- pyarrow>=14.0.0,<18.0.0a0
- pyarrow>=14.0.0,<19.0.0a0
- pydata-sphinx-theme!=0.14.2
- pynvjitlink>=0.0.0a0
- pytest-benchmark
Expand Down
6 changes: 3 additions & 3 deletions dependencies.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -441,16 +441,16 @@ dependencies:
common:
- output_types: [conda]
packages:
- pyarrow>=14.0.0,<18.0.0a0
- pyarrow>=14.0.0,<19.0.0a0
- output_types: [requirements, pyproject]
packages:
# pyarrow 17.0.0 wheels have a subtle issue around threading that
# can cause segmentation faults around imports on arm. It appears to
# be highly dependent on the exact build configuration, so we'll just
# avoid 17.0.0 for now unless we observe similar issues in future
# releases as well.
- pyarrow>=14.0.0,<18.0.0a0; platform_machine=='x86_64'
- pyarrow>=14.0.0,<18.0.0a0,!=17.0.0; platform_machine=='aarch64'
- pyarrow>=14.0.0,<19.0.0a0; platform_machine=='x86_64'
- pyarrow>=14.0.0,<19.0.0a0,!=17.0.0; platform_machine=='aarch64'
cuda_version:
specific:
- output_types: conda
Expand Down
4 changes: 2 additions & 2 deletions python/cudf/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ dependencies = [
"packaging",
"pandas>=2.0,<2.2.4dev0",
"ptxcompiler",
"pyarrow>=14.0.0,<18.0.0a0,!=17.0.0; platform_machine=='aarch64'",
"pyarrow>=14.0.0,<18.0.0a0; platform_machine=='x86_64'",
"pyarrow>=14.0.0,<19.0.0a0,!=17.0.0; platform_machine=='aarch64'",
"pyarrow>=14.0.0,<19.0.0a0; platform_machine=='x86_64'",
"pylibcudf==24.12.*,>=0.0.0a0",
"rich",
"rmm==24.12.*,>=0.0.0a0",
Expand Down
4 changes: 2 additions & 2 deletions python/pylibcudf/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ dependencies = [
"libcudf==24.12.*,>=0.0.0a0",
"nvtx>=0.2.1",
"packaging",
"pyarrow>=14.0.0,<18.0.0a0,!=17.0.0; platform_machine=='aarch64'",
"pyarrow>=14.0.0,<18.0.0a0; platform_machine=='x86_64'",
"pyarrow>=14.0.0,<19.0.0a0,!=17.0.0; platform_machine=='aarch64'",
"pyarrow>=14.0.0,<19.0.0a0; platform_machine=='x86_64'",
"rmm==24.12.*,>=0.0.0a0",
"typing_extensions>=4.0.0",
] # This list was generated by `rapids-dependency-file-generator`. To make changes, edit ../../dependencies.yaml and run `rapids-dependency-file-generator`.
Expand Down

0 comments on commit 2d60ca2

Please sign in to comment.