Skip to content

Commit 570461b

Browse files
authored
docs: bump pypi example to 0.2.4 (#40)
## Summary - update the PyPI example install instructions to require `lance-context>=0.2.4` - align the example's `pyproject.toml` dependency with the new release ## Testing - Not run (docs/config change only)
1 parent 547700a commit 570461b

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

examples/pypi-basic/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Lance Context PyPI Example
22

3-
This example demonstrates how to install the `lance-context` package from PyPI and work with a context store using the Python API.
3+
This example demonstrates how to install the `lance-context` package (0.2.4 or newer) from PyPI and work with a context store using the Python API.
44

55
## Setup
66

@@ -13,7 +13,7 @@ This example runs directly from the `src/` directory and only installs `lance-co
1313
cd examples/pypi-basic
1414
uv venv
1515
source .venv/bin/activate
16-
uv pip install lance-context
16+
uv pip install "lance-context>=0.2.4"
1717
```
1818

1919
### Using pip
@@ -22,7 +22,7 @@ uv pip install lance-context
2222
cd examples/pypi-basic
2323
python -m venv .venv
2424
source .venv/bin/activate
25-
pip install lance-context
25+
pip install "lance-context>=0.2.4"
2626
```
2727

2828
## Run the demo

examples/pypi-basic/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ version = "0.1.0"
88
description = "Example project demonstrating the lance-context PyPI package."
99
readme = "README.md"
1010
requires-python = ">=3.11"
11-
dependencies = ["lance-context>=0.1.0"]
11+
dependencies = ["lance-context>=0.2.4"]
1212

1313
[project.scripts]
1414
context-demo = "context_example.main:main"

0 commit comments

Comments
 (0)