mirror of
https://github.com/BerriAI/litellm.git
synced 2026-09-07 08:26:10 +00:00
fix: relax python-dotenv pin from ==1.0.1 to >=1.0.1
The exact pin makes litellm uninstallable alongside any library that requires python-dotenv>=1.1.0 (e.g. fastmcp[tasks]==3.2.0). Exact pins in published package metadata propagate to every consumer's resolver. Reproducible builds should use lockfiles, not exact pins in pyproject.toml. Fixes BerriAI/litellm#25210 Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
parent
39c1042258
commit
644ef4e318
1 changed files with 1 additions and 1 deletions
|
|
@ -25,7 +25,7 @@ python = ">=3.9,<4.0"
|
|||
fastuuid = "0.14.0"
|
||||
httpx = "0.28.1"
|
||||
openai = "2.30.0"
|
||||
python-dotenv = "1.0.1"
|
||||
python-dotenv = ">=1.0.1"
|
||||
tiktoken = "0.12.0"
|
||||
importlib-metadata = "8.5.0"
|
||||
tokenizers = "0.22.2"
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue