Skip to content

Commit 7d0ce2e

Browse files
committed
fix: bump us to numpy 2.X to fix user err on discord
Signed-off-by: Samantha Coyle <[email protected]>
1 parent d993f90 commit 7d0ce2e

File tree

2 files changed

+9
-1
lines changed

2 files changed

+9
-1
lines changed

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,7 @@ dev = [
7070
"tox>=4.0.0,<5.0.0",
7171
]
7272
vectorstore = [
73+
"torch>=2.7.0",
7374
"sentence-transformers>=4.1.0,<5.0.0",
7475
"chromadb>=0.4.22,<2.0.0",
7576
"posthog<6.0.0",

quickstarts/01-hello-world/README.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -338,12 +338,19 @@ if __name__ == '__main__':
338338
pip install sentence-transformers chromadb 'posthog<6.0.0'
339339
```
340340

341+
**Or install with extras:**
342+
From the root directory,
343+
```bash
344+
pip install -e ".[vectorstore]"
345+
```
346+
341347
**Using uv:**
342348
```bash
343349
uv add sentence-transformers chromadb 'posthog<6.0.0'
344350
```
345351

346-
**Or install with extras (uv only):**
352+
**Or install with extras:**
353+
From the root directory,
347354
```bash
348355
uv pip install -e ".[vectorstore]"
349356
```

0 commit comments

Comments
 (0)