Skip to content
Open
Show file tree
Hide file tree
Changes from 2 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
6 changes: 6 additions & 0 deletions scripts/populate_tox/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -248,6 +248,12 @@
"*": ["pytest-asyncio"],
},
},
"fastmcp": {
"package": "fastmcp",
"deps": {
"*": ["pytest-asyncio"],
},
},
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Bug: Python versioning breaks CI compatibility.

The fastmcp configuration is missing a Python version constraint. All fastmcp package versions require Python >=3.10 (visible in releases.jsonl), but the configuration doesn't specify "python": ">=3.10". This causes the GitHub Actions workflow to attempt running fastmcp tests on Python 3.8 and 3.9, which will fail since those tox environments don't exist (tox.ini only generates environments for Python 3.10+). The missing constraint also means tests might attempt to install incompatible package versions.

Fix in Cursor Fix in Web

"openai-base": {
"package": "openai",
"integration_name": "openai",
Expand Down
12 changes: 9 additions & 3 deletions scripts/populate_tox/package_dependencies.jsonl

Large diffs are not rendered by default.

28 changes: 16 additions & 12 deletions scripts/populate_tox/releases.jsonl

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions scripts/split_tox_gh_actions/split_tox_gh_actions.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,7 @@
"langgraph",
"litellm",
"mcp",
"fastmcp",
"openai-base",
"openai-notiktoken",
"openai_agents",
Expand Down
Loading
Loading