mirror of
https://github.com/crewAIInc/crewAI.git
synced 2026-01-23 07:08:14 +00:00
Fix macOS onnxruntime dependency conflict
- Change onnxruntime dependency from ==1.22.0 to >=1.19.0,<=1.22.0 - Allows onnxruntime 1.19.2 (supports macOS 11.0+) while maintaining compatibility with 1.22.0 - ChromaDB requires onnxruntime >= 1.14.1, so this range is fully compatible - Add comprehensive tests to verify macOS compatibility and dependency resolution - Fixes issue #3202 where CrewAI cannot be upgraded on macOS due to onnxruntime conflicts Co-Authored-By: Jo\u00E3o <joao@crewai.com>
This commit is contained in:
@@ -23,7 +23,7 @@ dependencies = [
|
||||
# Data Handling
|
||||
"chromadb>=0.5.23",
|
||||
"tokenizers>=0.20.3",
|
||||
"onnxruntime==1.22.0",
|
||||
"onnxruntime>=1.19.0,<=1.22.0",
|
||||
"openpyxl>=3.1.5",
|
||||
"pyvis>=0.3.2",
|
||||
# Authentication and Security
|
||||
|
||||
Reference in New Issue
Block a user