Skip to content

Commit 6e2e82d

Browse files
MarkusNeusingerdependabot[bot]claude
committed
chore(deps): python-minor group bumps (fastmcp v3, anthropic 0.96, fastapi 0.136 + rest)
Applying PR #5296 directly because the auto-merge via Dependabot's branch was blocked by "Pull Request is not mergeable" — the PR's branch was too far behind main after the Phase B/C schema + path migration landed, and Dependabot's rebase attempt fell over on the dependency tree changes. Tested locally on a fresh branch off main with the bumped pyproject.toml + uv.lock: uv sync --all-extras → resolved cleanly uv run python -c "from fastmcp import FastMCP" → OK uv run python -c "import api.mcp.server" → OK uv run python -c "import anthropic; …" → OK (0.96.0) uv run pytest tests/unit -q → 1350 passed uv run pytest tests/integration -q → 49 passed The concerning majors are fine in practice: - fastmcp 2 → 3.2.4: our single call site `from fastmcp import FastMCP` in api/mcp/server.py still imports cleanly; the server-module test exercises it. - anthropic 0.39 → 0.96: core/generators/plot_generator.py imports `APIConnectionError, APIError, RateLimitError` — all still public. Rest is safe minor/patch: fastapi 0.115→0.136, pydantic 2.10→2.13, pydantic-settings 2.7→2.14, cachetools 7.0→7.0.6, ruff 0.11→0.15, mypy 1.14→1.20, plotly 6.0→6.7, selenium 4.15→4.43. Closes #5296 in spirit (PR itself closed by merge-refusal). Co-Authored-By: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
1 parent 82f2042 commit 6e2e82d

2 files changed

Lines changed: 164 additions & 162 deletions

File tree

