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
2 changes: 1 addition & 1 deletion appengine/flexible/scipy/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@ imageio==2.36.1; python_version >= '3.9'
numpy==2.2.4; python_version > '3.9'
numpy==1.26.4; python_version == '3.9'
numpy==1.24.4; python_version == '3.8'
pillow==10.4.0
pillow==12.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

This update to Pillow v12 introduces a breaking change. Pillow v12.0.0 and later have dropped support for Python 3.9. This project appears to support Python 3.9 (as indicated by other dependencies in this file, e.g., numpy==1.26.4; python_version == '3.9'). Upgrading to pillow==12.1.1 will cause build failures for Python 3.9 environments.

To resolve this, you could:

  1. Drop support for Python 3.9 in this project.
  2. Use version pinning to install a different version of Pillow for Python 3.9. For example:
    pillow<12; python_version == '3.9'
    pillow==12.1.1; python_version > '3.9'
    
    However, this would mean not applying the security fix for Python 3.9 environments, as the fix is in v12.1.1. Please evaluate the security risk and decide on the best course of action.

scipy==1.10.1; python_version <= '3.9'
scipy==1.14.1; python_version > '3.9'
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@ numpy==2.2.4; python_version > '3.9'
numpy==2.2.4; python_version == '3.9'
numpy==2.2.4; python_version == '3.8'
numpy==2.2.4; python_version == '3.7'
pillow==10.4.0
pillow==12.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

This update to Pillow v12 introduces a breaking change. Pillow v12.0.0 and later have dropped support for Python 3.9. This project appears to support Python 3.9 (as indicated by other dependencies in this file, e.g., numpy==2.2.4; python_version == '3.9'). Upgrading to pillow==12.1.1 will cause build failures for Python 3.9 environments.

To resolve this, you could:

  1. Drop support for Python 3.9 in this project.
  2. Use version pinning to install a different version of Pillow for Python 3.9. For example:
    pillow<12; python_version == '3.9'
    pillow==12.1.1; python_version > '3.9'
    
    However, this would mean not applying the security fix for Python 3.9 environments, as the fix is in v12.1.1. Please evaluate the security risk and decide on the best course of action.

scipy==1.14.1
Werkzeug==3.0.3
4 changes: 2 additions & 2 deletions generative_ai/embeddings/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
pandas==2.2.3; python_version == '3.7'
pandas==2.2.3; python_version == '3.8'
pandas==2.2.3; python_version > '3.8'
pillow==10.4.0; python_version < '3.8'
pillow==10.4.0; python_version >= '3.8'
pillow==12.1.1; python_version < '3.8'
pillow==12.1.1; python_version >= '3.8'
Comment on lines +4 to +5
Copy link
Contributor

Choose a reason for hiding this comment

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

critical

This update to Pillow v12 introduces a breaking change. Pillow v12.0.0 and later have dropped support for Python 3.9. This project appears to support Python 3.9 (as indicated by the python_version >= '3.8' marker). Upgrading to pillow==12.1.1 will cause build failures for Python 3.9 environments.

To resolve this, you could:

  1. Drop support for Python 3.9 in this project.
  2. Use version pinning to install a different version of Pillow for Python 3.9. For example:
    pillow<12; python_version == '3.9'
    pillow==12.1.1; python_version > '3.9'
    
    However, this would mean not applying the security fix for Python 3.9 environments, as the fix is in v12.1.1. Please evaluate the security risk and decide on the best course of action.

Also, note that the two lines for pillow can be simplified into a single line if the same version is used for all Python versions.

google-cloud-aiplatform[all]==1.84.0
sentencepiece==0.2.0
google-auth==2.29.0
Expand Down
4 changes: 2 additions & 2 deletions generative_ai/evaluation/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
pandas==2.2.3; python_version == '3.7'
pandas==2.2.3; python_version == '3.8'
pandas==2.2.3; python_version > '3.8'
pillow==10.4.0; python_version < '3.8'
pillow==10.4.0; python_version >= '3.8'
pillow==12.1.1; python_version < '3.8'
pillow==12.1.1; python_version >= '3.8'
Comment on lines +4 to +5
Copy link
Contributor

Choose a reason for hiding this comment

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

critical

This update to Pillow v12 introduces a breaking change. Pillow v12.0.0 and later have dropped support for Python 3.9. This project appears to support Python 3.9 (as indicated by the python_version >= '3.8' marker). Upgrading to pillow==12.1.1 will cause build failures for Python 3.9 environments.

