Skip to content
Closed
Show file tree
Hide file tree
Changes from all 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
2 changes: 1 addition & 1 deletion lib/cli/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ readme = "README.md"
authors = [
{ name = "Joao Moura", email = "joao@crewai.com" }
]
requires-python = ">=3.10, <3.14"
requires-python = ">=3.10, <3.15"
dependencies = [
"crewai-core==1.15.20",
"click>=8.1.7,<9",
Expand Down
2 changes: 1 addition & 1 deletion lib/crewai-core/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ readme = "README.md"
authors = [
{ name = "Greyson R. LaLonde", email = "greyson@crewai.com" }
]
requires-python = ">=3.10, <3.14"
requires-python = ">=3.10, <3.15"
dependencies = [
"appdirs~=1.4.4",
"cryptography>=42.0",
Expand Down
2 changes: 1 addition & 1 deletion lib/crewai-files/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ readme = "README.md"
authors = [
{ name = "Greyson LaLonde", email = "greyson@crewai.com" }
]
requires-python = ">=3.10, <3.14"
requires-python = ">=3.10, <3.15"
dependencies = [
"Pillow~=12.3.0",
"pypdf~=6.16.1",
Expand Down
2 changes: 1 addition & 1 deletion lib/crewai-tools/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ readme = "README.md"
authors = [
{ name = "João Moura", email = "joaomdmoura@gmail.com" },
]
requires-python = ">=3.10, <3.14"
requires-python = ">=3.10, <3.15"
dependencies = [
"pytube~=15.0.0",
"requests>=2.33.0,<3",
Expand Down
8 changes: 6 additions & 2 deletions lib/crewai/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ readme = "README.md"
authors = [
{ name = "Joao Moura", email = "joao@crewai.com" }
]
requires-python = ">=3.10, <3.14"
requires-python = ">=3.10, <3.15"
dependencies = [
"crewai-core==1.15.20",
"crewai-cli==1.15.20",
Expand All @@ -22,7 +22,11 @@ dependencies = [
"opentelemetry-sdk~=1.42.0",
"opentelemetry-exporter-otlp-proto-http~=1.42.0",
# Data Handling
"chromadb~=1.1.0",
# chromadb~=1.1.0 still shipped the pydantic.v1.BaseSettings compat
# layer, which is broken on Python 3.14 (ConfigError: unable to infer
# type for chroma_server_nofile). Fixed upstream in
# chroma-core/chroma#6356 (dropped the v1 layer), released in 1.5.x.
"chromadb>=1.5.9,<2",
"tokenizers>=0.21,<1",
"openpyxl~=3.1.5",
# Authentication and Security
Expand Down
2 changes: 1 addition & 1 deletion lib/devtools/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ readme = "README.md"
authors = [
{ name = "Greyson R. LaLonde", email = "greyson@crewai.com" },
]
requires-python = ">=3.10, <3.14"
requires-python = ">=3.10, <3.15"
classifiers = ["Private :: Do Not Upload"]
private = true
dependencies = [
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "crewai-workspace"
description = "Cutting-edge framework for orchestrating role-playing, autonomous AI agents. By fostering collaborative intelligence, CrewAI empowers agents to work together seamlessly, tackling complex tasks."
readme = "README.md"
requires-python = ">=3.10,<3.14"
requires-python = ">=3.10,<3.15"
authors = [
{ name = "Joao Moura", email = "joao@crewai.com" }
]
Expand Down
2,337 changes: 1,879 additions & 458 deletions uv.lock

Large diffs are not rendered by default.