Skip to content

Commit 9fdeb49

Browse files
Merge branch 'main' into stream-test-compute-matrix-workflow
2 parents ee0f377 + b9da95c commit 9fdeb49

8 files changed

Lines changed: 10 additions & 10 deletions

File tree

conda/environments/all_cuda-129_arch-aarch64.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ dependencies:
6969
- pandoc
7070
- polars>=1.30,<1.39
7171
- pre-commit
72-
- pyarrow>=19.0.0
72+
- pyarrow>=19.0.0,<24
7373
- pydata-sphinx-theme>=0.15.4
7474
- pytest
7575
- pytest-benchmark

conda/environments/all_cuda-129_arch-x86_64.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ dependencies:
6969
- pandoc
7070
- polars>=1.30,<1.39
7171
- pre-commit
72-
- pyarrow>=19.0.0
72+
- pyarrow>=19.0.0,<24
7373
- pydata-sphinx-theme>=0.15.4
7474
- pytest
7575
- pytest-benchmark

conda/environments/all_cuda-131_arch-aarch64.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ dependencies:
6969
- pandoc
7070
- polars>=1.30,<1.39
7171
- pre-commit
72-
- pyarrow>=19.0.0
72+
- pyarrow>=19.0.0,<24
7373
- pydata-sphinx-theme>=0.15.4
7474
- pytest
7575
- pytest-benchmark

conda/environments/all_cuda-131_arch-x86_64.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ dependencies:
6969
- pandoc
7070
- polars>=1.30,<1.39
7171
- pre-commit
72-
- pyarrow>=19.0.0
72+
- pyarrow>=19.0.0,<24
7373
- pydata-sphinx-theme>=0.15.4
7474
- pytest
7575
- pytest-benchmark

dependencies.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -570,10 +570,10 @@ dependencies:
570570
common:
571571
- output_types: [conda]
572572
packages:
573-
- pyarrow>=19.0.0
573+
- pyarrow>=19.0.0,<24 # https://github.com/rapidsai/cudf/issues/22229
574574
- output_types: [requirements, pyproject]
575575
packages:
576-
- pyarrow>=19.0.0
576+
- pyarrow>=19.0.0,<24 # https://github.com/rapidsai/cudf/issues/22229
577577
# 'cuda_version' intentionally does not contain fallback entries... we want
578578
# a loud error if an unsupported 'cuda' value is passed
579579
cuda_version:

python/cudf/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ dependencies = [
3030
"nvtx>=0.2.1",
3131
"packaging",
3232
"pandas>=2.0,<2.4.0",
33-
"pyarrow>=19.0.0",
33+
"pyarrow>=19.0.0,<24",
3434
"pylibcudf==26.6.*,>=0.0.0a0",
3535
"rich",
3636
"rmm==26.6.*,>=0.0.0a0",

python/cudf_polars/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ trace = [
5959
"structlog",
6060
] # This list was generated by `rapids-dependency-file-generator`. To make changes, edit ../../dependencies.yaml and run `rapids-dependency-file-generator`.
6161
rapidsmpf = [
62-
"pyarrow>=19.0.0",
62+
"pyarrow>=19.0.0,<24",
6363
"rapidsmpf==26.6.*,>=0.0.0a0",
6464
] # This list was generated by `rapids-dependency-file-generator`. To make changes, edit ../../dependencies.yaml and run `rapids-dependency-file-generator`.
6565

python/pylibcudf/pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,14 +44,14 @@ test = [
4444
"numba-cuda>=0.22.2,<0.29.0",
4545
"numba>=0.60.0,<0.65.0",
4646
"pandas>=2.0,<2.4.0",
47-
"pyarrow>=19.0.0",
47+
"pyarrow>=19.0.0,<24",
4848
"pytest",
4949
"pytest-cov",
5050
"pytest-xdist",
5151
"xxhash",
5252
] # This list was generated by `rapids-dependency-file-generator`. To make changes, edit ../../dependencies.yaml and run `rapids-dependency-file-generator`.
5353
pyarrow = [
54-
"pyarrow>=19.0.0",
54+
"pyarrow>=19.0.0,<24",
5555
] # This list was generated by `rapids-dependency-file-generator`. To make changes, edit ../../dependencies.yaml and run `rapids-dependency-file-generator`.
5656
numpy = [
5757
"numpy>=1.26,<3.0",

0 commit comments

Comments
 (0)