To resolve this, you could:

  1. Drop support for Python 3.9 in this project.
  2. Use version pinning to install a different version of Pillow for Python 3.9. For example:
    pillow<12; python_version == '3.9'
    pillow==12.1.1; python_version > '3.9'
    
    However, this would mean not applying the security fix for Python 3.9 environments, as the fix is in v12.1.1. Please evaluate the security risk and decide on the best course of action.

Also, note that the two lines for pillow can be simplified into a single line if the same version is used for all Python versions.

google-cloud-aiplatform[all]==1.69.0
sentencepiece==0.2.0
google-auth==2.38.0
Expand Down
4 changes: 2 additions & 2 deletions generative_ai/extensions/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
pandas==2.2.3; python_version == '3.7'
pandas==2.2.3; python_version == '3.8'
pandas==2.2.3; python_version > '3.8'
pillow==10.4.0; python_version < '3.8'
pillow==10.4.0; python_version >= '3.8'
pillow==12.1.1; python_version < '3.8'
pillow==12.1.1; python_version >= '3.8'
Comment on lines +4 to +5
Copy link
Contributor

Choose a reason for hiding this comment

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

critical

This update to Pillow v12 introduces a breaking change. Pillow v12.0.0 and later have dropped support for Python 3.9. This project appears to support Python 3.9 (as indicated by the python_version >= '3.8' marker). Upgrading to pillow==12.1.1 will cause build failures for Python 3.9 environments.

To resolve this, you could:

  1. Drop support for Python 3.9 in this project.
  2. Use version pinning to install a different version of Pillow for Python 3.9. For example:
    pillow<12; python_version == '3.9'
    pillow==12.1.1; python_version > '3.9'
    
    However, this would mean not applying the security fix for Python 3.9 environments, as the fix is in v12.1.1. Please evaluate the security risk and decide on the best course of action.

Also, note that the two lines for pillow can be simplified into a single line if the same version is used for all Python versions.

google-cloud-aiplatform[all]==1.69.0
sentencepiece==0.2.0
google-auth==2.38.0
Expand Down
4 changes: 2 additions & 2 deletions generative_ai/image_generation/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
pandas==2.2.3; python_version == '3.7'
pandas==2.2.3; python_version == '3.8'
pandas==2.2.3; python_version > '3.8'
pillow==10.4.0; python_version < '3.8'
pillow==10.4.0; python_version >= '3.8'
pillow==12.1.1; python_version < '3.8'
pillow==12.1.1; python_version >= '3.8'
Comment on lines +4 to +5
Copy link
Contributor

Choose a reason for hiding this comment

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

critical

This update to Pillow v12 introduces a breaking change. Pillow v12.0.0 and later have dropped support for Python 3.9. This project appears to support Python 3.9 (as indicated by the python_version >= '3.8' marker). Upgrading to pillow==12.1.1 will cause build failures for Python 3.9 environments.

To resolve this, you could:

  1. Drop support for Python 3.9 in this project.
  2. Use version pinning to install a different version of Pillow for Python 3.9. For example:
    pillow<12; python_version == '3.9'
    pillow==12.1.1; python_version > '3.9'
    
    However, this would mean not applying the security fix for Python 3.9 environments, as the fix is in v12.1.1. Please evaluate the security risk and decide on the best course of action.

Also, note that the two lines for pillow can be simplified into a single line if the same version is used for all Python versions.

google-cloud-aiplatform[all]==1.69.0
sentencepiece==0.2.0
google-auth==2.38.0
Expand Down
4 changes: 2 additions & 2 deletions generative_ai/model_garden/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
pandas==2.2.3; python_version == '3.7'
pandas==2.2.3; python_version == '3.8'
pandas==2.2.3; python_version > '3.8'
pillow==10.4.0; python_version < '3.8'
pillow==10.4.0; python_version >= '3.8'
pillow==12.1.1; python_version < '3.8'
pillow==12.1.1; python_version >= '3.8'
Comment on lines +4 to +5
Copy link
Contributor

Choose a reason for hiding this comment

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

critical

This update to Pillow v12 introduces a breaking change. Pillow v12.0.0 and later have dropped support for Python 3.9. This project appears to support Python 3.9 (as indicated by the python_version >= '3.8' marker). Upgrading to pillow==12.1.1 will cause build failures for Python 3.9 environments.

