Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
50 changes: 25 additions & 25 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@ classifiers = [
]
license-files = ["LICENSE"]
dependencies = [
"openai==2.3.0",
"coverage==7.10.7",
"typer==0.19.2",
"openai==2.14.0",
"coverage==7.13.1",
"typer==0.21.0",
"tomli==2.3.0",
"typing-extensions==4.15.0",
]
Expand All @@ -34,42 +34,42 @@ dependencies = [
ai-unit-test = "ai_unit_test.__main__:run_app"

[project.optional-dependencies]
huggingface = ["sentence-transformers==5.1.1", "huggingface-hub==0.35.3"]
huggingface = ["sentence-transformers==5.2.0", "huggingface-hub==1.2.3"]
faiss = [
"faiss-cpu==1.12.0",
"numpy==2.3.3",
"scikit-learn==1.7.2",
"joblib==1.5.2",
"faiss-cpu==1.13.2",
"numpy==2.4.0",
"scikit-learn==1.8.0",
"joblib==1.5.3",
]
all = [
"sentence-transformers==5.1.1",
"huggingface-hub==0.35.3",
"faiss-cpu==1.12.0",
"numpy==2.3.3",
"scikit-learn==1.7.2",
"joblib==1.5.2",
"psutil==7.1.0",
"sentence-transformers==5.2.0",
"huggingface-hub==1.2.3",
"faiss-cpu==1.13.2",
"numpy==2.4.0",
"scikit-learn==1.8.0",
"joblib==1.5.3",
"psutil==7.2.1",
]
dev = [
"black==25.9.0",
"black==25.12.0",
"isort==7.0.0",
"flake8==7.3.0",
"flake8-bugbear==24.12.12",
"flake8-bugbear==25.11.29",
"flake8-annotations==3.2.0",
"flake8-docstrings==1.7.0",
"flake8-comprehensions==3.17.0",
"flake8-eradicate==1.5.0",
"flake8-pytest-style==2.1.0",
"mypy==1.18.2",
"pre-commit==4.3.0",
"pytest==8.4.2",
"flake8-pytest-style==2.2.0",
"mypy==1.19.1",
"pre-commit==4.5.1",
"pytest==9.0.2",
"pytest-cov==7.0.0",
"pytest-asyncio==1.2.0",
"pytest-asyncio==1.3.0",
"pytest-dotenv==0.5.2",
"joblib-stubs==1.5.2.0.20250831",
"types-psutil==7.0.0.20251001",
"joblib-stubs==1.5.3.0.20251223",
"types-psutil==7.2.1.20251231",
"pytest-mock==3.15.1",
"psutil==7.1.0",
"psutil==7.2.1",
]

[tool.black]
Expand Down
38 changes: 19 additions & 19 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,30 +1,30 @@
black==25.9.0
coverage==7.10.7
faiss-cpu==1.12.0
black==25.12.0
coverage==7.13.1
faiss-cpu==1.13.2
flake8==7.3.0
flake8-annotations==3.2.0
flake8-bugbear==24.12.12
flake8-bugbear==25.11.29
flake8-comprehensions==3.17.0
flake8-docstrings==1.7.0
flake8-eradicate==1.5.0
flake8-pytest-style==2.1.0
huggingface-hub==0.35.3
flake8-pytest-style==2.2.0
huggingface-hub==1.2.3
isort==7.0.0
joblib==1.5.2
joblib-stubs==1.5.2.0.20250831
mypy==1.18.2
numpy==2.3.3
openai==2.3.0
pre-commit==4.3.0
psutil==7.1.0
pytest==8.4.2
joblib==1.5.3
joblib-stubs==1.5.3.0.20251223
mypy==1.19.1
numpy==2.4.0
openai==2.14.0
pre-commit==4.5.1
psutil==7.2.1
pytest==9.0.2
pytest-cov==7.0.0
pytest-asyncio==1.2.0
pytest-asyncio==1.3.0
pytest-mock==3.15.1
pytest-dotenv==0.5.2
sentence-transformers==5.1.1
scikit-learn==1.7.2
sentence-transformers==5.2.0
scikit-learn==1.8.0
tomli==2.3.0
typer==0.19.2
types-psutil==7.0.0.20251001
typer==0.21.0
types-psutil==7.2.1.20251231
typing-extensions==4.15.0
Loading