Skip to content
Open
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 examples/cloud_run_cloud_events/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# Optionally include additional dependencies here
cloudevents>=1.2.0
requests
urllib3>=2.6.0 # not directly required, pinned by Snyk to avoid a vulnerability

Choose a reason for hiding this comment

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

P1 Badge urllib3 pin incompatible with Python 3.7 example image

The new requirement urllib3>=2.6.0 will fail when building the Cloud Run example because its Dockerfile still uses python:3.7-slim (see examples/cloud_run_cloud_events/Dockerfile line 3). urllib3 2.6.0 and later drop support for Python 3.7, so pip install -r requirements.txt inside that image will error out before the sample can run. Either raise the base image to a supported Python version or pin urllib3 to the latest 3.7-compatible release.

Useful? React with 👍 / 👎.