File tree Expand file tree Collapse file tree
python/python/lance_context Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -32,10 +32,16 @@ jobs:
3232 python-version : ${{ matrix.python-version }}
3333 - name : Setup Rust
3434 uses : actions-rust-lang/setup-rust-toolchain@v1
35+ with :
36+ cache : false
3537 - uses : Swatinem/rust-cache@v2
3638 with :
3739 workspaces : python
3840 cache-targets : false
41+ - name : Install dependencies
42+ run : |
43+ sudo apt update
44+ sudo apt install -y protobuf-compiler
3945 - name : Install uv
4046 uses : astral-sh/setup-uv@v3
4147 - name : Create virtual environment and install dependencies
Original file line number Diff line number Diff line change 3939 with :
4040 workspaces : rust/lance-context
4141 cache-targets : false
42+ - name : Install dependencies
43+ run : |
44+ sudo apt update
45+ sudo apt install -y protobuf-compiler
4246 - name : Build tests
4347 run : cargo test --manifest-path rust/lance-context/Cargo.toml --no-run
4448 - name : Run unit tests
Original file line number Diff line number Diff line change 11from __future__ import annotations
22
3- from ._internal import Context , version as _version
3+ from ._internal import Context
4+ from ._internal import version as _version
45
56__all__ = ["Context" , "__version__" ]
67
You can’t perform that action at this time.
0 commit comments