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:
rudra717 2026-04-06 10:02:44 -07:00
parent 39c1042258
commit 644ef4e318

View file

@ -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"