From f2e29eb0041141dabaefc763742cf1357a298e3c Mon Sep 17 00:00:00 2001 From: Lei Xu Date: Sat, 27 Jan 2024 12:31:38 -0800 Subject: [PATCH] chore: upgrade lance, pylance and datafusion (#879) --- .github/workflows/python.yml | 2 +- Cargo.toml | 24 ++++++++++++------------ python/pyproject.toml | 2 +- 3 files changed, 14 insertions(+), 14 deletions(-) diff --git a/.github/workflows/python.yml b/.github/workflows/python.yml index 3c44d525..3a7611cb 100644 --- a/.github/workflows/python.yml +++ b/.github/workflows/python.yml @@ -18,7 +18,7 @@ jobs: timeout-minutes: 30 strategy: matrix: - python-minor-version: [ "8", "9", "10", "11" ] + python-minor-version: [ "8", "11" ] runs-on: "ubuntu-22.04" defaults: run: diff --git a/Cargo.toml b/Cargo.toml index d6615516..a4167223 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -11,19 +11,19 @@ license = "Apache-2.0" repository = "https://github.com/lancedb/lancedb" [workspace.dependencies] -lance = { "version" = "=0.9.9", "features" = ["dynamodb"] } -lance-index = { "version" = "=0.9.9" } -lance-linalg = { "version" = "=0.9.9" } -lance-testing = { "version" = "=0.9.9" } +lance = { "version" = "=0.9.10", "features" = ["dynamodb"] } +lance-index = { "version" = "=0.9.10" } +lance-linalg = { "version" = "=0.9.10" } +lance-testing = { "version" = "=0.9.10" } # Note that this one does not include pyarrow -arrow = { version = "49.0.0", optional = false } -arrow-array = "49.0" -arrow-data = "49.0" -arrow-ipc = "49.0" -arrow-ord = "49.0" -arrow-schema = "49.0" -arrow-arith = "49.0" -arrow-cast = "49.0" +arrow = { version = "50.0", optional = false } +arrow-array = "50.0" +arrow-data = "50.0" +arrow-ipc = "50.0" +arrow-ord = "50.0" +arrow-schema = "50.0" +arrow-arith = "50.0" +arrow-cast = "50.0" async-trait = "0" chrono = "0.4.23" half = { "version" = "=2.3.1", default-features = false, features = [ diff --git a/python/pyproject.toml b/python/pyproject.toml index c8f5c37d..ac2ea34d 100644 --- a/python/pyproject.toml +++ b/python/pyproject.toml @@ -3,7 +3,7 @@ name = "lancedb" version = "0.5.1" dependencies = [ "deprecation", - "pylance==0.9.9", + "pylance==0.9.10", "ratelimiter~=1.0", "retry>=0.9.2", "tqdm>=4.27.0",