Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
15 commits
Select commit Hold shift + click to select a range
effb517
deps(python): Bump the python-minor group with 4 updates
dependabot[bot] Jul 20, 2026
97f361e
Merge branch 'main' into dependabot/uv/python-minor-389a5dfbc0
github-actions[bot] Jul 23, 2026
1aae014
Merge branch 'main' into dependabot/uv/python-minor-389a5dfbc0
github-actions[bot] Jul 23, 2026
aecddf6
Merge branch 'main' into dependabot/uv/python-minor-389a5dfbc0
github-actions[bot] Jul 23, 2026
6f8975c
Merge branch 'main' into dependabot/uv/python-minor-389a5dfbc0
github-actions[bot] Jul 23, 2026
654b26b
Merge branch 'main' into dependabot/uv/python-minor-389a5dfbc0
github-actions[bot] Jul 23, 2026
f9cbfb6
Merge branch 'main' into dependabot/uv/python-minor-389a5dfbc0
github-actions[bot] Jul 23, 2026
8094ce6
Merge branch 'main' into dependabot/uv/python-minor-389a5dfbc0
github-actions[bot] Jul 23, 2026
cfec111
Merge branch 'main' into dependabot/uv/python-minor-389a5dfbc0
github-actions[bot] Jul 23, 2026
96aa546
Merge branch 'main' into dependabot/uv/python-minor-389a5dfbc0
github-actions[bot] Jul 23, 2026
2137317
Merge branch 'main' into dependabot/uv/python-minor-389a5dfbc0
github-actions[bot] Jul 23, 2026
e65296f
Merge branch 'main' into dependabot/uv/python-minor-389a5dfbc0
github-actions[bot] Jul 23, 2026
cb242bd
Merge branch 'main' into dependabot/uv/python-minor-389a5dfbc0
github-actions[bot] Jul 23, 2026
8a436b1
Merge branch 'main' into dependabot/uv/python-minor-389a5dfbc0
github-actions[bot] Jul 23, 2026
f795bcd
Merge branch 'main' into dependabot/uv/python-minor-389a5dfbc0
github-actions[bot] Jul 23, 2026
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
12 changes: 6 additions & 6 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ keywords = [

dependencies = [
# Core Framework
"fastapi>=0.139.1",
"fastapi>=0.139.2",
"uvicorn[standard]>=0.50.0",
# MCP Server
"mcp>=1.28.1",
Expand All @@ -30,13 +30,13 @@ dependencies = [
# Data & Plotting
"pandas>=3.0.3",
"numpy>=2.5.1",
"matplotlib>=3.11.0",
"matplotlib>=3.11.1",
# Data Science & ML (for plot implementations)
"scipy>=1.18.0",
"scikit-learn>=1.9.0",
"statsmodels>=0.14.0",
# AI & Cloud
"anthropic>=0.116.0",
"anthropic>=0.117.0",
"google-cloud-storage>=3.13.0",
# Image Processing
"pillow>=12.3.0",
Expand All @@ -63,7 +63,7 @@ test = [
"aiosqlite>=0.20.0", # SQLite async driver for integration tests
]
dev = [
"ruff>=0.15.21",
"ruff>=0.15.22",
"pre-commit>=4.6.0",
]
typecheck = [
Expand Down Expand Up @@ -98,8 +98,8 @@ plotting = [
"squarify>=0.4.0",
]
# Per-library dependencies for CI (minimal installs)
lib-matplotlib = ["matplotlib>=3.11.0", "numpy>=2.5.1", "pandas>=3.0.3", "scipy>=1.18.0", "scikit-learn>=1.9.0", "statsmodels>=0.14.0"]
lib-seaborn = ["seaborn>=0.13.0", "matplotlib>=3.11.0", "numpy>=2.5.1", "pandas>=3.0.3", "scipy>=1.18.0", "scikit-learn>=1.9.0", "statsmodels>=0.14.0"]
lib-matplotlib = ["matplotlib>=3.11.1", "numpy>=2.5.1", "pandas>=3.0.3", "scipy>=1.18.0", "scikit-learn>=1.9.0", "statsmodels>=0.14.0"]
lib-seaborn = ["seaborn>=0.13.0", "matplotlib>=3.11.1", "numpy>=2.5.1", "pandas>=3.0.3", "scipy>=1.18.0", "scikit-learn>=1.9.0", "statsmodels>=0.14.0"]
lib-plotly = ["plotly>=6.9.0", "kaleido>=1.3.0", "numpy>=2.5.1", "pandas>=3.0.3", "scipy>=1.18.0", "scikit-learn>=1.9.0", "statsmodels>=0.14.0"]
lib-bokeh = ["bokeh>=3.9.1", "numpy>=2.5.1", "pandas>=3.0.3", "scipy>=1.18.0", "scikit-learn>=1.9.0", "statsmodels>=0.14.0", "selenium>=4.46.0", "webdriver-manager>=4.1.2"]
lib-altair = ["altair>=6.2.2", "vl-convert-python>=1.7.0", "numpy>=2.5.1", "pandas>=3.0.3", "scipy>=1.18.0", "scikit-learn>=1.9.0", "statsmodels>=0.14.0"]
Expand Down
Loading