Skip to content
Open
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
1 change: 1 addition & 0 deletions backend/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ dependencies = [
"fastapi[standard]>=0.115.13",
"google-genai>=1.22.0",
"mypy>=1.16.1",
"python-dotenv>=1.1.1",
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

critical

The specified version python-dotenv>=1.1.1 appears to be incorrect. This version is not available on PyPI, where the latest version is 1.0.1. This will cause dependency installation to fail for other developers and in CI/CD pipelines. Please update this to a valid version specifier. Using >=1.0.1 would align with the versioning strategy used for other packages in this file.

Suggested change
"python-dotenv>=1.1.1",
"python-dotenv>=1.0.1",

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Guess gemini has some outdated knowledge, 1.1.1 exists https://pypistats.org/packages/python-dotenv

"ruff>=0.12.1",
]

Expand Down
Loading