mirror of
https://github.com/crewAIInc/crewAI.git
synced 2026-05-05 01:02:37 +00:00
Upgrade pillow 10.4.0 → 12.1.1 (out-of-bounds write on PSD images), langchain-core 0.3.76 → 0.3.83 (template injection), and urllib3 2.6.1 → 2.6.3 (decompression-bomb bypass on redirects). Bump docling ~=2.63.0 → ~=2.75.0 for pillow 12 compat, and add uv overrides for pillow/langchain-core to unblock transitive pins from fastembed and langchain-apify.
26 lines
568 B
TOML
26 lines
568 B
TOML
[project]
|
|
name = "crewai-files"
|
|
dynamic = ["version"]
|
|
description = "File handling utilities for CrewAI multimodal inputs"
|
|
readme = "README.md"
|
|
authors = [
|
|
{ name = "Greyson LaLonde", email = "greyson@crewai.com" }
|
|
]
|
|
requires-python = ">=3.10, <3.14"
|
|
dependencies = [
|
|
"Pillow~=12.1.1",
|
|
"pypdf~=4.0.0",
|
|
"python-magic>=0.4.27",
|
|
"aiocache~=0.12.3",
|
|
"aiofiles~=24.1.0",
|
|
"tinytag~=1.10.0",
|
|
"av~=13.0.0",
|
|
]
|
|
|
|
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[tool.hatch.version]
|
|
path = "src/crewai_files/__init__.py"
|