From 5563b03528007545309fb1559cb99447e5287fe5 Mon Sep 17 00:00:00 2001 From: prrao87 <35005448+prrao87@users.noreply.github.com> Date: Sun, 24 May 2026 14:43:47 -0600 Subject: [PATCH] docs: fix preview pylance install instructions --- docs/src/quickstart/index.md | 21 +++++++++++++++++---- 1 file changed, 17 insertions(+), 4 deletions(-) diff --git a/docs/src/quickstart/index.md b/docs/src/quickstart/index.md index 00daa6a4ee4..606948263c4 100644 --- a/docs/src/quickstart/index.md +++ b/docs/src/quickstart/index.md @@ -19,11 +19,24 @@ pip install pylance For the latest features and bug fixes, you can install the preview version: -```bash -pip install --pre --extra-index-url https://pypi.fury.io/lance-format/pylance -``` +=== "pip" + + ```bash + pip install --pre --extra-index-url https://pypi.fury.io/lance-format/ pylance + ``` + +=== "uv" + + ```bash + uv venv + uv pip install --prerelease allow --index https://pypi.fury.io/lance-format/ pylance + + # To add to pyproject.toml, just do: + uv add --prerelease allow --index https://pypi.fury.io/lance-format/ pylance + ``` -> Note: Preview releases receive the same level of testing as regular releases. +!!! note + Preview releases receive the same level of testing as regular releases. ## Set Up Your Environment