Skip to content
Closed
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
8 changes: 4 additions & 4 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
pip==24.3.1
pillow==11.1.0
pip==26.1
pillow==12.2.0
Comment on lines +1 to +2

Copy link
Copy Markdown

Choose a reason for hiding this comment

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

critical

The updated versions of pip (26.1) and pillow (12.2.0) are incompatible with the Python 3.7.3 environment specified in the Dockerfile. According to the changelog, pip 26.1 has dropped support for Python 3.9 and below, requiring at least Python 3.10. Similarly, recent versions of pillow require Python 3.10+. This update will cause the build to fail during dependency installation unless the base image in the Dockerfile is upgraded.

gpsoauth==2.0.0
gkeepapi==0.17.0
requests==2.32.5
gkeepapi==0.17.1
requests==2.33.1

Copy link
Copy Markdown

Choose a reason for hiding this comment

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

critical

The update to requests 2.33.1 is incompatible with the current Python 3.7.3 base image, as this version now requires Python 3.10+. While this update is important because it addresses a security vulnerability (CVE-2026-25645), it cannot be applied without first upgrading the project's Python environment to a supported version.

Loading