Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,9 +66,12 @@ pip install pylance
To install a preview release:

```shell
pip install --pre --extra-index-url https://pypi.fury.io/lancedb/ pylance
pip install --pre --extra-index-url https://pypi.fury.io/lance-format/pylance
```

> [!NOTE]
> For versions prior to 1.0.0-beta.4, you can find them at https://pypi.fury.io/lancedb/pylance

> [!TIP]
> Preview releases are released more often than full releases and contain the
> latest features and bug fixes. They receive the same level of testing as full releases.
Expand Down
2 changes: 1 addition & 1 deletion ci/create_rc_discussion.sh
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ DISCUSSION_BODY="${DISCUSSION_BODY}

#### Python
\`\`\`bash
pip install --pre --extra-index-url https://pypi.fury.io/lancedb/ pylance==${RC_VERSION}
pip install --pre --extra-index-url https://pypi.fury.io/lance-format/pylance==${RC_VERSION}
\`\`\`

#### Java (Maven)
Expand Down
4 changes: 3 additions & 1 deletion docs/src/quickstart/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,13 @@ 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/lancedb/pylance
pip install --pre --extra-index-url https://pypi.fury.io/lance-format/pylance
```

> Note: Preview releases receive the same level of testing as regular releases.

> Note: For versions prior to 1.0.0-beta.4, you can find them at https://pypi.fury.io/lancedb/pylance

## Set Up Your Environment

First, let's import the necessary libraries:
Expand Down
2 changes: 2 additions & 0 deletions python/python/tests/compat/compat_decorator.py
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,8 @@ def last_beta_release():
"pylance",
"--pre",
"--extra-index-url",
"https://pypi.fury.io/lance-format/",
"--extra-index-url",
"https://pypi.fury.io/lancedb/",
],
capture_output=True,
Expand Down
2 changes: 2 additions & 0 deletions python/python/tests/compat/venv_manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,8 @@ def create(self):
"--quiet",
"--pre",
"--extra-index-url",
"https://pypi.fury.io/lance-format/",
"--extra-index-url",
"https://pypi.fury.io/lancedb/",
f"pylance=={self.version}",
"pytest",
Expand Down
Loading