Skip to content

Commit 8089d6c

Browse files
authored
Merge branch 'master' into ps_add_int_vector_serach_tests
2 parents f5aacd8 + cf2341f commit 8089d6c

File tree

3 files changed

+7
-4
lines changed

3 files changed

+7
-4
lines changed

.readthedocs.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,10 @@ version: 2
22

33
python:
44
install:
5-
- requirements: ./docs/requirements.txt
6-
- requirements: requirements.txt
5+
- method: pip
6+
path: .
7+
- method: pip
8+
requirements: ./docs/requirements.txt
79

810
build:
911
os: ubuntu-20.04

doctests/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,11 @@ See https://github.com/redis-stack/redis-stack-website#readme for more details.
1313
## How to test examples
1414

1515
Examples are standalone python scripts, committed to the *doctests* directory. These scripts assume that the
16-
```requirements.txt``` and ```dev_requirements.txt``` from this repository have been installed, as per below.
16+
```doctests/requirements.txt``` and ```dev_requirements.txt``` from this repository have been installed, as per below.
1717

1818
```bash
19-
pip install -r requirements.txt
2019
pip install -r dev_requirements.txt
20+
pip uninstall -y redis # uninstall Redis package installed via redis-entraid
2121
pip install -r doctests/requirements.txt
2222
```
2323

doctests/requirements.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,4 @@ pandas
33
requests
44
sentence_transformers
55
tabulate
6+
redis #install latest stable version

0 commit comments

Comments
 (0)