chore: upgrade lance, pylance and datafusion (#879)

This commit is contained in:
Lei Xu
2024-01-27 12:31:38 -08:00
committed by Weston Pace
parent 36dbf47d60
commit f2e29eb004
3 changed files with 14 additions and 14 deletions

View File

@@ -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:

View File

@@ -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 = [

View File

@@ -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",