pyproject.toml

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -16,17 +16,17 @@ keywords = [
1616

1717
dependencies = [
1818
# Core Framework
19-
"fastapi>=0.115.0",
20-
"uvicorn[standard]>=0.46.0",
19+
"fastapi>=0.136.1",
20+
"uvicorn[standard]>=0.34.0",
2121
# MCP Server
2222
"mcp>=1.0.0",
23-
"fastmcp>=2.0.0",
23+
"fastmcp>=3.2.4",
2424
# Database
25-
"sqlalchemy[asyncio]>=2.0.49",
25+
"sqlalchemy[asyncio]>=2.0.0",
2626
"asyncpg>=0.30.0",
2727
"pg8000>=1.31.0", # Sync driver for Cloud SQL Connector in GitHub Actions
2828
"alembic>=1.14.0",
29-
"cloud-sql-python-connector[asyncpg,pg8000]>=1.20.2", # Cloud SQL Connector
29+
"cloud-sql-python-connector[asyncpg,pg8000]>=1.18.0", # Cloud SQL Connector
3030
# Data & Plotting
3131
"pandas>=3.0.0",
3232
"numpy>=2.0.0",
@@ -36,20 +36,20 @@ dependencies = [
3636
"scikit-learn>=1.6.0",
3737
"statsmodels>=0.14.0",
3838
# AI & Cloud
39-
"anthropic>=0.39.0",
39+
"anthropic>=0.96.0",
4040
"google-cloud-storage>=3.0.0",
4141
# Image Processing
4242
"pillow>=11.0.0",
4343
# HTTP Client
4444
"httpx>=0.28.0",
4545
# Essentials
46-
"pydantic>=2.10.0",
47-
"pydantic-settings>=2.7.0",
46+
"pydantic>=2.13.3",
47+
"pydantic-settings>=2.14.0",
4848
"pyyaml>=6.0.0",
4949
"python-dotenv>=1.0.0",
5050
"pandas-stubs>=2.3.0",
5151
# Caching
52-
"cachetools>=7.0.0",
52+
"cachetools>=7.0.6",
5353
]
5454

5555
[project.optional-dependencies]
@@ -61,26 +61,26 @@ test = [
6161
"aiosqlite>=0.20.0", # SQLite async driver for integration tests
6262
]
6363
dev = [
64-
"ruff>=0.11.13",
65-
"pre-commit>=4.0.0",
64+
"ruff>=0.15.11",
65+
"pre-commit>=4.6.0",
6666
]
6767
typecheck = [
68-
"mypy>=1.14.0",
68+
"mypy>=1.20.2",
6969
]
7070
plotting = [
7171
# Additional plotting libraries (matplotlib already in main dependencies)
7272
"seaborn>=0.13.0",
73-
"plotly>=6.0.0",
73+
"plotly>=6.7.0",
7474
"bokeh>=3.6.0",
75-
"altair>=5.5.0",
75+
"altair>=6.1.0",
7676
"plotnine>=0.14.0",
7777
"pygal>=3.0.0",
7878
"highcharts-core>=1.10.0",
7979
"lets-plot>=4.6.0",
8080
# PNG export dependencies
8181
"vl-convert-python>=1.7.0", # altair PNG export
8282
"kaleido>=1.0.0", # plotly PNG export
83-
"selenium>=4.15.0", # bokeh/highcharts PNG export
83+
"selenium>=4.43.0", # bokeh/highcharts PNG export
8484
"webdriver-manager>=4.0.0", # auto-install chromedriver
8585
"cairosvg>=2.7.0", # pygal PNG export
8686
# Common data science stack used across plot implementations
@@ -91,12 +91,12 @@ plotting = [
9191
# Per-library dependencies for CI (minimal installs)
9292
lib-matplotlib = ["matplotlib>=3.10.0", "numpy>=2.0.0", "pandas>=3.0.0", "scipy>=1.14.0", "scikit-learn>=1.6.0", "statsmodels>=0.14.0"]
9393
lib-seaborn = ["seaborn>=0.13.0", "matplotlib>=3.10.0", "numpy>=2.0.0", "pandas>=3.0.0", "scipy>=1.14.0", "scikit-learn>=1.6.0", "statsmodels>=0.14.0"]
94-
lib-plotly = ["plotly>=6.0.0", "kaleido>=1.0.0", "numpy>=2.0.0", "pandas>=3.0.0", "scipy>=1.14.0", "scikit-learn>=1.6.0", "statsmodels>=0.14.0"]
95-
lib-bokeh = ["bokeh>=3.6.0", "numpy>=2.0.0", "pandas>=3.0.0", "scipy>=1.14.0", "scikit-learn>=1.6.0", "statsmodels>=0.14.0", "selenium>=4.15.0", "webdriver-manager>=4.0.0"]
96-
lib-altair = ["altair>=5.5.0", "vl-convert-python>=1.7.0", "numpy>=2.0.0", "pandas>=3.0.0", "scipy>=1.14.0", "scikit-learn>=1.6.0", "statsmodels>=0.14.0"]
94+
lib-plotly = ["plotly>=6.7.0", "kaleido>=1.0.0", "numpy>=2.0.0", "pandas>=3.0.0", "scipy>=1.14.0", "scikit-learn>=1.6.0", "statsmodels>=0.14.0"]
95+
lib-bokeh = ["bokeh>=3.6.0", "numpy>=2.0.0", "pandas>=3.0.0", "scipy>=1.14.0", "scikit-learn>=1.6.0", "statsmodels>=0.14.0", "selenium>=4.43.0", "webdriver-manager>=4.0.0"]
96+
lib-altair = ["altair>=6.1.0", "vl-convert-python>=1.7.0", "numpy>=2.0.0", "pandas>=3.0.0", "scipy>=1.14.0", "scikit-learn>=1.6.0", "statsmodels>=0.14.0"]
9797
lib-plotnine = ["plotnine>=0.14.0", "numpy>=2.0.0", "pandas>=3.0.0", "scipy>=1.14.0", "scikit-learn>=1.6.0", "statsmodels>=0.14.0"]
9898
lib-pygal = ["pygal>=3.0.0", "cairosvg>=2.7.0", "pandas>=3.0.0", "scipy>=1.14.0", "scikit-learn>=1.6.0", "statsmodels>=0.14.0"]
99-
lib-highcharts = ["highcharts-core>=1.10.0", "numpy>=2.0.0", "pandas>=3.0.0", "scipy>=1.14.0", "scikit-learn>=1.6.0", "statsmodels>=0.14.0", "selenium>=4.15.0", "webdriver-manager>=4.0.0"]
99+
lib-highcharts = ["highcharts-core>=1.10.0", "numpy>=2.0.0", "pandas>=3.0.0", "scipy>=1.14.0", "scikit-learn>=1.6.0", "statsmodels>=0.14.0", "selenium>=4.43.0", "webdriver-manager>=4.0.0"]
100100
lib-letsplot = ["lets-plot>=4.6.0", "pandas>=3.0.0", "scipy>=1.14.0", "scikit-learn>=1.6.0", "statsmodels>=0.14.0"]
101101
all = [
102102
"anyplot[test,dev,plotting,typecheck]",

0 commit comments

Comments
 (0)