From 0bfb4ec4523793368bcf9e918aca5de1d16da0c0 Mon Sep 17 00:00:00 2001 From: Lawrence Mitchell Date: Wed, 31 Jul 2024 08:01:41 +0000 Subject: [PATCH] Add upper bound pin for polars This aligns the polars dependency with the most modern version supported by cudf-polars in this branch. --- dependencies.yaml | 2 +- python/cudf_polars/pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/dependencies.yaml b/dependencies.yaml index 0fa32404156..aeb030313ed 100644 --- a/dependencies.yaml +++ b/dependencies.yaml @@ -630,7 +630,7 @@ dependencies: common: - output_types: [conda, requirements, pyproject] packages: - - polars>=1.0 + - polars>=1.0,<1.3 run_dask_cudf: common: - output_types: [conda, requirements, pyproject] diff --git a/python/cudf_polars/pyproject.toml b/python/cudf_polars/pyproject.toml index f8a1973bdbf..424c83a5199 100644 --- a/python/cudf_polars/pyproject.toml +++ b/python/cudf_polars/pyproject.toml @@ -20,7 +20,7 @@ license = { text = "Apache 2.0" } requires-python = ">=3.9" dependencies = [ "cudf==24.10.*,>=0.0.0a0", - "polars>=1.0", + "polars>=1.0,<1.3", ] # This list was generated by `rapids-dependency-file-generator`. To make changes, edit ../../dependencies.yaml and run `rapids-dependency-file-generator`. classifiers = [ "Intended Audience :: Developers",