Skip to content

Commit 0460adf

Browse files
authored
feat: support lance vector search (#83)
* feat: support lance vector search * feat(python): support vector search * ci: install protoc in python lint workflow * ci: install essential-only tools for python link workflow * style: fix python lint errors
1 parent e3e579d commit 0460adf

16 files changed

Lines changed: 6139 additions & 944 deletions

File tree

.github/workflows/python-test.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -78,12 +78,13 @@ jobs:
7878
python-version: "3.11"
7979
- name: Install uv
8080
uses: astral-sh/setup-uv@v3
81-
- name: Install dependencies
81+
- name: Install linting tools
8282
working-directory: python
8383
run: |
8484
uv venv
8585
source .venv/bin/activate
86-
uv pip install -e .[dev]
86+
# Install only linting tools without building the Rust extension
87+
uv pip install ruff pyright
8788
- name: Run ruff format check
8889
working-directory: python
8990
run: |

0 commit comments

Comments
 (0)