From 7ca4b757ce2d56a17c0f1fa53df2bafcf5e45dc5 Mon Sep 17 00:00:00 2001 From: Prashanth Rao <35005448+prrao87@users.noreply.github.com> Date: Mon, 2 Oct 2023 17:07:39 -0400 Subject: [PATCH] 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 --- docs/src/fts.md | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/docs/src/fts.md b/docs/src/fts.md index 58dea5d7..dafcb055 100644 --- a/docs/src/fts.md +++ b/docs/src/fts.md @@ -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,