Fix tantivy-py version

- The release version specified here doesn't work (errors out during pip install)
- tantivy-py 0.20.1 worked fine upon direct install with the latest versions of pip/wheel in py311
This commit is contained in:
Prashanth Rao
2023-10-02 17:07:39 -04:00
parent d326146a40
commit 7ca4b757ce

View File

@@ -6,17 +6,19 @@ to make this available for JS as well.
## Installation
To use full text search, you must install optional dependency tantivy-py:
To use full text search, you must install the dependency `tantivy-py`:
# tantivy 0.19.2
pip install tantivy@git+https://github.com/quickwit-oss/tantivy-py#164adc87e1a033117001cf70e38c82a53014d985
# tantivy 0.20.1
```sh
pip install tantivy==0.20.1
```
## Quickstart
Assume:
1. `table` is a LanceDB Table
2. `text` is the name of the Table column that we want to index
2. `text` is the name of the `Table` column that we want to index
For example,