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.1
pillow==12.2.0
gpsoauth==2.0.0
gkeepapi==0.17.0
requests==2.32.5
gkeepapi==0.17.1
requests==2.34.2
Comment on lines +1 to +5

Copy link
Copy Markdown

Choose a reason for hiding this comment

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

high

The updated dependencies (pip==26.1.1, pillow==12.2.0, and requests==2.34.2) are incompatible with Python 3.7, which is currently specified in the Dockerfile (python:3.7.3-alpine3.8).

  • pip 26.1.1 and requests 2.34.2 require Python 3.10 or newer.
  • pillow 12.2.0 requires Python 3.9 or newer.

Building the Docker image or installing these dependencies on Python 3.7 will fail. To resolve this, either revert these dependency updates or upgrade the Python base image in the Dockerfile to at least python:3.10.

Loading