To resolve this, you could:

  1. Drop support for Python 3.9 in this project.
  2. Use version pinning to install a different version of Pillow for Python 3.9. For example:
    pillow<12; python_version == '3.9'
    pillow==12.1.1; python_version > '3.9'
    
    However, this would mean not applying the security fix for Python 3.9 environments, as the fix is in v12.1.1. Please evaluate the security risk and decide on the best course of action.

Also, note that the two lines for pillow can be simplified into a single line if the same version is used for all Python versions.

google-cloud-aiplatform[all]==1.69.0
sentencepiece==0.2.0
google-auth==2.38.0
Expand Down
4 changes: 2 additions & 2 deletions generative_ai/model_tuning/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
pandas==2.2.3; python_version == '3.7'
pandas==2.2.3; python_version == '3.8'
pandas==2.2.3; python_version > '3.8'
pillow==10.4.0; python_version < '3.8'
pillow==10.4.0; python_version >= '3.8'
pillow==12.1.1; python_version < '3.8'
pillow==12.1.1; python_version >= '3.8'
Comment on lines +4 to +5
Copy link
Contributor

Choose a reason for hiding this comment

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

critical

This update to Pillow v12 introduces a breaking change. Pillow v12.0.0 and later have dropped support for Python 3.9. This project appears to support Python 3.9 (as indicated by the python_version >= '3.8' marker). Upgrading to pillow==12.1.1 will cause build failures for Python 3.9 environments.

To resolve this, you could:

  1. Drop support for Python 3.9 in this project.
  2. Use version pinning to install a different version of Pillow for Python 3.9. For example:
    pillow<12; python_version == '3.9'
    pillow==12.1.1; python_version > '3.9'
    
    However, this would mean not applying the security fix for Python 3.9 environments, as the fix is in v12.1.1. Please evaluate the security risk and decide on the best course of action.

Also, note that the two lines for pillow can be simplified into a single line if the same version is used for all Python versions.

google-cloud-aiplatform[all]==1.69.0
sentencepiece==0.2.0
google-auth==2.38.0
Expand Down
4 changes: 2 additions & 2 deletions generative_ai/prompts/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
pandas==2.2.3; python_version == '3.7'
pandas==2.2.3; python_version == '3.8'
pandas==2.2.3; python_version > '3.8'
pillow==10.4.0; python_version < '3.8'
pillow==10.4.0; python_version >= '3.8'
pillow==12.1.1; python_version < '3.8'
pillow==12.1.1; python_version >= '3.8'
Comment on lines +4 to +5
Copy link
Contributor

Choose a reason for hiding this comment

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

critical

This update to Pillow v12 introduces a breaking change. Pillow v12.0.0 and later have dropped support for Python 3.9. This project appears to support Python 3.9 (as indicated by the python_version >= '3.8' marker). Upgrading to pillow==12.1.1 will cause build failures for Python 3.9 environments.

To resolve this, you could:

  1. Drop support for Python 3.9 in this project.
  2. Use version pinning to install a different version of Pillow for Python 3.9. For example:
    pillow<12; python_version == '3.9'
    pillow==12.1.1; python_version > '3.9'
    
    However, this would mean not applying the security fix for Python 3.9 environments, as the fix is in v12.1.1. Please evaluate the security risk and decide on the best course of action.

Also, note that the two lines for pillow can be simplified into a single line if the same version is used for all Python versions.

google-cloud-aiplatform[all]==1.74.0
sentencepiece==0.2.0
google-auth==2.38.0
Expand Down
4 changes: 2 additions & 2 deletions generative_ai/reasoning_engine/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
pandas==2.2.3; python_version == '3.7'
pandas==2.2.3; python_version == '3.8'
pandas==2.2.3; python_version > '3.8'
pillow==10.4.0; python_version < '3.8'
pillow==10.4.0; python_version >= '3.8'
pillow==12.1.1; python_version < '3.8'
pillow==12.1.1; python_version >= '3.8'
Comment on lines +4 to +5
Copy link
Contributor

Choose a reason for hiding this comment

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

critical

This update to Pillow v12 introduces a breaking change. Pillow v12.0.0 and later have dropped support for Python 3.9. This project appears to support Python 3.9 (as indicated by the python_version >= '3.8' marker). Upgrading to pillow==12.1.1 will cause build failures for Python 3.9 environments.

