diff --git a/.github/workflows/npm-publish.yml b/.github/workflows/npm-publish.yml index b3672ad0..4272f0bb 100644 --- a/.github/workflows/npm-publish.yml +++ b/.github/workflows/npm-publish.yml @@ -38,7 +38,7 @@ jobs: node/vectordb-*.tgz node-macos: - runs-on: macos-12 + runs-on: macos-13 # Only runs on tags that matches the make-release action if: startsWith(github.ref, 'refs/tags/v') strategy: diff --git a/.github/workflows/python.yml b/.github/workflows/python.yml index 2e32d803..ad3031a2 100644 --- a/.github/workflows/python.yml +++ b/.github/workflows/python.yml @@ -43,7 +43,7 @@ jobs: run: pytest --doctest-modules lancedb mac: timeout-minutes: 30 - runs-on: "macos-12" + runs-on: "macos-13" defaults: run: shell: bash diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index c768337c..0d21cf2e 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -44,7 +44,7 @@ jobs: - name: Run tests run: cargo test --all-features macos: - runs-on: macos-12 + runs-on: macos-13 timeout-minutes: 30 defaults: run: diff --git a/Cargo.toml b/Cargo.toml index 046b3f63..fece2d7c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -5,9 +5,9 @@ exclude = ["python"] resolver = "2" [workspace.dependencies] -lance = { "version" = "=0.8.8", "features" = ["dynamodb"] } -lance-linalg = { "version" = "=0.8.8" } -lance-testing = { "version" = "=0.8.8" } +lance = { "version" = "=0.8.9", "features" = ["dynamodb"] } +lance-linalg = { "version" = "=0.8.9" } +lance-testing = { "version" = "=0.8.9" } # Note that this one does not include pyarrow arrow = { version = "47.0.0", optional = false } arrow-array = "47.0" diff --git a/python/pyproject.toml b/python/pyproject.toml index a31d31fe..223168b6 100644 --- a/python/pyproject.toml +++ b/python/pyproject.toml @@ -3,7 +3,7 @@ name = "lancedb" version = "0.3.2" dependencies = [ "deprecation", - "pylance==0.8.7", + "pylance==0.8.9", "ratelimiter~=1.0", "retry>=0.9.2", "tqdm>=4.1.0",