fix CI more
Some checks failed
Security Scan / dependency-check (pull_request) Successful in 42s
Security Scan / security (pull_request) Successful in 47s
Test Suite / lint (pull_request) Successful in 31s
Test Suite / test (3.11) (pull_request) Successful in 1m30s
Test Suite / build (pull_request) Failing after 36s

This commit is contained in:
2025-08-13 20:54:15 -07:00
parent a1f533c6a8
commit 5e95136aa4
6 changed files with 1128 additions and 28 deletions

View File

@@ -14,7 +14,28 @@ dependencies = [
"umap-learn>=0.5.8",
"numba>=0.56.4",
"openTSNE>=1.0.0",
"mypy>=1.17.1",
]
[project.optional-dependencies]
test = [
"pytest>=8.4.1",
"pytest-cov>=4.1.0",
]
lint = [
"ruff>=0.1.0",
"mypy>=1.5.0",
]
security = [
"bandit[toml]>=1.7.5",
"safety>=2.3.0",
"pip-audit>=2.6.0",
]
dev = [
"embeddingbuddy[test,lint,security]",
]
all = [
"embeddingbuddy[test,lint,security]",
]
[build-system]