Skip to content

Commit 6610d9c

Browse files
committed
Merge branch 'main' of https://github.com/lancedb/lance into add-avg-loss
Signed-off-by: BubbleCal <bubble-cal@outlook.com>
2 parents 8dbc141 + f85787d commit 6610d9c

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

64 files changed

+2723
-2214
lines changed

.github/workflows/docs-check.yml

+9-4
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ on:
66
pull_request:
77
paths:
88
- docs/**
9+
- python/python/**
910
- .github/workflows/docs-check.yml
1011

1112
env:
@@ -26,7 +27,7 @@ jobs:
2627
- name: Set up Python
2728
uses: actions/setup-python@v5
2829
with:
29-
python-version: "3.11"
30+
python-version: "3.12"
3031
cache: 'pip'
3132
cache-dependency-path: "docs/requirements.txt"
3233
- name: Install dependencies
@@ -35,10 +36,14 @@ jobs:
3536
- name: Build python wheel
3637
uses: ./.github/workflows/build_linux_wheel
3738
- name: Build Python
38-
working-directory: python
39+
working-directory: docs
40+
run: |
41+
python -m pip install $(ls ../python/target/wheels/*.whl)
42+
python -m pip install -r requirements.txt
43+
- name: Run test
44+
working-directory: docs
3945
run: |
40-
python -m pip install $(ls target/wheels/*.whl)
41-
python -m pip install -r ../docs/requirements.txt
46+
make doctest
4247
- name: Build docs
4348
working-directory: docs
4449
run: |

.github/workflows/rust.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -219,7 +219,7 @@ jobs:
219219
runs-on: ubuntu-24.04
220220
strategy:
221221
matrix:
222-
msrv: ["1.80.1"] # This should match up with rust-version in Cargo.toml
222+
msrv: ["1.81.0"] # This should match up with rust-version in Cargo.toml
223223
env:
224224
# Need up-to-date compilers for kernels
225225
CC: clang

.gitignore

+2-1
Original file line numberDiff line numberDiff line change
@@ -92,4 +92,5 @@ target
9292
python/venv
9393
test_data/venv
9494

95-
**/*.profraw
95+
**/*.profraw
96+
*.lance

0 commit comments

Comments
 (0)