Skip to content
Merged
Changes from 1 commit
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: 5 additions & 1 deletion python/crewai/sample_agent/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = "crew_agent"
version = "0.1.0"
description = "CrewAI Sample Agent using Microsoft Agent 365 SDK with MCP tooling support"
authors = [{ name = "Microsoft", email = "support@microsoft.com" }]
requires-python = ">=3.11"
requires-python = ">=3.11,<3.14"
Comment thread
biswapm marked this conversation as resolved.
dependencies = [
"crewai[azure-ai-inference,tools]==1.4.1",
"pysqlite3-binary>=0.5.2; sys_platform == 'linux'",
Expand Down Expand Up @@ -42,3 +42,7 @@ type = "crew"
# This ensures we always get the latest features and fixes
[tool.uv]
prerelease = "allow"
override-dependencies = [
# lancedb 0.30.1+ has no Windows wheels; cap at 0.30.0 which does
Comment thread
biswapm marked this conversation as resolved.
Outdated
"lancedb<=0.30.0; sys_platform == 'win32'",
]
Comment thread
biswapm marked this conversation as resolved.
Loading