feat: upgrade lance to 0.23.2 (#2152)

This also changes the pylance pin from `==0.23.2` to `~=0.23.2` which
should allow the pylance dependency to float a little. The pylance
dependency is actually not used for much anymore and so it should be
tolerant of patch changes.
This commit is contained in:
Weston Pace
2025-02-26 09:02:51 -08:00
committed by GitHub
parent c4f99e82e5
commit d6b3ccb37b
4 changed files with 45 additions and 25 deletions

View File

@@ -61,7 +61,12 @@ jobs:
CXX: clang++
steps:
- uses: actions/checkout@v4
# Remote cargo.lock to force a fresh build
# Building without a lock file often requires the latest Rust version since downstream
# dependencies may have updated their minimum Rust version.
- uses: actions-rust-lang/setup-rust-toolchain@v1
with:
toolchain: "stable"
# Remove cargo.lock to force a fresh build
- name: Remove Cargo.lock
run: rm -f Cargo.lock
- uses: rui314/setup-mold@v1