To resolve this, you could:

  1. Drop support for Python 3.9 in this project.
  2. Use version pinning to install a different version of Pillow for Python 3.9. For example:
    pillow<12; python_version == '3.9'
    pillow==12.1.1; python_version > '3.9'
    
    However, this would mean not applying the security fix for Python 3.9 environments, as the fix is in v12.1.1. Please evaluate the security risk and decide on the best course of action.

Also, note that the two lines for pillow can be simplified into a single line if the same version is used for all Python versions.

google-cloud-aiplatform[all]==1.69.0
sentencepiece==0.2.0
google-auth==2.38.0
Expand Down
4 changes: 2 additions & 2 deletions vision/snippets/crop_hints/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
google-cloud-vision==3.8.1
pillow==9.5.0; python_version < '3.8'
pillow==10.4.0; python_version >= '3.8'
pillow==12.1.1; python_version < '3.8'
pillow==12.1.1; python_version >= '3.8'
Comment on lines +2 to +3
Copy link
Contributor

Choose a reason for hiding this comment

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

critical

This update to Pillow v12 introduces a breaking change. Pillow v12.0.0 and later have dropped support for Python 3.9. This project appears to support Python 3.9 (as indicated by the python_version >= '3.8' marker). Upgrading to pillow==12.1.1 will cause build failures for Python 3.9 environments.

To resolve this, you could:

  1. Drop support for Python 3.9 in this project.
  2. Use version pinning to install a different version of Pillow for Python 3.9. For example:
    pillow<12; python_version == '3.9'
    pillow==12.1.1; python_version > '3.9'
    
    However, this would mean not applying the security fix for Python 3.9 environments, as the fix is in v12.1.1. Please evaluate the security risk and decide on the best course of action.

Also, note that the two lines for pillow can be simplified into a single line if the same version is used for all Python versions.

4 changes: 2 additions & 2 deletions vision/snippets/document_text/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
google-cloud-vision==3.8.1
pillow==9.5.0; python_version < '3.8'
pillow==10.4.0; python_version >= '3.8'
pillow==12.1.1; python_version < '3.8'
pillow==12.1.1; python_version >= '3.8'
Comment on lines +2 to +3
Copy link
Contributor

Choose a reason for hiding this comment

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

critical

This update to Pillow v12 introduces a breaking change. Pillow v12.0.0 and later have dropped support for Python 3.9. This project appears to support Python 3.9 (as indicated by the python_version >= '3.8' marker). Upgrading to pillow==12.1.1 will cause build failures for Python 3.9 environments.

To resolve this, you could:

  1. Drop support for Python 3.9 in this project.
  2. Use version pinning to install a different version of Pillow for Python 3.9. For example:
    pillow<12; python_version == '3.9'
    pillow==12.1.1; python_version > '3.9'
    
    However, this would mean not applying the security fix for Python 3.9 environments, as the fix is in v12.1.1. Please evaluate the security risk and decide on the best course of action.

Also, note that the two lines for pillow can be simplified into a single line if the same version is used for all Python versions.

4 changes: 2 additions & 2 deletions vision/snippets/face_detection/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
google-cloud-vision==3.8.1
pillow==9.5.0; python_version < '3.8'
pillow==10.4.0; python_version >= '3.8'
pillow==12.1.1; python_version < '3.8'
pillow==12.1.1; python_version >= '3.8'
Comment on lines +2 to +3
Copy link
Contributor

Choose a reason for hiding this comment

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

critical

This update to Pillow v12 introduces a breaking change. Pillow v12.0.0 and later have dropped support for Python 3.9. This project appears to support Python 3.9 (as indicated by the python_version >= '3.8' marker). Upgrading to pillow==12.1.1 will cause build failures for Python 3.9 environments.

To resolve this, you could:

  1. Drop support for Python 3.9 in this project.
  2. Use version pinning to install a different version of Pillow for Python 3.9. For example:
    pillow<12; python_version == '3.9'
    pillow==12.1.1; python_version > '3.9'
    
    However, this would mean not applying the security fix for Python 3.9 environments, as the fix is in v12.1.1. Please evaluate the security risk and decide on the best course of action.

Also, note that the two lines for pillow can be simplified into a single line if the same version is used for all Python versions.