Skip to content

Commit 7eec850

Browse files
Updated broken chroma dependency #145
Outdated chromadb dependency was not compatable with numpy2.0
1 parent 50a958a commit 7eec850

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

pyproject.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "yt-fts"
7-
version = "0.1.48"
7+
version = "0.1.49"
88
description = "Search all of a YouTube channel from the command line"
99
readme = "README.md"
1010
requires-python = ">=3.8"
@@ -21,8 +21,8 @@ classifiers = [
2121

2222
dependencies = [
2323
"click==8.1.7",
24-
"openai==1.16.2",
25-
"chromadb==0.4.24",
24+
"openai==1.35.3",
25+
"chromadb==0.5.2",
2626
"requests==2.31.0",
2727
"rich==13.7.1",
2828
"sqlite-utils==3.36",

requirements.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
click==8.1.7
2-
openai==1.16.2
3-
chromadb==0.4.24
2+
openai==1.35.3
3+
chromadb==0.5.2
44
requests==2.31.0
55
rich==13.7.1
66
sqlite-utils==3.36

yt_fts/yt_fts.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
from .utils import *
1010
from rich.console import Console
1111

12-
YT_FTS_VERSION = "0.1.48"
12+
YT_FTS_VERSION = "0.1.49"
1313

1414
@click.group(context_settings={"help_option_names": ["-h", "--help"]})
1515
@click.version_option(YT_FTS_VERSION, message='yt_fts version: %(version)s')

0 commit comments

Comments
 (0)